Page 1 of 1

screen spanning

Posted: Fri May 03, 2013 7:44 am
by kcwvc52
does livecode currently have any code that would allow for screen spanning?

Re: screen spanning

Posted: Fri May 03, 2013 8:09 am
by Simon
Hi kcwvc52,
Try this:

Code: Select all

on mouseUp
   put the working  screenRects into tSize
   put "0,0," & item 3 of line 2 of tSize & comma & item 4 of line 1 of tSize into tExtended
   set the rect of this stack to tExtended
end mouseUp
I had to use "item 4 of line 1" because my primary monitor is smaller than secondary.

Simon