S-Man42 / GCWizard

GC Wizard
Other
44 stars 10 forks source link

Script GCW Script Case - Switch works in Web version but keeps loading in Android #1688

Closed Linsty closed 1 month ago

Linsty commented 3 months ago

Hi @t-m-z

When executing the example script of the Swich - Case - default manual page in the webversion, the script works correct.

afbeelding (Example Web version)

When executing the same script in Android. The script keeps searching and finally getting no results. IMG_20240603_082504 (Android version)

Example script

On Screen I added a BREAK command, but without this command the script reacts the same.

Feel free to contact if you need more info

Kind regards,

Marcia

t-m-z commented 2 months ago

FOR I = 1 TO 10 SWITCH I CASE 1 A = "ONE" PRINT A BREAK CASE 2 A = "TWO" PRINT A BREAK CASE 3 A = "THREE" PRINT A BREAK DEFAULT A = "NEITHER 1 NOR 2 NOR 3" PRINT A ENDSWITCH NEXT