movieclip

Clone MovieClip in realtime

I have a MovieClip with and image inside that I can drag, resize and rotate. I'm creating a little thumbview, so the user can se how it will look. This is essentially a small version of the main MovieClip. How can I clone the MovieClip into a smaller one, so that when I drag, rotate or resize the image in the main MovieClip the small o...

Don't scale the child movieClip?

I have a question of how to transform the parent movieclip and not the child movieclip...I have a movieclip holding an image loader and some handles as a movieclip. The handles movieclips are used to listen the mouse event to do such function scaling rotation and translation of the parent movieclip. The problem here when I scale or rotat...

Problem displaying image on the movieclip

Have little bit of problem for my flash apps I have a loader which load the image from the server. I also have a large movieclip that hold a list of small movieclips that are used to preview an image using the loader class. It can display the image if I used the loader to add it directly on the large movieclip but it doesn't display t...

how can I play a 3gp movie (not streaming) in a form with c#?

Hi, I want to be able to play small 3gp clips (not streaming) on a form. How can this be achieved? Thanks R ...

Flash CS4 Textfield weirdness!

I've been working on a flash project where a designer has included a typewriter effect. The effect was working for the best part of a day, and now with some minor changes to other parts of the fla, it's not working!! Does anyone have any ideas why this doesn't work.... import flash.text.TextField; var phrase_string:String="SALE IS E...

Run a flash movie in flex application.

I've a flash movie that I would like to use inside of a flex application, very similar to a preloader. Looking at this tutorial, http://www.flexer.info/2008/02/07/very-first-flex-preloader-customization/, I expected it would be a matter of not extending "Preloader" and extending "Sprite" and using the class i created wherever i needed....

Need button to control nested MC timeline.

Flaah CS4, AS2 I am making an interactive tour. On the main timeline I have two movieclip, "ABOUT" and "RENTALS". I would like a button, "btnFLRcafe" in the "ABOUT" movieclip to connect to "RENTALS" and start playing on the timeline at a frame named "CAFE". This is the code that I have on "btnFLRcafe": on(release){ _root.gotoAndStop(...

Is there a way to throw an event when a movieclip becomes visible?

Is there a way to through an event when some other program makes my movieclip visible? I am using actionscript 2. ...

ActionScript 3 MovieClip class linkage

Hi, I'm simply playing around with basic ActionScript 3 using Flash CS3 Pro. I put in a keyframe this very simple code to duplicate n "brander" symbols: for (var i:Number=0; i<20; i++) { var m = new brander("MS_"+i); addChild(m); m.name = "MS_"+i; m.x = 20*i; m.alpha = a; a-=0.05; m.y = 20; } The symbol is...

Creating a Movie from a Series of Plots in R

Is there an easy way to create a "movie" by stitching together several plots, within R? ...

Resize a movieclip wihout messing up mouse coordinates.

How do I do this? I have a seekbar which I'm retrofitting to resize with the FLVPlayback. Right now it gets the mouseX when you click the seekbar, and divides that by the length of the seekbar in order to know what percentage it should seek to. My problem is that now that I'm dynamically setting the width of the seek movieclip the width...

Controlling Movie Clips from the main time line instead of using their individual time lines?

I have a Flash website template (four pages) that I made using AS 3.0 and Flash CS4. It is for an assignment involving movie clips. Currently on the main time line there is only one frame, and three layers: actions/menu/content. The actionscript on the main time line is simply: content_mc.stop (); There is a movie clip on the stage c...

as3 - controlling flicker when scaling up a button or movieclip

This is a situation I run into a lot but never seem to find a good solution. I have movieclips that I scale up slightly on rollover, but if you hover over the edge of the movieclip it just sits there and flickers, continuously receiving mouseOver and mouseOut events. How do you deal with this? Again, it's usually a problem when tweening ...

Is it possible to play a movie file in a UIView layer?

If yes, what movie format has best performance? And how would a simple setup look like? I have some views, and I want to play a short movie inside a view (not fullscreen). The movie is about 5 seconds long. ...

What shows better performance? Playing a movie clip, or animating an image sequence with UIImageView?

Specs: about 320 x 270 px, 5 seconds. I don't know exactly how many images needed for a fluid animation, but let's assume 30. What would be the best way to playback this? As a movie file in some kind of quicktime view (if available), or as an animated image sequence with UIImageView? I'm not sure but I believe loading 30 images per seco...

as3 removeChild issue

Hi there!, I'm loading some swf files at 0 on my stage. They are the pages of my site. To change from page to page I use removeChildAt(0) and then I addChildAt("page_title", 0). The problem is that removeChild dont delete the functions from the first swf file loaded (before unloaded). How can I stop then? Do I have to use other wa...

Flash + AS2 = Unload a movieclip itself when it is clicked

Hi there I have a movieclip which unloads two other movieclips when it is clicked. This bit works fine, but it should also remove itself after this, which particularly does not work. Here is my code, can someone please tell me what I am doing wrong: close_button.onRelease = function() { background.unloadMovie(); loading.unloadMovie()...

Get MovieClip in another frame

I'm in frame 1 of a movie, and I want to use getChildByName("mc_movieclip"); to get a reference to mc_movieclip. The problem is that mc_movieclip does not exist in frame 1 but only in frame 5. How can I get a reference to this MovieClip, even though it's in another frame? ...

Actionscript 3, addChild from library then access it's children by instance names

So I successfully added a movie clip from the library using addChild(), but now I want to access some movieclips that were in that dynamically added movieclip. I've used standard dot notation and also getChildByName passing it the instance names. What am I missing here? ---- EDITED ---- I tried the suggestion of looping through and c...

Why MovieClip-derived class won't gotoAndStop?

Facts: I have 2 classes: Entity and Ship. Entity extends MovieClip and Ship extends Entity. I have a MovieClip associated to the Ship.as class file. The thing is that I'm able to show, rotate and move the Ship object. However, I cannot change the pointer to the place I want in its timeline; in short: I can NOT have a successful respo...