Started 5 days, 12 hours ago (2009-11-11 13:47:00)
by CaverSnaver
Started 6 days, 10 hours ago (2009-11-10 15:53:00)
by thorotaxi
You suddenly switch from vidTemplate (a declared variable) to videoTemplate (an undefined one) here:
var vidTemplate:MovieClip = new vid_details();
vidTemplate.x = 0;
vidTemplate.y = b * 42.2;
videoTemplate.artistBox.text = artistList[b];
Started 6 days, 10 hours ago (2009-11-10 15:55:00)
by thorotaxi
is the FLV in the folder, or are you
referencing it from an online location? Sounds like it could be a domain thing.
Started 6 days, 1 hour ago (2009-11-11 00:37:00)
by ImprisonedPride
Code:
on (release) {
if (statroll1 >= 0 && statroll < 5) {
die111 = statroll+1;
}
}
Started 6 days, 9 hours ago (2009-11-10 16:44:00)
by thorotaxi
Can you just add a
boolean to manage when the click has happened?
var btnClicked:Boolean = false;
one_btn.addEventListener(MouseEvent.CLICK, one_btnClicked);
one_btn.addEventListener(MouseEvent.ROLL_OUT, one_btnOut);
function one_btnClicked(event:MouseEvent):void
{
cook_book.gotoAndPlay("OpenS");
btnClicked = true;
}
function one_btnOut(event:MouseEvent):void
{
if(btnClicked) {...