Any sample scripts of controlling brightsign by Mouse ?
The example in HD600ObjectReferencev4.pdf is too simple, when i modify the script from touchscreen control to mouse control, there're some problem occurs.
REM assumes p is a roMessagePort object already created
t=CreateObject("roTouchScreen")
t.SetPort(p)
REM Puts up a cursor if a mouse is attached
REM The cursor must be a 16 x 16 24 bit BMP that ONLY
REM uses black, white, and a third color
REM The x,y position is the “hot spot†point
REM you can find an example cursor in the brightsign demo download
t.SetCursorBitmap(root+"cursor.bmp", 16, 16)
t.SetResolution(1024, 768)
t.SetCursorPosition(512, 512)
t.AddRectangleRegion(xval,yval,wval,hval, numevents)
t.EnableCursor(1)