<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[yab | yet another Basic for HAIKU - Help with programs]]></title>
		<link>https://yab.orgfree.com/forum/</link>
		<description><![CDATA[yab | yet another Basic for HAIKU - https://yab.orgfree.com/forum]]></description>
		<pubDate>Thu, 09 Apr 2026 00:52:44 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Missing Toolbar Library?]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=192</link>
			<pubDate>Thu, 09 Oct 2025 16:01:56 +0300</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=1082">PurpleStudio</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=192</guid>
			<description><![CDATA[I found a "Toolbar Template" program in /boot/home/yab_work/Templates<br />
<br />
I tried to run the program and ran into 2 errors:<br />
<br />
Error #1: <br />
<blockquote class="mycode_quote"><cite>Quote:</cite>---Error: could not open '/boot/home/yab_work/Templates/Toolbar': No such file or directory</blockquote>
<br />
It would appear yab-IDE does NOT like files with spaces in the names (which seems odd as this is a pre-packaged program FOR Yab)<br />
<br />
Error #2:<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>---Error: in /boot/home/yab_work/Templates/ToolbarTemplate.yab, line 6: couldn't open library '/boot/home/config/settings/yab/Toolbar.yab'<br />
---Error: Program not executed</blockquote>
<br />
I checked, and sure enough the 'yab' directory is missing from '/boot/home/config/settings/yab'<br />
What's the work-around? Reinstall Yab via HaikuDepot?]]></description>
			<content:encoded><![CDATA[I found a "Toolbar Template" program in /boot/home/yab_work/Templates<br />
<br />
I tried to run the program and ran into 2 errors:<br />
<br />
Error #1: <br />
<blockquote class="mycode_quote"><cite>Quote:</cite>---Error: could not open '/boot/home/yab_work/Templates/Toolbar': No such file or directory</blockquote>
<br />
It would appear yab-IDE does NOT like files with spaces in the names (which seems odd as this is a pre-packaged program FOR Yab)<br />
<br />
Error #2:<br />
<blockquote class="mycode_quote"><cite>Quote:</cite>---Error: in /boot/home/yab_work/Templates/ToolbarTemplate.yab, line 6: couldn't open library '/boot/home/config/settings/yab/Toolbar.yab'<br />
---Error: Program not executed</blockquote>
<br />
I checked, and sure enough the 'yab' directory is missing from '/boot/home/config/settings/yab'<br />
What's the work-around? Reinstall Yab via HaikuDepot?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to use SYSTEM$() to run C++ script]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=191</link>
			<pubDate>Wed, 08 Oct 2025 01:51:08 +0300</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=1082">PurpleStudio</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=191</guid>
			<description><![CDATA[I should start by saying, I know that SYSTEM&#36; isn't really meant to run C++ programs, but I figured, in theory, it should work.<br />
<br />
I have a very small C++ application that retrieves some information via web api to retrieve some live data on the internet. The C++ compiled with no issues and runs perfectly.<br />
<br />
My Yab:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>#! /bin/yab<br />
<br />
PRINT SYSTEM&#36;("./myApp")</code></div></div><br />
The C++ program when ran in Terminal outputs a single line of text. I want to DRAW TEXT to a window. That wasn't working, so I figured I'd just use PRINT to get something in the console to see if that was working... it wasn't. All files are in the same working directory.<br />
<br />
Help?]]></description>
			<content:encoded><![CDATA[I should start by saying, I know that SYSTEM&#36; isn't really meant to run C++ programs, but I figured, in theory, it should work.<br />
<br />
I have a very small C++ application that retrieves some information via web api to retrieve some live data on the internet. The C++ compiled with no issues and runs perfectly.<br />
<br />
My Yab:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>#! /bin/yab<br />
<br />
PRINT SYSTEM&#36;("./myApp")</code></div></div><br />
The C++ program when ran in Terminal outputs a single line of text. I want to DRAW TEXT to a window. That wasn't working, so I figured I'd just use PRINT to get something in the console to see if that was working... it wasn't. All files are in the same working directory.<br />
<br />
Help?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to share variables with Yab lib?]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=184</link>
			<pubDate>Tue, 08 Oct 2024 04:42:27 +0300</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=1082">PurpleStudio</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=184</guid>
			<description><![CDATA[The application I am writing is going to need to contain 15+ subroutines, all of which will be 500+ lines of code. I decided to just make each subroutine its own .yab file and then I will IMPORT it at the beginning of my main program.<br />
<br />
I've completed 1 subroutine, saved it as 'routineExample.yab' and then used "EXPORT SUB routineEXAMPLE()" and then in my main program I call it with "IMPORT routineExample" however, the imported subroutine isn't sharing variables I've declared in my main program &amp; which I rely on in routineEXAMPLE().<br />
<br />
Is it possible to do this?<br />
<br />
Also, curiously, when I import the subroutine file, I cannot used "#! /bin/yab" at the beginning of the imported .yab file or I get an error.]]></description>
			<content:encoded><![CDATA[The application I am writing is going to need to contain 15+ subroutines, all of which will be 500+ lines of code. I decided to just make each subroutine its own .yab file and then I will IMPORT it at the beginning of my main program.<br />
<br />
I've completed 1 subroutine, saved it as 'routineExample.yab' and then used "EXPORT SUB routineEXAMPLE()" and then in my main program I call it with "IMPORT routineExample" however, the imported subroutine isn't sharing variables I've declared in my main program &amp; which I rely on in routineEXAMPLE().<br />
<br />
Is it possible to do this?<br />
<br />
Also, curiously, when I import the subroutine file, I cannot used "#! /bin/yab" at the beginning of the imported .yab file or I get an error.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to 'grey-out' a TEXTCONTROL box]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=181</link>
			<pubDate>Wed, 02 Oct 2024 06:03:30 +0300</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=1082">PurpleStudio</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=181</guid>
			<description><![CDATA[I want to display information inside of a TEXTCONTROL box/field, but I don't want it to be edit-able. I don't see any Option&#36; that accomplishes this. Thanks.]]></description>
			<content:encoded><![CDATA[I want to display information inside of a TEXTCONTROL box/field, but I don't want it to be edit-able. I don't see any Option&#36; that accomplishes this. Thanks.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[setting RECT color]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=177</link>
			<pubDate>Sun, 29 Sep 2024 06:35:04 +0300</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=1082">PurpleStudio</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=177</guid>
			<description><![CDATA[I have a RECT on my view. How do I set the RECT color to 184,184,184? I've tried DRAW SET, but that usually just changes global colors (BG, HighColor, LowColor). Do I use FillorStroke and what would that look like? There's no example on Besly. Thanks <img src="https://yab.orgfree.com/forum/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[I have a RECT on my view. How do I set the RECT color to 184,184,184? I've tried DRAW SET, but that usually just changes global colors (BG, HighColor, LowColor). Do I use FillorStroke and what would that look like? There's no example on Besly. Thanks <img src="https://yab.orgfree.com/forum/images/smilies/smile.gif" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Any in-depth resources out there on Stackview?]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=176</link>
			<pubDate>Fri, 27 Sep 2024 23:06:50 +0300</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=1082">PurpleStudio</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=176</guid>
			<description><![CDATA[I'm developing a couple different apps right now for Haiku.<br />
<br />
One of the applications I am developing - I think - will turn out best (from a user experience) if I use Stackview to change views depending on how the user interacts with the main application.<br />
<br />
Example: I want to have several buttons on the main window that lead to other sections "inside" of the application. Instead of having a button open a whole new window (which doesn't look good if there are window's all over the desktop) I figured, why not just use Stackview to generate a view with the exact same dimensions as the main window's view, allow the user to use buttons, lists, etc and then if they click a "Back" button, it will take them back to the original window (or view).<br />
<br />
That being said, Yab-Documentation doesn't really go very "in-depth" with their synopsis or explanation of Stackview. I guess it's not impossible to have a whole bunch of things going on inside different views.<br />
<br />
This all being said, this leads me to my final point: how much input/output/widgets can I have going on inside different Stackviews? Can I treat each Stackview like a window in terms of the content that's drawn on said view? Can I have a view with a BoxView, a field that takes input from the user, buttons, &amp;etc? Or is there a better way of doing this? Initially I thought I'd just open a window directly on top of the main window, that way it looks like one application, but if the user accidentally bumped or moved the window, then it would reveal the original one below it, and that doesn't make for a nice, clean, user-experience.<br />
<br />
If this post seems "a bit of a ramble", my apologies. Just learning Yab and the breadth and widths of its capabilities.<br />
<br />
Cheers.<br />
<br />
<br />
EDIT: I did visit Besly's site for more info on "Stackview" but it looks like all their links on different resources and information are all broken. If you visit this <a href="https://besly.de/index.php/development/yab-2/the-yab-what-is-what" target="_blank" rel="noopener" class="mycode_url">LINK</a>, and stroll down to Stackview, there's a hyperlink that is broken/leads nowhere.]]></description>
			<content:encoded><![CDATA[I'm developing a couple different apps right now for Haiku.<br />
<br />
One of the applications I am developing - I think - will turn out best (from a user experience) if I use Stackview to change views depending on how the user interacts with the main application.<br />
<br />
Example: I want to have several buttons on the main window that lead to other sections "inside" of the application. Instead of having a button open a whole new window (which doesn't look good if there are window's all over the desktop) I figured, why not just use Stackview to generate a view with the exact same dimensions as the main window's view, allow the user to use buttons, lists, etc and then if they click a "Back" button, it will take them back to the original window (or view).<br />
<br />
That being said, Yab-Documentation doesn't really go very "in-depth" with their synopsis or explanation of Stackview. I guess it's not impossible to have a whole bunch of things going on inside different views.<br />
<br />
This all being said, this leads me to my final point: how much input/output/widgets can I have going on inside different Stackviews? Can I treat each Stackview like a window in terms of the content that's drawn on said view? Can I have a view with a BoxView, a field that takes input from the user, buttons, &amp;etc? Or is there a better way of doing this? Initially I thought I'd just open a window directly on top of the main window, that way it looks like one application, but if the user accidentally bumped or moved the window, then it would reveal the original one below it, and that doesn't make for a nice, clean, user-experience.<br />
<br />
If this post seems "a bit of a ramble", my apologies. Just learning Yab and the breadth and widths of its capabilities.<br />
<br />
Cheers.<br />
<br />
<br />
EDIT: I did visit Besly's site for more info on "Stackview" but it looks like all their links on different resources and information are all broken. If you visit this <a href="https://besly.de/index.php/development/yab-2/the-yab-what-is-what" target="_blank" rel="noopener" class="mycode_url">LINK</a>, and stroll down to Stackview, there's a hyperlink that is broken/leads nowhere.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Question regarding SWITCH and window management]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=175</link>
			<pubDate>Fri, 27 Sep 2024 05:50:35 +0300</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=1082">PurpleStudio</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=175</guid>
			<description><![CDATA[I have a Switch statement with a CASE statement nested inside. The CASE listens for a BUTTON to be clicked. When clicked, it opens a second window on top of the original "MainView" window.<br />
<br />
When I close this second window, the program doesn't switch back to the first window. The first window stays 'greyed' (Disabled) and waits for my to click it, bringing it back and the tab once again goes from grey to yellow.<br />
<br />
How can I change this so that the first window is brought right back to the front (enabled) immediately upon closing the second window.<br />
<br />
Thanks.]]></description>
			<content:encoded><![CDATA[I have a Switch statement with a CASE statement nested inside. The CASE listens for a BUTTON to be clicked. When clicked, it opens a second window on top of the original "MainView" window.<br />
<br />
When I close this second window, the program doesn't switch back to the first window. The first window stays 'greyed' (Disabled) and waits for my to click it, bringing it back and the tab once again goes from grey to yellow.<br />
<br />
How can I change this so that the first window is brought right back to the front (enabled) immediately upon closing the second window.<br />
<br />
Thanks.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Detect if the program was launched in Tracker or Terminal]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=146</link>
			<pubDate>Tue, 02 Jan 2024 12:49:50 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=825">_-Caleb-_</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=146</guid>
			<description><![CDATA[Hi,<br />
<br />
Exists some like this?<br />
<br />
I want to detect if the program was launched in Terminal or in Tracker (To show an Info Alert)<br />
<br />
Is that possible?<br />
<br />
Thanks and Happy new year!!]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
Exists some like this?<br />
<br />
I want to detect if the program was launched in Terminal or in Tracker (To show an Info Alert)<br />
<br />
Is that possible?<br />
<br />
Thanks and Happy new year!!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Update one Statusbar in realtime from bash?]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=145</link>
			<pubDate>Sun, 26 Nov 2023 02:55:26 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=825">_-Caleb-_</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=145</guid>
			<description><![CDATA[Hi,<br />
<br />
I'm trying to recreate an old utility called status in yab, this shown a statusbar and it's updated from bash...<br />
<br />
<br />
<img src="https://4.bp.blogspot.com/_Wr7V6V_s460/Sei48ZTQ0jI/AAAAAAAAAwI/iCFKs05_mss/s400/statussc.png" loading="lazy"  alt="[Image: statussc.png]" class="mycode_img" /><br />
<br />
Before start i'm asking if it's possible with yab, and if it, how is the better way? Im thinking in a program reading a file every x seconds and change this file with the % in every pass...<br />
<br />
But sure exists a better solution.<br />
<br />
Thanks in advanced!]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I'm trying to recreate an old utility called status in yab, this shown a statusbar and it's updated from bash...<br />
<br />
<br />
<img src="https://4.bp.blogspot.com/_Wr7V6V_s460/Sei48ZTQ0jI/AAAAAAAAAwI/iCFKs05_mss/s400/statussc.png" loading="lazy"  alt="[Image: statussc.png]" class="mycode_img" /><br />
<br />
Before start i'm asking if it's possible with yab, and if it, how is the better way? Im thinking in a program reading a file every x seconds and change this file with the % in every pass...<br />
<br />
But sure exists a better solution.<br />
<br />
Thanks in advanced!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[BuildFactory creates unexecutable binaries]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=144</link>
			<pubDate>Sat, 04 Nov 2023 10:39:50 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=826">thaflo</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=144</guid>
			<description><![CDATA[Hello,<br />
<br />
though the buildfactory process goes trough, I can't execute the binary.<br />
I'm trying with at nightly build of Haiku.<br />
<br />
error in line 1 at "="<br />
<br />
Do you are able to execute buildet binaries?<br />
<br />
Greetings,<br />
Florian]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
though the buildfactory process goes trough, I can't execute the binary.<br />
I'm trying with at nightly build of Haiku.<br />
<br />
error in line 1 at "="<br />
<br />
Do you are able to execute buildet binaries?<br />
<br />
Greetings,<br />
Florian]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[help me understand how the launch function works]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=131</link>
			<pubDate>Sun, 20 Dec 2020 14:23:46 +0200</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=575">amber</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=131</guid>
			<description><![CDATA[Hi! I'm trying to pass command-line parameters to the application being launched. But I can't do it. What am I doing wrong?<br />
<br />
launch "/boot/system/apps/WebPositive" - this works (WebPositive launched)<br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">launch "/boot/system/apps/WebPositive google.com" - this NOT works (WebPositive NOT launched)</span></span></span><br />
<br />
But, if I run the command in the terminal:<br />
<br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">/boot/system/apps/WebPositive google.com</span></span></span><br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">, this opens browser with website.</span></span></span><br />
<br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">WebPositive is an example command. I would like to pass parameters to different applications. For example, it would be convenient to open a text document in "Pe"</span></span></span><br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">How do I do this? How do i pass parameters to the launching application?</span></span></span>]]></description>
			<content:encoded><![CDATA[Hi! I'm trying to pass command-line parameters to the application being launched. But I can't do it. What am I doing wrong?<br />
<br />
launch "/boot/system/apps/WebPositive" - this works (WebPositive launched)<br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">launch "/boot/system/apps/WebPositive google.com" - this NOT works (WebPositive NOT launched)</span></span></span><br />
<br />
But, if I run the command in the terminal:<br />
<br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">/boot/system/apps/WebPositive google.com</span></span></span><br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">, this opens browser with website.</span></span></span><br />
<br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">WebPositive is an example command. I would like to pass parameters to different applications. For example, it would be convenient to open a text document in "Pe"</span></span></span><br />
<span style="color: #333333;" class="mycode_color"><span style="font-size: small;" class="mycode_size"><span style="font-family: Tahoma, Verdana, Arial, sans-serif;" class="mycode_font">How do I do this? How do i pass parameters to the launching application?</span></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Highs and Lows]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=125</link>
			<pubDate>Sun, 03 May 2020 23:35:16 +0300</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=419">MrEntropy</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=125</guid>
			<description><![CDATA[Hello folks,<br />
<br />
Having finished (for now) Dungeon of Danger, I'm looking at my next project: porting Telengard from TRS-80 BASIC to Yab. For this one, I've implented new PRINT statements to work on a View.<br />
<br />
However, I realize that I'm going to have to use inverse video (well, not <span style="font-style: italic;" class="mycode_i">have</span> to, but it would be nice) but I can't figure out how to get that to work.<br />
<br />
I know I can DRAW SET BGColor and HighColor to get that classic 'green on black' look, but no matter what I try, I can't get black on green, unless I set BGColor to green, which isn't useful because it turns the entire view's color to green.<br />
<br />
I see there's a LowColor, and I have no idea what that's for.<br />
<br />
So... is there an easy way to draw text while mixing background/foreground colors?<br />
<br />
Thanks!]]></description>
			<content:encoded><![CDATA[Hello folks,<br />
<br />
Having finished (for now) Dungeon of Danger, I'm looking at my next project: porting Telengard from TRS-80 BASIC to Yab. For this one, I've implented new PRINT statements to work on a View.<br />
<br />
However, I realize that I'm going to have to use inverse video (well, not <span style="font-style: italic;" class="mycode_i">have</span> to, but it would be nice) but I can't figure out how to get that to work.<br />
<br />
I know I can DRAW SET BGColor and HighColor to get that classic 'green on black' look, but no matter what I try, I can't get black on green, unless I set BGColor to green, which isn't useful because it turns the entire view's color to green.<br />
<br />
I see there's a LowColor, and I have no idea what that's for.<br />
<br />
So... is there an easy way to draw text while mixing background/foreground colors?<br />
<br />
Thanks!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[A Question of Binding]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=124</link>
			<pubDate>Thu, 23 Apr 2020 16:46:48 +0300</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=419">MrEntropy</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=124</guid>
			<description><![CDATA[So... not sure about binding. I tried to bind my Dungeon of Danger program. It says it was successful, but when I run it, it complains about a duplicate subroutine (which is all the way at the end of the program). <br />
<br />
However, if I run the basic code, it works fine. I'm importing two other files (neither of which have this subroutine it's complaining about). <br />
<br />
Any ideas on that one?<br />
<hr class="mycode_hr" />
Ah. Never mind. For some reason I had it as "export sub" even though it was in the main file. Removing 'export' got it to work. Seems a bit strange to me, but there it is.]]></description>
			<content:encoded><![CDATA[So... not sure about binding. I tried to bind my Dungeon of Danger program. It says it was successful, but when I run it, it complains about a duplicate subroutine (which is all the way at the end of the program). <br />
<br />
However, if I run the basic code, it works fine. I'm importing two other files (neither of which have this subroutine it's complaining about). <br />
<br />
Any ideas on that one?<br />
<hr class="mycode_hr" />
Ah. Never mind. For some reason I had it as "export sub" even though it was in the main file. Removing 'export' got it to work. Seems a bit strange to me, but there it is.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Beginner Questions]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=123</link>
			<pubDate>Wed, 08 Apr 2020 04:01:46 +0300</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=419">MrEntropy</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=123</guid>
			<description><![CDATA[Hello,<br />
<br />
So I've just started looking at yab and what it can and can't do, and I've run across a couple of questions (so far). <br />
<br />
1. With a TEXTCONTROL, how can I tell if the ENTER key has been pressed?<br />
2. I can create RADIOBUTTONS and SET them, but how do I tell which one the user has set?<br />
<br />
Thanks for any help!]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
So I've just started looking at yab and what it can and can't do, and I've run across a couple of questions (so far). <br />
<br />
1. With a TEXTCONTROL, how can I tell if the ENTER key has been pressed?<br />
2. I can create RADIOBUTTONS and SET them, but how do I tell which one the user has set?<br />
<br />
Thanks for any help!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Game programming in YAB]]></title>
			<link>https://yab.orgfree.com/forum/showthread.php?tid=102</link>
			<pubDate>Mon, 07 May 2018 02:55:17 +0300</pubDate>
			<dc:creator><![CDATA[<a href="https://yab.orgfree.com/forum/member.php?action=profile&uid=126">Luposian</a>]]></dc:creator>
			<guid isPermaLink="false">https://yab.orgfree.com/forum/showthread.php?tid=102</guid>
			<description><![CDATA[I am interested in writing a very simple 2D game with a mouse-controlled player sprite.  Are there any game-specific tutorials or guides for YAB for this purpose?]]></description>
			<content:encoded><![CDATA[I am interested in writing a very simple 2D game with a mouse-controlled player sprite.  Are there any game-specific tutorials or guides for YAB for this purpose?]]></content:encoded>
		</item>
	</channel>
</rss>