<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Sub Menu</title>
		<link>http://tibasicdev.wikidot.com/forum/t-589293/sub-menu</link>
		<description>Posts in the discussion thread &quot;Sub Menu&quot; - Can I make a sub menu using Custom?</description>
				<copyright></copyright>
		<lastBuildDate>Sat, 07 Mar 2026 12:55:14 +0000</lastBuildDate>
		
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-589293#post-1628422</guid>
				<title>(no title)</title>
				<link>http://tibasicdev.wikidot.com/forum/t-589293/sub-menu#post-1628422</link>
				<description></description>
				<pubDate>Mon, 26 Nov 2012 21:37:35 +0000</pubDate>
				<wikidot:authorName>Rich</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>All very good suggestions, thank you for your help!!</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-589293#post-1619563</guid>
				<title>(no title)</title>
				<link>http://tibasicdev.wikidot.com/forum/t-589293/sub-menu#post-1619563</link>
				<description></description>
				<pubDate>Sun, 18 Nov 2012 13:20:14 +0000</pubDate>
				<wikidot:authorName>George Litauszky</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>It's a simple submenu example use the kbdprgm method.</p> <div class="code"> <pre><code>kbdprgm1() Prgm Local ofold,men 0→men getFold→ofold ©Save the current folder Lbl main PopUp {&quot;My tools&quot;,&quot;My games&quot;},men ©Main menu If men=1 Then Goto tools ElseIf men=2 Then Goto games Else Goto end1 EndIf Lbl tools 0→men PopUp {&quot;Tool1&quot;,&quot;Tool2&quot;},men ©Submenu 1 If men=1 Then setFold(tool_a) tool1() ElseIf men=2 Then setFold(tool_b) tool2() Else Goto main ©If ESC was pressed, goto the main menu. EndIf Lbl games 0→men PopUp {&quot;Game1&quot;},men If men=1 Then SetFold(games) Game1() Else Goto main EndIf Lbl end1 setFold(#ofold) ©Restore current folder EndPrgm</code></pre></div> <p>To create menus, you can use the PopUp, DropDown, ToolBar commands.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-589293#post-1618184</guid>
				<title>(no title)</title>
				<link>http://tibasicdev.wikidot.com/forum/t-589293/sub-menu#post-1618184</link>
				<description></description>
				<pubDate>Fri, 16 Nov 2012 22:32:55 +0000</pubDate>
				<wikidot:authorName>George Litauszky</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Edit: The programs kbdprgm1-kbdprgm9 must be in the home directory.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-589293#post-1618181</guid>
				<title>(no title)</title>
				<link>http://tibasicdev.wikidot.com/forum/t-589293/sub-menu#post-1618181</link>
				<description></description>
				<pubDate>Fri, 16 Nov 2012 22:28:51 +0000</pubDate>
				<wikidot:authorName>George Litauszky</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>You can't create submenus with the custom menu in Basic.<br /> Try use the kbdprgm form. With this, you can assign to the number keys 1-9 your programs named kbdprgm1-kbdprgm9. You can call these programs from the home screen with the diamond 1 - 9 key combination.<br /> And:<br /> &quot;If your calculator menus work the same way as BASIC menus, you then you could just create a new menu for every submenu and call them from the top menu.&quot;</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-589293#post-1617714</guid>
				<title>Re: Sub Menu</title>
				<link>http://tibasicdev.wikidot.com/forum/t-589293/sub-menu#post-1617714</link>
				<description></description>
				<pubDate>Fri, 16 Nov 2012 14:19:19 +0000</pubDate>
				<wikidot:authorName>Xeda Elnara</wikidot:authorName>				<wikidot:authorUserId>595803</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Using Custom, you can make custom menus accessed using the F1~F5 keys. To my knowledge, though, it doesn't let you make nested menus (I'm not positive about that, though, as it has been a long time since I programmed for the 89). I know there are some pretty powerful menu options, though, for the TI-89 that I have used, though. I just read through the manual that came with it to try and figure out the more complicated parts. I liked <a href="http://tibasicdev.wikidot.com/68k:dialog">Dialog</a>, personally.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-589293#post-1617335</guid>
				<title>Re: Sub Menu</title>
				<link>http://tibasicdev.wikidot.com/forum/t-589293/sub-menu#post-1617335</link>
				<description></description>
				<pubDate>Fri, 16 Nov 2012 03:19:03 +0000</pubDate>
				<wikidot:authorName>Silver Phantom</wikidot:authorName>				<wikidot:authorUserId>1430989</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>If you want to go to prettiness and stuff, try this <a href="http://tibasicdev.wikidot.com/forum/t-560184">http://tibasicdev.wikidot.com/forum/t-560184</a><br /> read through it, it's similar to what you need, but in <strong>84</strong></p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-589293#post-1617244</guid>
				<title>Re: Sub Menu</title>
				<link>http://tibasicdev.wikidot.com/forum/t-589293/sub-menu#post-1617244</link>
				<description></description>
				<pubDate>Fri, 16 Nov 2012 00:53:10 +0000</pubDate>
				<wikidot:authorName>Roguebantha</wikidot:authorName>				<wikidot:authorUserId>1260890</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>If your calculator menus work the same way as BASIC menus, you then you could just create a new menu for every submenu and call them from the top menu.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-589293#post-1617216</guid>
				<title>Sub Menu</title>
				<link>http://tibasicdev.wikidot.com/forum/t-589293/sub-menu#post-1617216</link>
				<description></description>
				<pubDate>Fri, 16 Nov 2012 00:25:57 +0000</pubDate>
				<wikidot:authorName>Rich</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I have made a custom menu but it is very busy, I would like to use sub menus to organize things, but i don't have a clue how to do it. Suggestions? Thanks!</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>