rusty27851
Technical User
How would I go about writing the actionscript for something like this?: I have a projector file and I want it to be full-screen for users at 1024x768 and below, but be a fixed size of 1024x768 if the user's resolution is higher than that. I know I can change the user's resolution, but I don't think I want to do that.
This is the basic concept, I'm just not sure how to code it:
if (Number(_level0.ssScreenWidth ) < = 1024)
{
// play full-screen if the screen width is < = 1024
}
else
{
// otherwise (width > 1024) make the size 1024x768
}
This is the basic concept, I'm just not sure how to code it:
if (Number(_level0.ssScreenWidth ) < = 1024)
{
// play full-screen if the screen width is < = 1024
}
else
{
// otherwise (width > 1024) make the size 1024x768
}