I'm really new to flash, I only started to teach it to myself a couple weeks ago. JavaScript I know quite well. In fact I needed to learn it for my computer science degree. Anyways. I having a problem making a flash movie span the whole screen. I have this video right, and it's fairly small (something like 300x500) but I want to strech it across the whole screen. When I publish the HTML file in flash I set the height and width to 100% but on the page it's still the same size. Then I try to overwrite the height="100%", width="100%"
code with just size="100%"
in both the object parameters and the <embed />
code, still nothing. I know I have to do something with fscommand() to do this, but I dont know where to implement this code. Within the flash document I've used this
fscommand("allowscale", true);
fscommand("fullscreen", true);
but I dont know if I need to call this from a Javascript function or what.
Do I need to do this:
function DoFScommand("allowscale", true);{
}
function DoFScommand("fullscreen", true);{
}
Would that work?
I'm just so lost and I need help.
[/code]