garem
1
Is there any way to get Flash 5 to stay in the first scene and have Flash 6 go to the next scene?
Its basically a detection that lets Flash 6 plugin browsers continue and Flash 5 stay where they are.
This is because I cannot get a form validation to work in both Flash 5 and Flash 6 even though they should.
Please Help…
tia!!!
system
2
include link
“Download Flash Player 6 … NOW!”
:beam:
system
3
Has to Be all Flash no wimpy Javascripts. Must be Flash 5 or later.
Is there a way???
system
4
version = getVersion()
flashVer = version.split(" ")
if (flashVer[1].charAt(0)-0 >= 6) {
gotoAndPlay("myScene", 1)
} else {
stop()
}
??