A display object with a timeline in Actionscript on the Adobe Flash platform

learn more… | top users | synonyms

0
votes
0answers
25 views

MovieClip won't change frame

I got a code for a wall in a game which is going to change frame if it's HP for every 25% of it's health - e.g at 75%. Here's the code for the wall: protected function checkFrame() { ...
0
votes
1answer
32 views

Stop animation of a movie clip in flash Action Script 3

I am new to Flash..(not very new) and i'd like to ask a question. I just made (work in progress) a game in which we have to shoot people falling from sky. I was going to make enemies but i thought to ...
0
votes
1answer
50 views

How can i convert my AS3 keyboard events into mouse events ?

I would like to keep my keyboard events but add mouse events to work as well. My game keyboard events work fine I just can't get my head round how to add the mouse events to them. I have some ...
0
votes
0answers
7 views

attach movieclip doesn't work anymore

I'm trying to change a movieclip when clicking on a button, i have done this many times in this scene but this one doesnt seem to work and I'm out of ideas. this is image a significantly simplified ...
0
votes
2answers
43 views

AS3 Button to stop Movieclip after its finished playing

Ok, so I'm a beginner at AS3 and Flash and I managed to put this code together for an animation. A Button called start_btn is supposed to start and stop a movieclip called main_mc. On the first click ...
0
votes
2answers
26 views

Mixing object types in a nested array

I'm pretty inexperienced with Actionscript 3, and I'm trying to make a nested array with different object types within it, but am having some trouble and wondered if anyone can help. I want to create ...
0
votes
1answer
13 views

AS3 - MovieClip array: play each movie after another

AS3 Newbie here... very confused, please be kind ;) I have a MovieClip (rozette), which contains 7 instances of a MovieClip (circle). circle contains an animation and I would like to play each ...
0
votes
1answer
51 views

ActionScript 3: Make the movieclip play to the end

(I am a complete noob, this is one of my first scripts in Flash/AS3 so excuse me if this is "common knowledge") I have a "smiley" movie clip that is around 10 frames. Presently when a person clicks ...
1
vote
1answer
67 views

AS3 Load swf As Movieclip

I need to load in an external swf and be able to use it as a Movieclip in FlashDevelop i.e I need to be able to go to specific keyframes, start and stop it playing etc. Some simple working sample code ...
-1
votes
0answers
28 views

Make Object Stay In MovieClip

I have found a guide which said how to make an object move with the arrow keys and stay inside the stage, meaning if it reaches the top, bottom, left, or right of the screen the object will stay on ...
-2
votes
0answers
33 views

Passing object properties through event listeners [closed]

Working on a Jeopardy-styled game, I am currently looking for a way to pass class properties from a custom button class (a GameButton class) to another class (a GameBoard class) using events (or any ...
0
votes
1answer
29 views

AS2 Best way to decrease lag when dealing with several movieclips with onEnterFrames

As the title states, I'm wondering what the best way to handle several movieclips on the stage at one time, each with their own onEnterFrame functions. Lets say we have 50 enemies on the screen at ...
0
votes
1answer
31 views

AS3: Movie Clips in an Array Being Dropped on Movie Clips in another array

I've been trying to create a drag and drop style app and have run into a snag. I have a group of movieclips that will be dragged in an array. When I drag them I want them to either, A) Snap back to ...
0
votes
1answer
23 views

Changing variables for the same Movie Clip object for each level

Hey guys so I'm having a little trouble trying to figure out how to do this. I have a Movie Clip Object named mcGoal_1 and in its class i have it tween Up and Down the stage vertically using ...
1
vote
2answers
72 views

ActionScript 3 - save movieclip “state” between different frames

We're developing a prototype for an university exam, using FLash CS6 and AS3. We are building a device to manage the hospital's food service, but we encountered a problem with the handling of the ...
1
vote
1answer
18 views

how do i loop instance name without using “this” keyword?

I created a square and saved it as a movieclip called starContainer, i draged three of them on the stage and gave each one instance names in my flash cs6 named - goldStarContainer1, goldStarContainer2 ...
0
votes
1answer
16 views

Not allowing me to add a property to a MovieClip?

var menuButton:Array = new Array(3); //the overarching menu buttons, these lead to a submenu for (i = 0; i <= 3; i++) { menuButton[i] = new BattleActionButton(); ...
0
votes
1answer
36 views

Simple Actionscript 3 for button

I was very familiar with AS2 and am just getting familiarized with AS3. I have a movieclip that serves as a button. On hover, Flash plays the second frame of that movieclip. My question is how can I ...
0
votes
1answer
36 views

How do I limit the area a movieclip can be dragged?

I am making a interactive map in as3/flash cs6. At the moment, I've got it to zoom in and out, and be dragged around. But my question is, how to I limit the area the map can be dragged, so it you ...
0
votes
1answer
31 views

AS3 Class Access Movieclip

Trying to get into OOP for the first time which has been a rough ride to say the least. The following code does nothing (no errors etc): //Main.as var Player = new PlayerMC(); ...
0
votes
1answer
41 views

Actionscript 2 Proper way to define function on MovieClip

I'm trying to write a function on a MovieClip, and call it from the root clip. What works fine in ActionScript 3 doesn't seem to be working properly in ActionScript 2. Frame 1 of the _root MovieClip: ...
1
vote
1answer
21 views

ActionScript 2 MovieClip Class or Interface Not Found

I'm converting an actionscript 3 project to AS2 because AS3 is not yet scaleform compatible in CryEngine 3. I have a MovieClip in the library. Under ActionScript linkage I have "Export for ...
0
votes
0answers
44 views

AS3 MovieClip array not working

I am perplexed. I am using the exact same code to run a series of MovieClips through an array. Everything works perfectly except for one particular MovieClip. This MovieClip has more animations and ...
0
votes
1answer
44 views

ActionScript 3: Know the instance name of a hit movieClip

My circle_mc is draggable. Then when it hit another movieclip on stage, is there any way to show up the instance name hit by the circle_mc? is it possible this way... var theInstanceName:String = ...
0
votes
1answer
22 views

Wildcard for hitTestObject ActionScript3 show Instance Name

I have movieClips namely rec1, rec2, rec3, rec4... Then, I would addChild another movieclip(circle_mc) to those rec MovieClips. I want to use the hitTestObject... Something like this: ...
2
votes
2answers
44 views

how to draw a 'circle' with 'dynamic angle' using action script 2?

I want to have a circle (maybe a movieclip ) to show a timer which change like this picture : And also I need to access its angle in run-time. for example: function setAngle(degree:Number) Any ...
0
votes
1answer
24 views

UILoader does not act as MovieClip for Drag and drop; How can you make UILoader to behave like MovieClip

I wrote this code below counselors I saw here Its main goal is to import images from xml to the main stage and then play with them with the "Drag and drop Function" When I turn it on everything is ...
0
votes
2answers
19 views

Accessing Movieclip added by a different function in the same class?

I can't seem to find an answer to this problem. I can't get the following to work: public class Callbattle extends MovieClip { import flash.display.MovieClip; import flash.display.Stage; import ...
0
votes
0answers
42 views

Button to play a movie within a movie in ActionScript 3 Presentation

I am making a Flash Presentation, so each animation is within a movie clip (movie_mc). This movie clip has a key frame holding each animation (4 keyframes/animated slides). The first movie ...
0
votes
2answers
73 views

Flash AS3 - 1046: Type was not found or was not a compile-time constant:

I asked a question the other day and it taught me a fair bit about display objects and stuff. I have another problem though. This is my document class : package { import ...
0
votes
0answers
13 views

How to use onRollOver with Nested Movie Clips that are part of an Array Action Script 2.0?

I have, lets say, 5 buttons (Movie Clips) nested inside a parent (Movie Clip). I have placed all 5 buttons inside an array called bArray. I have created this for statement to loop through them. It ...
0
votes
1answer
113 views

As3 collision detection with a movieclip array?

Ok my xChar.character is my character movieclip and xMap the instance of the class building the map. From the xMap i add movieclip sliced from a image using variable which is inside a function. I do ...
0
votes
1answer
66 views

How make MovieClip changing dynamically images using their linkage with Time Interval

I am not advanced with ActionScript and I used the HYPE framework to receive this effect. It would be so helpful if you could improve this code because I was trying to do it by myself but couldn't ...
0
votes
1answer
102 views

AS3 Flash- Adding multiple different movieclips to stage from one class

I've searched everywhere and can't find an answer to this question and I'll do my best to explain it. I have 2 movieclips in my library, 'Bluknife' and 'cat' (It's an rpg game.). Both those ...
0
votes
1answer
37 views

flash action scrip 2 remove linkage MovieClip

i'm trying for tow-tree days to solve this problem and i'm this close to kill my self. i'm making a banner and in the banner i have a movie-clip that link fro the libary in action script and call ...
0
votes
3answers
28 views

Flash - Scroll through MovieClip smoothly

Say I have a .flv containing 180 frames at fullHD. I import this into Flash (or flex), and want to be able to smoothly navigate through the timeline by clicking and dragging the view. How would I do ...
0
votes
1answer
27 views

AS3: Accessing a dynamicaly added child from another dynamicaly added child

So heres my question, I have a button on the stage that adds a MC called "fadeL" and "PDF1" Quick note: "fadeL" and "PDF1" are instances of "fadeMC" and "PDFwindow" heres the code for them: var ...
0
votes
1answer
41 views

Adding multiple movieclip from array

I got this function from internet which slice an image into part like tiles and put them in a array (linear or multidimensional). ---EXAMPLE--- var sliceClips:Array = ...
0
votes
2answers
108 views

How can I add instance names to movieclips using AS3

I have a FLA document with a movie clip called "mc_walls". This movie clip is in the stage over 50 times in the movie and I haven't assigned an instance name each movie clip. I was wondering if ...
0
votes
2answers
64 views

[AS3]Error #1009 , null object in my array (movie clip)

I've got the Error #1009 in my project and it pisses me off. My problem in null object reference. Especially in array. I declare movie clip into an array. But the result is null. Name of my movie ...
0
votes
1answer
23 views

creating new variable name instance using this[ ] in actionscript 3

I keep looking this over the internet but I think, as far as I have searched, nothing yet had been posted (if any, please give me some links). Is this a way to make an instance this way. When I tried, ...
0
votes
1answer
29 views

as3 looping MC from class not adding X propertity correctly

I have a simple loop that creates a movieClip from a class in my library. It's adding the first part of the equation to the x property but not the plus 50. HOWEVER, it is adding the +50 but only to ...
0
votes
1answer
50 views

as3 how to repeat part movieclip timeline number of times from label to label

I have a movie clip with about 7 lapels on the timeline, I want each part of the label to repeat 2 times and until the end of the timeline, and no code on the movie clip timeline at all. I am trying ...
0
votes
2answers
79 views

ActionScript 3 movieclip with interchangeable images

I'm creating a game using Flash Develop and ActionScript 3.0 and I can't figure out how to make a "Character Creation" menu, in the sense that, I want to animate a movieclip full of images (head, ...
0
votes
1answer
55 views

How to resize an empty container movieclip in AS3?

I have an empty movie clip which I have added children to via addChild. I would like to be able to scale this movie clip by half so that all it's children's dimensions are halved. Changing the height ...
0
votes
0answers
92 views

Best Flash Engine for Vector Graphics?

Hi can anyone give me a link to a flash library that can use vector images or merge with flash profressional cs6 movieclips? Vector images made in Illustrator or Flash Pro CS6? Would cs6 ...
1
vote
0answers
48 views

Movieclip or vector data for flashpunk?

Hello is there a way to use a movieclip for a graphic in the flashpunk library? Normally we would embed a .png image and declare it as a class and then we would make the graphic of the entity class ...
0
votes
1answer
57 views

How do you access script on your ActionScript class from inside a movie-clip?

I want to be able to access a private var from inside a movieclip, does anyone know how I would go about doing that? I want to be able to access my public function counter(numPoints:int) that is ...
0
votes
1answer
95 views

AS3 selecting a Combo Box inside a Movie Clip

I am not sure if there is a better way to do this, and if there is please let me know. But right now, I have a list of combo boxes with names in them. The combo boxes are stu1, stu2, stu3, ect all ...
0
votes
0answers
36 views

Error with jump function when putting script on movieclip

I'm having a problem with my jump function for a platformer engine. I've moved all of the hit testing onto the individual platforms in the level, so I don't have to write things out for each ...

1 2 3 4 5 12