I went through the first two videos https://www.youtube.com/watch?v=5KRazhSI-SA & https://www.youtube.com/watch?v=lOdDfiMNMvM&t=338s , using the demo version to see how I liked it. Had no issues. Bought the $99 bundle (on sale) and punched in the EXACT same code. Now the little icon that I could once move around in the compiled program, freezes after just a second. I have removed the demo, re-verified the files of the full version. Re entered the code, re watched the videos and punched in the code line for line off the video. All to no avail. Any ideas or suggestions would be fantastic.
SetVirtualResolution(1024, 768)
LoadImage(1,"Yellowsmoke.png") //Yellowsmoke.png is a 64px by 64px png i created in GIMP
CreateSprite(1,1)
SetJoystickScreenPosition(1,512,380)
sx=512
sy=380
do
SetSpritePosition(1,sx,sy)
sx=sx+GetJoystickX()*8
sy=sy+GetJoystickY()*8
sync()
loop