another ignorable flash question
another ignorable flash question
- Started
- Last post
- 9 Responses
- usrper
this is too easy...
how do i link html sites in flash (buttons)....
like, to load a html site in the same window within the swf..
- clerk0
action > get url
- stewart0
target _self or _top
- usrper0
on (release) {
getURL(www.ventitre.net,target_s...
}doesnt work like this...
- clerk0
this should work better:
on (release) {
getURL("http://www.ventitre .net, "_self");
}
- stewart0
on (release) { getURL ("your.html", "_top");}
??
- ricstultz0
can you target frames within a frameset from flash?
do you just add the frame name manually as the target?... Im a nOOb at flash.... let me know if what Im saying is shit.
- usrper0
thx.
- usrper0
for some reason its not working... is it because my window size is restrained?
- gabriel20
could you paste your code?
and yes, you can target any frame by specifying it in the target option...