Bug with @display
Posted: Mon May 06, 2013 2:00 pm
I´m trying to send a desktop capture every x seconds to my ftp server, and if i use hidden=true, the program hangs under windows, but work fine under AmigaOS, anyone knows how make it with the display hidden? Using hidden=false, work fine, but the windows bar show the name of the program running
@DISPLAY {title="senddsk",hidden=true}
STARTTIMER(1)
while(0=0)
waittimer(1,5000)
desktop_brush=grabdesktop(nil)
uploadfile("ftp://xxx:xxx@xxxxx.xxx.jpg",{file="xxx.jpg"})
wend
@DISPLAY {title="senddsk",hidden=true}
STARTTIMER(1)
while(0=0)
waittimer(1,5000)
desktop_brush=grabdesktop(nil)
uploadfile("ftp://xxx:xxx@xxxxx.xxx.jpg",{file="xxx.jpg"})
wend