I'm stuck with my code: when some lines of code that are inside of a labeled block of code get executed and then I need to go to another label, execute it and GET BACK TO FIRST label - the script actually stops, instead of continuing to execute lines after "goto somelabel".
Here is an example code of what I am talking about:
Coordmode, mouse, screen goto textnbox textnbox: Send Cursor will move to the top left corner of the screen in...`n5...`n4...`n3...`n2...`n1... goto move msgbox, Done! Return move: MouseMove, 0, 0 Return
The problem is that line "msgbox, Done!" doesn't get executed. Why?
label "move" ends up with "return", why doesn't the script actually go back to the next line after 2nd "goto"?




