Flash: 6 inside 5?
Flash: 6 inside 5?
Out of context: Reply #3
- Started
- Last post
- 10 Responses
- nevub0
What you want to do is totally possible.
Just publish all SWF's besides the video as V5.
Then publish your video as V6.
Inside of your V5 SWF where you would loadMovie() just add a detect in there.
if (v > 5) {
loadMovie('video.swf');
}
else {
loadMovie('upgrade.swf');
}