need help in FLASH MX

IamShipon1988

New Member
Messages
942
Reaction score
0
Points
0
do any of you know how to make a link open up in one flash file, such as the templates from templatemonster.com opens up in one flash file.
i'm trying to create this flash site for a basketball group and they asked me if i can create them a custom made template, if you do know, please post here

if you need more info, then ask

tnx
 

03moscropl

Flash Freak
Messages
698
Reaction score
0
Points
16
yes you use get url and you place it in. so it might be

Code:
on (release) {
	getURL ("http://themplatemonster.com");
}
you can also set to parent, self , top , blank for the ways it opens it! :happy:
 

IamShipon1988

New Member
Messages
942
Reaction score
0
Points
0
like to create a multipaged flash site, that grabs a flash from a certain file and opens it within the flash file. like the templatemonster.com flash sites

tnx for the tut link
 

S_W_A_T

New Member
Messages
292
Reaction score
0
Points
0
Here you go,
Code:
loadMovie("your_file.swf", level_number_here);
_level<your_number>.gotoAndPlay("<frame number>");

Example;
loadMovie("swat.swf", 5);
_level5.gotoAndPlay("1");
 

michaelp

New Member
Messages
568
Reaction score
0
Points
0
Hmmm You are trying to steal Template Monster Desgins. You cant open it! that are SWF files. You can edit only FLA files.
 

IamShipon1988

New Member
Messages
942
Reaction score
0
Points
0
no. i am designing a flash template, but i want it to open in the same flash file, how would i do that, that was the question
 

IamShipon1988

New Member
Messages
942
Reaction score
0
Points
0
aaa.i cant find my action panel, i cant insert the code for some reason...hmmm
 
Top