• Home

Logo

Navigation
  • Home
  • Articles
    • Content Writing
    • Design
    • General
    • Internet Marketing
    • Social Media
    • Tools and Tips
    • Usability
    • Web Hosting Articles
  • Tutorials
    • AJAX Tutorials
    • ASP Tutorials
    • C# Tutorials
    • CGI and Perl Tutorials
    • CSS Tutorials
    • Flash Tutorials
    • HTML Tutorials
    • Illustrator Tutorials
    • Java Tutorials
    • JavaScript Tutorials
    • Linux Tutorials
    • Miscellaneous Tutorials
    • MySQL Tutorials
    • Photoshop Tutorials
    • PHP Tutorials
    • Python Tutorials
    • Wireless Tutorials
    • WordPress Tutorials
    • XML Tutorials
  • Scripts
    • AJAX Scripts
    • ASP Scripts
    • ASP.NET Scripts
    • CGI & Perl Scripts
    • Flash Scripts
    • Java Scripts
    • JavaScript Scripts
    • PHP Scripts
    • Python Scripts
    • Remotely Hosted
    • Tools and Utilities
    • XML Scripts
  • Answers
  • Online Services
  • Tools

How to Change the Movie Visibility Using Action Script in Flash MX 2004

By Oleg Lazarenko | on Apr 6, 2005 | 0 Comment
Flash Tutorials
  • Tweet
  • Share
  • Tweet
  • Share

Visibility Using Action Script in Flash MX 2004

Movie clip has a lot of properties and many of them may be changed using action script coding. I want to teach you how you may influence the visibility of your movie clip. If you experience some difficulties while reading this tutorial it is recommended to read all the previous tutorials on http://www.metamorphozis.com written by me as some aspects might be discussed earlier.

1. Launch Flash MX 2004

2. Create new Flash file. Click File > New…

3. Select Flash Document in a new window

4. With the “Oval Tool (O)” draw a simple circle. Set its background color to black. Rename this layer to “shape”.

5. Convert oval shape to a movie clip. Change the instance name of the movie clip to “shape”

6. Create new layer. Name it “button1″. With the “Rectangle Tool (R)” draw the rectangle shape inside that layer. Convert this shape to button.

7. With the “Text Tool (T)” create label for that button: Make shape invisible.

8. Add the following action script code to that button:

on (press) {

tellTarget (“/shape”) {

if (_alpha-5>0) {

_alpha-=15;

}

}

}

9. Press “Ctrl+Enter” and make several clicks on the button. If everything was done correctly you should see that the oval shape disappeared. Now we need to create the button to bring the shape back visible.

Create new layer, name it “button2″. With the “Rectangle Tool (R)” draw another button. Make a label for it: “Make shape visible”

10. Add the following action script code to that button:

on (press) {

tellTarget (“/shape”) {

if (_alpha+5<100) {

_alpha+=15;

}

}

}

11. Press “Ctrl+Enter”. Click on those buttons to see if they both work fine. That’s all folks! Thanks for reading!

Click here to download source fla file.

Share this story:
  • tweet

Author Description

Metamorphosis Website Design Studio - Custom design, Website Templates, Web design Articles and Tutorials.

No Responses to “How to Change the Movie Visibility Using Action Script in Flash MX 2004”

You must be logged in to post a comment.

Connect With Us

RSSSubscribe 0Followers 497Likes
  • Popular
  • Recent
  • Comments
  • Creating Energy Spheres in Photoshop

    Apr 15, 2008 - 96 Comments
  • Easy Screen Scraping in PHP with the Simple HTML DOM Library

    Aug 6, 2008 - 20 Comments
  • Calculating date difference more precisely in PHP

    Mar 7, 2008 - 13 Comments
  • When Does Hosting Your Website in the Cloud Make Sense?

    Oct 8, 2010 - 2 Comments
  • Fun with the Microsoft Managed Extensibility Framework Part 2

    Oct 6, 2010 - 0 Comment
  • Fun with the Microsoft Managed Extensibility Framework Part 1

    Sep 22, 2010 - 0 Comment
  • Website Management on the go with the iPad

    I appreciated your post, but I was looking for something I didn't...
    November 24, 2012 - drmoderator
  • Creating Energy Spheres in Photoshop

    I'm a little stuck down here especially at the step of creating the...
    November 23, 2012 - sarah
  • Running background processes in PHP

    Can you give an example? As see it, you can use this only when you...
    November 16, 2012 - Shaked Klein Orbach
Developer Resources
  • Tutorial Directory
  • Learn HTML
  • Learn PHP
  • Learn CSS
  • Learn AJAX
  • Learn JavaScript
  • Learn Pear
  • White Papers
  • Resources
    • NetVisits Web Directory
    • Realtor Pixels
    • Answers On The Run
    • Ask A Geek
  • Recent Posts

    • When Does Hosting Your Website in the Cloud Make Sense?
    • Fun with the Microsoft Managed Extensibility Framework Part 2
    • Fun with the Microsoft Managed Extensibility Framework Part 1
    • Website Management on the go with the iPad
    • Code Contracts in C# 4.0 – Part 1

    Calendar

    June 2013
    M T W T F S S
    « Oct    
     12
    3456789
    10111213141516
    17181920212223
    24252627282930

    Recent Comments

    • drmoderator on Website Management on the go with the iPad
    • sarah on Creating Energy Spheres in Photoshop
    • Shaked Klein Orbach on Running background processes in PHP
    • Thomas Cuvillier on How To Upload Files Using PHP
    • rizal aditya on Extracting text from Word Documents via PHP and COM
    • Home
    © 2003 - 2013 DeveloperTutorials.com. All Rights Reserved. Privacy Policy.