• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

What are the valid actions?

New Here ,
Dec 17, 2019 Dec 17, 2019

Copy link to clipboard

Copied

I want to move to a specific scene in 30 seconds.

 

What are the valid actions?

TOPICS
ActionScript , Code , How to , Missing feature , Timeline

Views

471

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Dec 17, 2019 Dec 17, 2019

As you have said "scene", does that mean you're using ActionScript 3?

 

There is a way that works in AS3 and in JavaScript, which is setTimeOut(). In both cases it would be on the lines of:

 

setTimeOut(goThatScene,30000);

function goThatScene(){

//whatever it takes to go to that scene

}

 

This is email code, you could look up the function to understand the parameters better.

 

In AS3 there are timer events that would be another way to do it.

Votes

Translate

Translate
LEGEND ,
Dec 17, 2019 Dec 17, 2019

Copy link to clipboard

Copied

LATEST

As you have said "scene", does that mean you're using ActionScript 3?

 

There is a way that works in AS3 and in JavaScript, which is setTimeOut(). In both cases it would be on the lines of:

 

setTimeOut(goThatScene,30000);

function goThatScene(){

//whatever it takes to go to that scene

}

 

This is email code, you could look up the function to understand the parameters better.

 

In AS3 there are timer events that would be another way to do it.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines