| View previous topic :: View next topic |
| Author |
Message |
Valvex I post too much
Reputation: 0
Joined: 11 Jun 2007 Posts: 2447 Location: 127.0.0.1
|
Posted: Fri Sep 28, 2007 1:24 pm Post subject: Actionscript help |
|
|
I want to load a SWF hack into my trainer but is there a way to skip to a frame too?
| Code: | function popup()
{
_level0.msg.Show("");
} // End of the function
function loadshop()
{
_level0.quest.LoadTownFile("limbo2.swf");
} // End of the function
btnLoad.addEventListener("click", loadshop);
shopID.addEventListener("enter", loadshop);
shopID.addEventListener("enter", popup);
|
so i want to load the file "limbo2.swf" but i want to skip to frame 16 of the swf. anybody know how to do that?
|
|
| Back to top |
|
 |
MegaForum Grandmaster Cheater
Reputation: 0
Joined: 20 Aug 2007 Posts: 558
|
Posted: Fri Sep 28, 2007 1:40 pm Post subject: |
|
|
| what language is that?
|
|
| Back to top |
|
 |
Valvex I post too much
Reputation: 0
Joined: 11 Jun 2007 Posts: 2447 Location: 127.0.0.1
|
Posted: Fri Sep 28, 2007 1:43 pm Post subject: |
|
|
| actionscript in flash 8 pro
|
|
| Back to top |
|
 |
OMFGHEY Expert Cheater
Reputation: 0
Joined: 31 Aug 2007 Posts: 220
|
Posted: Fri Sep 28, 2007 7:33 pm Post subject: |
|
|
Use the gotoAndStop() or gotoAndPlay() functions.
| Code: | function popup()
{
_level0.msg.Show("");
} // End of the function
function loadshop()
{
_level0.quest.LoadTownFile("limbo2.swf");
gotoAndStop(16);
} // End of the function
btnLoad.addEventListener("click", loadshop);
shopID.addEventListener("enter", loadshop);
shopID.addEventListener("enter", popup); |
Hope that helps.
|
|
| Back to top |
|
 |
|