>u have to use buddy api xtras for change screen res. in macromedia's site
>u can get.
>or go "http://www.mods.com.au/budapi "

Good show, Mitesh!

I'd just add that Buddy is free if you use only 2 functions, and you can 
change the resolution with only 2 functions.

global gScrHgt
global gScrWidth
global gScrDepth
global gCantBeSet
global gChanged

on prepareMovie
   -- test & set the display size & depth
   gScrHgt = baScreenInfo("height")
   gScrWidth = baScreenInfo("width")
   gScrDepth = baScreenInfo("depth")
   if gScrWidth < 800 then
     if gScrDepth < 16 then
       gCantBeSet = baSetDisplay (800, 600, 16, "temp", false)
       CheckChangeScreen
     else
       gCantBeSet = baSetDisplay (800, 600, gScrDepth, "temp", false)
       CheckChangeScreen
     end if
   else
     if gScrDepth < 16 then
       gCantBeSet = baSetDisplay (gScrWidth, gScrHgt, 16, "temp", false)
       CheckChangeScreen
     else
       gChanged = FALSE
       gCantBeSet = FALSE
     end if
   end if
end

on stopMovie
   -- set it back to the user's original settings
   if gChanged then
     baSetDisplay (gScrWidth, gScrHgt, gScrDepth, "temp", false)
   end if
end


Cordially,

Kerry Thompson


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to