At present I am loading flash content over my video everytime it reached a certain part of the timeline. using the code below:
myflow.loadPlugin("swipe" + current, playerPath + "plugins/swipe/red.swf",
{
bgcolor:'#FEFE33',
top: 0,
left: 0,
width: 790,
height: 293,
zIndex: zindex
}
As you can see I am only loading one swf file (red.swf). What I want to do is make it more dynamic by loading a swf file with a white background and pass the background colour each time I load the flash plugin.
I have tried passing in the background colour in the url to the swf file like this: plugins/swipe/red.swf?bgcolor=#ffffff but this cause the plugin to fail.
Does anyone know how to get this to work
Thanks
myflow.loadPlugin("swipe" + current, playerPath + "plugins/swipe/red.swf",
{
bgcolor:'#FEFE33',
top: 0,
left: 0,
width: 790,
height: 293,
zIndex: zindex
}
As you can see I am only loading one swf file (red.swf). What I want to do is make it more dynamic by loading a swf file with a white background and pass the background colour each time I load the flash plugin.
I have tried passing in the background colour in the url to the swf file like this: plugins/swipe/red.swf?bgcolor=#ffffff but this cause the plugin to fail.
Does anyone know how to get this to work
Thanks