トピック
Xavi xavi700

Slots 1,2 & 3. Help.

Hi. So, I´ve been a fan of Petit Computer/SmileBasic since 2013 and one of the SmileBasic new aditions that made me excited was that on the editor you have 3 individual slots to run separate programs at once. My question is: How do I run programs from each one of these? Up until now I´ve only been able to use "Slot 1". Is there something that I´m missing? Thanks!
2そうだね
プレイ済み
返信[1]
親投稿
doum95 95doum
The Start button always run the slot 0 Switch to Direct Mode and type RUN 1 RUN 2 or RUN 3 RUN = RUN 0
1そうだね
プレイ済み
返信[2]
親投稿
You can also use EXEC[slot] to hop from one slot to another.
0そうだね
未プレイ
返信[3]
親投稿
12Me23 12Me23
EXEC slot - run the program in that slot. END will jump back to the original slot. USE slot - create variables and functions from that slot. COMMON DEF functions can be called directly from the original slot, and you can use VAR() and CALL to access all variables/functions EXEC "PRG_:NAME" - shortcut for LOAD "PRG_:NAME",FALSE:EXEC _ USE "PRG_:NAME" - shortcut for LOAD "PRG_:NAME",FALSE:USE _
0そうだね
未プレイ