Users Awaiting Email Confirmation
Ich mach die Cursorbewegung immer in einem separaten Event.
Das entweder PP (sanfter Move-Picture) oder über Call-Event aufgerufen wird (schneller Move-Picture)
In dieses Event kommt einfach die ganze Abfrage "If Variable 10 is XYZ" > "Show/Move Picture"
Das ganze geht aber auch mit einem Label in einem Event.
Du machst einfach vor der Tastenabfrage ein Label 1.
Dann bei jedem Tastendruck ein Goto Label 2
Label 2 kommt ganz nach unten,dahin kommt die ganze Abfrage "If Variable 10 is XYZ"
und vor Label 2 und ganz unten am Code kommt "Go to Label 1"
Etwa so:
Zitat
Label1
Tastenabfrage
If Variable is 2
Variable -1
then Goto Label 2
Else if Variable is 3
Variable +1
then go to Label 2
...
Goto Label 1
Label2
If Variable 10 is 1
then show Picture 1 "Cursor"
else
If Variable 10 is 2
then show Picture 1 "Cursor"
else
If Variable 10 is 3
then show Picture 1 "Cursor"
....
Go To Label 1
...