|
|
Make Director window odd sized.
Added on 10/2/2000
|
Compatibilities:
Required Xtras:
Buddy API
|
This item has not yet been rated
|
This function will let you make the director windw any size you need to (unlike the existing incremental sizes). Use like this...
setWindowSize(width, height)
This function will only work in projectors, and only on those set to be in a window and not full screen.
on setWindowSize theWidth, theHeight
if the environment.runmode <> "Author" then
baMoveWindow( baWinHandle(), -1, -1, theWidth, theHeight, true )
end if
end
on getBehaviorDescription me
describe = "This function will let you make the director windw any size you need to (unlike the existing incremental sizes). Use like this..." & return & "setWindowSize(width, height)" & return & "This function will only work in projectors, and only on those set to be in a window and not full screen."
return describe
end
|
|