| Author |
Message |
tigre_79
Joined: 07 Mar 2008 Posts: 1
|
Posted: March 7, 2008 11:17 PM Post subject: drop down menus |
|
|
Hi everyone. I am new to this forum. I would like to know if there is a way to create a program that uses drop down menus. Any help on this would be useful. Another question. If I upgrade my calc, will I lose my current programs?
Thanks |
|
| Back to top |
|
 |
jimbauwens
Joined: 02 Oct 2007 Posts: 16
|
Posted: March 25, 2008 12:46 PM Post subject: |
|
|
Hi, here is a litle example for an menu in ti basic:
| Quote: | toolbar
title "Menu1"
item "Item1",lbl1
item "Item2",lbl2
item "Item3",lbl3
title "Menu2"
item "Item1",lbl1
item "Item2",lbl2
item "Item3",lbl3
endtbar
lbl lbl1
text "You pressed item1"
stop
lbl lbl2
text "You pressed item2"
stop
lbl lbl3
text "You pressed item1"
stop
|
|
|
| Back to top |
|
 |
Ribcakes
Joined: 26 Mar 2008 Posts: 3
|
Posted: March 30, 2008 2:17 AM Post subject: |
|
|
is there anyway to do like a drop down menu in the tool bar?
for example when you are in the program editor and you hit [F3] and then when you go to "dialog" you can open up another menu by hitting left? |
|
| Back to top |
|
 |
jimbauwens
Joined: 02 Oct 2007 Posts: 16
|
Posted: March 31, 2008 2:11 PM Post subject: |
|
|
| The above code demostrates a menu in the toolbar, but it is not possible to have sub menu's in Ti-Basic. |
|
| Back to top |
|
 |
|