Questions tagged [movieclip]

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

A MovieClip extends the DisplayObject class in Adobe Flash. It is a display container that, unlike a Sprite or other DisplayObjects, contains a timeline for animation. MovieClip objects can be created in the Flash graphical authoring and animation tool, or created via .

More Information

950 questions
2
votes
2 answers

Why is motion tweening changing the size/proportion of my movieclip?

I am having a really odd problem with Flash CS4. I have a MovieClip with the dimensions 652x400. When I create a motion tween for the layer containing the clip, and move the playhead to the last frame of the tween, I check the dimensions of the same…
user27171
  • 567
  • 2
  • 8
  • 11
2
votes
1 answer

Creating movie by sequence of plots in matlab

I created an animation using the code in the answer of presenting motion of random walkers in matlab After running the answer code, you can see a movie by sequences of plots. Is there a way to save the sequence of plots as movie?
oliver rouph
  • 43
  • 1
  • 4
2
votes
1 answer

How to export MovieClip to SWF via AS3?

I've wrote some application in Flash cs5, wich allow users to make their own Christmas Cards, but at the end of programming I realized, that I should to provide some function to save user's card to seperate SWF-file... Please, anyone who knows, help…
Alexey
  • 21
  • 1
  • 3
2
votes
4 answers

How do I know when MovieClip placed on stage to finish play?

MovieClip(mcName).play(); MovieClip(mcName).addEventListener(??????, myStopFunction); Or how differently you can learn about the end of play? MovieClip is an external file and loaded into the swf as needed.
user499596
  • 21
  • 1
  • 6
2
votes
2 answers

Constraining/clipping symbol boundaries in Flash CS5

I want to create a MovieClip symbol of a certain width and height, but with content that extends outside its boundaries, with the option to have the external content be clipped/hidden or visible. In Flex, the solution would be to create a group…
Yarin
  • 173,523
  • 149
  • 402
  • 512
2
votes
1 answer

Error #1034 flash/animate cc as3

So I am putting together a school project, and is jsut starting, I am making a quiz in flash cc using as3. But when I compile my code I just get the error: TypeError: Error #1034: Type Coercion failed: cannot convert spr4$ to…
TubbyS
  • 21
  • 2
2
votes
0 answers

Rendering animation to movie

I have a serious problem with Core Animation in combination with the AV Foundation. I want to render the animation of several UIImages to a movie file. The animation of the images should only be the change from one image to the next, just like shown…
Nuker
  • 2,577
  • 5
  • 21
  • 32
2
votes
2 answers

How to get name of MovieClip on Flash stage that was created dynamically?

There are multiple MovieClips that will be dynamically placed on stage. These MovieClips are coded to be buttons. I'm trying to figure out--when a user clicks on the MovieClip...figure out which object on the flash stage the user clicked on. Inside…
jc70
  • 255
  • 2
  • 13
  • 32
2
votes
2 answers

AS3 - Embedded SWF video shows totalFrames == 0

I've got this 1 minute long movie that I want to compile into an AS3 project. The movie started out in MOV format, so I used FFMpeg to convert it to FLV, then again with FFMpeg from FLV to SWF. I'm embedding this movie into the AS3 binary by using…
jtrim
  • 3,465
  • 4
  • 31
  • 44
2
votes
4 answers

MovieClip can't see base class methods

I have this base class package sevengames.miranda.front.res { import flash.display.MovieClip; import flash.text.TextField; public class MenuButtonBase extends MovieClip { protected var text:TextField; protected var…
Bart van Heukelom
  • 43,244
  • 59
  • 186
  • 301
2
votes
2 answers

Actionscript 3.0 Movieclip modification on EXIT_FRAME

I have this baffling problem with Flash AS3 that I have been attempting to solve for a long time. I have a notion that perhaps this is a bug with the flash player, but perhaps you can shed some insight. I have a MovieClip in Flash that is a star for…
theseal53
  • 189
  • 10
2
votes
3 answers

AS3 Accessing MovieClip when added to stage on another AS class file

I've tried searching articles on here already and sadly, didn't find anything that helped solve my problem. Sorry if there are articles with the answer I am looking for and I am sure it's a simple answer, I just can't quite get my head around it.…
Naythan
  • 33
  • 4
2
votes
1 answer

Flash Lite 2 Split Image

Can flash lite 2(as2) split an image in to multiple movie clips? For example, get an image and split it in half to to mc's.
NebNeb
  • 339
  • 1
  • 4
  • 10
2
votes
3 answers

Let system time determine animation speed, not program FPS

I'm writing a card game in ActionScript 3. Each card is represented by an instance of a class extending movieclip exported from Flash CS4 that contains the card graphics and a flip animation. When I want to flip a card I call gotoAndPlay on this…
Anders
  • 1,977
  • 2
  • 11
  • 10
2
votes
1 answer

AS3 How to make only 1 movieclip clickable at a time when there are multiple movieclips

Ok, so I have a page with 5 movieclips/buttons on it. When you mouse over each one they light up (OVER state) and when you click on them they expand (DOWN state). The problem is if you have multiple movieclips expanded (in the DOWN state) they…
cholverson
  • 61
  • 1
  • 7
1 2
3
63 64