How to Modify shape color with ActionScript

January 9, 2010

Actionscript 3.0 Tutorial

Follow the steps below:

  1. Launch Flash Designer and create a blank document.
  2. Set the frame delay to “Stop” (“Frame” > “Frame Delay”).
  3. Size the frame at about 300×300 (“Frame” > “Frame Size”).
  4. Draw 2 circles with the “Ellipse Tool”.
  5. Select both shapes (Ctrl+A). Choose “Item” > “Line Width” > “None”.
  6. choose “Edit” > “Convert to Sprite”. The object should appear as “Sprite3″
  7. Right-click it and click “Placement Properties”.
  8. Check the “Action-Script Target” checkbox and click OK.

Next, create 2 color buttons below “Sprite3″.:

  1. Choose “Rectangle” tool and draw a small rectangle (about 18 x 18 pixels, hold CTRL to draw both edges equal)
  2. Change fill color to purple
  3. Choose “Action” > “OnClick” and enter the following ActionScript code:myColor = new Color(Sprite3);
    myColor.setRGB(0xff00ff);
  4. Duplicate the rectangle with “Edit” > “Duplicate”
  5. Change fill color to green
  6. Choose “Action” > “OnClick” and modify the following ActionScript code:myColor = new Color(Sprite3);
    myColor.setRGB(0x00ff00);
  7. Hit F9 to play the file.

Download the source here

, , , , , , ,

2 Responses to “How to Modify shape color with ActionScript”

  1. kobsoft Says:

    can i change event onclick to rollover?

    I want to create map rollover and this example can help me :)

    Thank a lot!

Trackbacks/Pingbacks

  1. How to Modify shape color with ActionScript | Flash tutorial … Search - January 9, 2010

    [...] How to Modify shape color with ActionScript | Flash tutorial … Tags: designer, follow-the-steps, frame, frame-delay, launch, launch-flash, steps, the-frame, the-steps Rafael Nadal says he's in better shape forChandelier Earrings » Blog Archive » CandyGem 10k Gold Lab Created …RibsOut: Black Shape Of Nexus – Microbarome MeetingsMicrosoft won't fix Windows 7 crash bug next week | Tech Industry NewsPCGS Million Dollar Coin Club™ Launched : Coin Collecting NewsOakland Raiders, Fix Your Run Defense! | WonCAPCGS Million Dollar Coin Club Launched – Coin NewsFacebook launch Ph.D fellowships to 'fix the social web …White House: 'Lost' Fans Won't Be Marooned – Washington Wire – WSJAsian ≠ White – Kathy Khang – God's Politics Blog View the Contact Powered by Search [...]

Leave a Reply