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

The command "_visible=false;" does not work.(AS2)

Guest
Feb 24, 2014 Feb 24, 2014

I have written this command for a movie clip (mol_up) :

onLoad = function(){

mol_up._visible=false;

}


But it is still showing, when I press ctrl+ENTER to view my movie.

And I want that this movie clip(mol_up) only shows when a certain button is pressed.

What would be the solution for this problem?

TOPICS
ActionScript
426
Translate
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 , Feb 24, 2014 Feb 24, 2014

Just use...

    molup._visible = false;

it goes in the timeline, and you have to assign the instance name "mol_up" to the object via the Properties panel

Translate
LEGEND ,
Feb 24, 2014 Feb 24, 2014
LATEST

Just use...

    molup._visible = false;

it goes in the timeline, and you have to assign the instance name "mol_up" to the object via the Properties panel

Translate
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