MovieClip btn problems

I have a movieClip btn with a rollOver and rollOut animations
(motion-tweens) . It work fine until I move the mouse too fast over
the btn than it gets stuck in the 'over' position. Does anyone know
why this happens?
here's the code I'm using -
on (rollOver) {
//Movieclip GotoAndStop Behavior
this.gotoAndPlay("over");
//End Behavior
on (rollOut) {
//Movieclip GotoAndStop Behavior
this.gotoAndPlay("out");
//End Behavior
Thanks for any help,
Dave

if you construct a MC button that has labels of '_up',
'_over', and '_down' and then apply a single handler like onRelease
or onPress - Flash will recognize that you are using the MC as a
button and respond to the mouse events without have to declare the
other handlers.
Then, in your onRelease handler, tell the button to
gotoAndStop('_down) (or over in your case) and then use the
'enabled' prop to disable the button. Now however you will need a
method to 're-enable' any other button that was previously disabled
- best thing to do is to store the buttons in an array and then
iterate through the array a 'enable' all of them with the exception
of the one currently navigated to.

Similar Messages

  • MovieClip Hit problem.

    MovieClip Hit area doesn't work properly. I have two
    movieclip's next to each other, one is button mode true, but the
    hit area isn't correct.
    Here is my .fla file (just an example, very simple) -
    http://www.speedyshare.com/831305914.html
    , just open and test the movie, you see it (then you roll over it
    should fade in into blue and at mouse roll out it should fade out
    back to white, but on "o" and a lit of bit on "m" hit area is
    wrong).
    How to fix this?

    I really don't know guys.

  • Serious movieclip linking problems

    Is it possible on flash to access inside a movie clip of an external swf file?
    im trying to link this button which is currently inside a movieclip to the frame inside this movieclip of an external swf.
    this is what i got so far:-
    footie.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_9);
    function fl_ClickToGoToAndStopAtFrame_9(event:MouseEvent):void
        navigateToURL(new URLRequest("olympic_sports.swf"), "_parent")
        _root.olympic_content.gotoAndStop(football_info);       //football info is the frame label

    yes.
    but first you must load the external swf (using the loader class).  you can then reference the main timeline of the loaded swf using the loader's content property (cast as a movieclip).  from there you reference nested movieclips in the typical way.
    if you don't understand the above, copy and paste the code you're using to load your external swf and explain the relationshipt between the movieclip you want to reference and the external swf's main timeline.

  • Movieclip btn question

    Hi there,
    Can anyone tell me how I go about making my movieclip buttons
    stay in over state while they at their destination? For example, if
    I'm on my about page in my website how can I get my about button to
    stay in it's over state, then go back to it's normal state when
    another button is clicked and I go to a different page? I hope I
    explained that ok, the only way I can think of doing it is really
    long winded and I wondered if there was a better way. Below is the
    code for one of my buttons.
    Thanks in anticipation.

    if you construct a MC button that has labels of '_up',
    '_over', and '_down' and then apply a single handler like onRelease
    or onPress - Flash will recognize that you are using the MC as a
    button and respond to the mouse events without have to declare the
    other handlers.
    Then, in your onRelease handler, tell the button to
    gotoAndStop('_down) (or over in your case) and then use the
    'enabled' prop to disable the button. Now however you will need a
    method to 're-enable' any other button that was previously disabled
    - best thing to do is to store the buttons in an array and then
    iterate through the array a 'enable' all of them with the exception
    of the one currently navigated to.

  • Login btn problems

    question i tried this code in my flash site that i got from
    another old post and changed a few things to use it.
    on (release, keyPress "<Enter>") {
    if (userName == "client" && password == "enter") {
    _root.gotoAndStop (15);
    } else {
    _root.gotoAndStop(16);
    while it does bring me to the next frame in the movie just
    fine, it also will take me there regardless of what i put, or even
    if i put nothing at all. So am i miss understanding something,
    doing something wrong, or what. How do i fix this so that it won't
    send me to the next frame unless the correct username and password
    are inputted?

    Hi,
    If your "AIM" login is an Apple ID the password has to be 16 characters or less.
    This is  an AIM Server Limit and it cannot read longer Apple ones.
    Another possible is that you are trying to use an iCloud ID (@Me.com)  in iChat 5 or earlier.
    This will not work.
    In iChat 6 and Messages the app also log in to me.com which then allows the AIM servers to "See" the password and iChat 5 and earlier cannot do this.
    11:12 PM      Wednesday; August 29, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Movie clips inside an animated movieclip

    Hello- I have been trying to get movieclip buttons inside an
    action script animated movie clip to work and have no luck doing
    so. The inside movieclips act as if they dont have over or out
    states; but when i comment out the animation, they work fine...
    here is my code- (Please note im am a newbe at action script so any
    suggestions on improving current code will be greatly appreciated)
    stop();
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    function upFunction() {
    var xPosT:Tween = new Tween(kText, "_x", Strong.easeOut,
    kText._x, 400, 1, true);
    function downFunction() {
    var xPosT:Tween = new Tween(kText, "_x", Strong.easeOut,
    kText._x, 200, 1, true);
    kText.btn.onRelease = function():Void {
    _root.play();
    kText.onRollOver = function():Void {
    upFunction();
    kText.useHandCursor = false;
    kText.onRollOut = function():Void {
    downFunction();
    kText is the animated movieclip, btn is the button inside
    kText
    Thanks!

    if you define any mouse handlers for a parent movieclip (like
    kText) it will intercept all mouse events so child movieclips (like
    kText.btn) do not see the mouse events.
    to remedy define all mouse handlers for shapes (converted to
    movieclips), buttons and movieclips on kText's timeline or use a
    loop with hitTest one the parent or child

  • Loading Window Component with Button!

    Hello! I found two tutorials that both contain pieces of what i am looking for but i cant seem to figure them out and get exactly what i want. Here is the first one:
    http://livedocs.adobe.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveD ocs_Parts&file=00004289.html
    In the first one, the general idea is what i am looking for. Except that i want to load a movieclip and not an image. My problem in this one is the button component that is used. I have no clue how to skin or customize the button, and i cant find a good tutorial to help me so i figured it might be easier to just change the actionscript for this. I want to be able to create my own button (instance button) and use that so that when people release that button, the movie clip pops up!
    Now in this second tutorial that i found:
    http://www.getw3help.com/2008/07/window-component.html
    Its pretty much exactly what i want and it loads a movieclip. Problem is, when i add the code to a button, it doesnt work!
    Can anyone help me? Hope i am clear in my explanation!
    Thanks!

    Ok it sort of works... here is my code:
    on (release) {
    trace("button works");
    win.title = "Yellow Birthday Package";
    win.closeButton = true;
    win.contentPath = "yellowPack";
    win.setSize(550,500);
    var listener:Object = new Object();
    listener.click = function(){
    win._visible = false;
    win.addEventListener("click",listener);
    It order to make it work, the window component has to be on the stage but i want it to popup only when the user clicks on the button. So the window should be hidden/invisible when the page first loads. I tried changing win._visible = true; but that did nothing.
    The other problem is that the movie clip inside the window, isnt aligning center. i can only see a corner of the movie clip. in the top left. I havent tested the whole thing live though!

  • WORKING WITH TIMELINES

    Hi
    I have a game designed in flash using the Object Oriented Approach. This implies I have various classes with a main class.
    I also have two versions of the game collaborative and non-collaborative which can be palyed using three different game controllers. so in total I have 6versions as shown below:
    collaborative palyed with gamepad
    collaborative played with wiimote
    collaborative played withbalance board
    non- collaborative palyed with gamepad
    non-collaborative played with wiimote
    non-collaborative played withbalance board
    Now I want to have a screen with links to all these verions for example when I run the game I want to get an intro screen with the versions written on it and then with button clicks play the particular version I want.  Can I do this on the Timeline. if possible what is the procedure?

    in your new main swf:
    var loader:Loader=new Loader();
    addChild(loader);
    var a:Array=[collaborative_palyed_with_gamepad_btn,collaborative_played_with_wiimote_btn,coll aborative_played_withbalance_board_btn,non__collaborative_palyed_with_gamepad_btn,non_coll aborative_played_with_wiimote_btn,non_collaborative_played_withbalance_board_btn];  // <-create those movieclip btns
    for(var i:int=0;i<a.length;i++){
    MovieClip(a[i]).addEventListener(MouseEvent.CLICK,clickF);
    MovieClip(a[i]).ivar=i;
    MovieClip(a[i]).buttonMode=true;
    function clickF(e:MouseEvent):void{
    var ivar:int=MovieClip(e.currentTarget).ivar;
    loader.load(new URLRequest(a[ivar].split("_btn").join(".swf"));  // assuming your swfs are named collaborative_palyed_with_gamepad.swf (sic) etc

  • Problem of defining value to a textfield in MovieClip

    hello,dear everyone
    there is problem that realy confused me.that is the
    textfield(or other display objects) in MovieClip can't be defined
    when i jumpto that frame.check these simple code:
    mc.stop()
    function goNext(evt:Event){
    mc.nextFrame()
    dosth()
    function dosth()
    if(mc.currentFrame==2)
    mc.mytext.text="hello"
    nextBT.addEventListener("click",goNext)
    the mc is a simple MC that have 2 frames,and the textfield
    object is in the second frame.
    and what i try to do is when i clicked the button,the mc
    jumpto the second frame.and i define a value to that textfield.but
    it's failed when i try to do like that.
    as i debug the program.i found that when i define the value
    to the textfield,that textfield is a Null Object(should be the
    TextField object).not only the textfield not work,but also other
    elements such as Button objects.
    so,i am thinking that must because the objects are too late
    to initialized before they be used.maybe there are some event can
    tell me that all elements has been initialized,as i can use them
    then.what do you think,my friend?

    If all of the code you have is in the first frame, then it
    has processed long before anything ever moved to the second frame.
    What you could try is to have a variables layer that extends
    both frames, and assign the value of the textfield text to that
    variable. Make the textfield associate with that variable (in the
    properties section for it), So when the movieclip moves to the
    second frame the text field should automatically acquire the
    variable value.
    I may not have interpretted your problem correctly, so you
    might have to clarify things if I missed the target.

  • Problem in Loading Multiple image in Single Sprite/MovieClip

    Hi All,
    I am having a killing problem in loading multiple images in single movie clip/sprite using a separate class.
    Here is the ImageLoader.as class
    package com.project.utils{
        import com.project.*;
        import com.project.utils.*;
        import flash.events.EventDispatcher;
        import flash.display.MovieClip;
        import flash.events.Event;
        import flash.events.ProgressEvent;
        import flash.display.Loader;
        import flash.events.IOErrorEvent;
        import flash.net.URLLoader;
        import flash.events.MouseEvent;
        import flash.net.URLRequest;
        import flash.display.Bitmap;
        public class ImageLoader extends EventDispatcher {
            public var imgloader:Loader;
            public var imgMc:MovieClip;
            public var imgObject:Object;
            public var loaded:Number;
            public function ImageLoader():void {
                imgMc = new MovieClip();
                imgObject = new Object();
                imgloader = new Loader();
            public function loadImage(imgHolder:MovieClip, imgObj:Object):void {
                imgMc = new MovieClip();
                imgObject = new Object();
                imgloader = new Loader();
                imgMc = imgHolder;
                imgObject = imgObj;
                imgloader.contentLoaderInfo.addEventListener(Event.COMPLETE,onImgLoad);
                imgloader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,onImgLoadProgress);
                imgloader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR,onImageLoadFailed);
                imgloader.load(new URLRequest(imgObj.FilePath));
            private function onImgLoad(Evt:Event):void {
                var image:Bitmap = Bitmap(Evt.target.content);
                try {
                    imgMc.removeChildAt(0);
                } catch (error:Error) {
                imgMc.addChild(image);
                try {
                    if (imgObject.URL != undefined) {
                        imgMc.buttonMode = true;
                        imgMc.removeEventListener(MouseEvent.CLICK, onImageClicked);
                        imgMc.addEventListener(MouseEvent.CLICK, onImageClicked);
                } catch (err:Error) {
                dispatchEvent(new CustomEvent("CustomEvent.ON_IMGE_LOAD"));
            private function onImageClicked(evt:MouseEvent):void {
                trace("Image Attrs:"+imgObject.URL +" Target "+imgObject.Target);
            private function onImgLoadProgress(Evt:ProgressEvent):void {
                if (Evt.bytesLoaded>0) {
                    loaded = Math.floor((Evt.bytesLoaded*100)/Evt.bytesTotal);
                    dispatchEvent(new CustomEvent("CustomEvent.ON_IMGE_LOAD_PROC",loaded));
            private function onImageLoadFailed(Evt:IOErrorEvent):void {
                trace("Image Loading Failed");
                dispatchEvent(new CustomEvent("CustomEvent.ON_IMGE_LOAD_FAIL"));
    Here I am loading some images using the above class in a for loop, like
                for (var i=0; i < 3; i++) {
                    //imgLoader=new ImageLoader;
                    imgLoader.addEventListener("CustomEvent.ON_IMGE_LOAD",onImageLoad);
                    var target:MovieClip=videolist_mc["list" + mcCount + "_mc"];
                    target.list_mc.visible=false;
                    var imgObj:Object=new Object;
                    imgObj.FilePath=list[i].Thumbnail;
                    imgObj.Url=list[i].Url;
                    imgObj.Target=list[i].Target;
                    target.list_mc.urlObj=new Object  ;
                    target.list_mc.urlObj=imgObj;
                    imgLoader.loadImage(target.list_mc.imgholder_mc,imgObj);
                    target.list_mc.lable_txt.htmlText="<b>" + list[i].Label + "</b>";
                    target.list_mc.imgholder_mc.buttonMode=true;
                    target.list_mc.imgholder_mc.addEventListener(MouseEvent.CLICK,onItemPressed);
                    mcCount++;
    In this case, the ImageLoader.as works only on the last movie clip from the for loop. For example, if i am trying to load three image in three movie clips namely img_mc1,img_mc2 and img_mc3 using the for loop and ImageLoader.as, I am getting the image loaded in the third movie clip only img_mc.
    See at the same time, If i uncomment onething in the for loop that is
    //imgLoader=new ImageLoader;         
    its working like a charm. But I know creating class objects in a for loop is not a good idea and also its causes some other problems in my application.
    So, help to get rid out of this problem.
    Thanks
    -Varun

    package com.project.utils{
        import com.project.*;
        import com.project.utils.*;
        import flash.events.EventDispatcher;
        import flash.display.MovieClip;
        import flash.events.Event;
        import flash.events.ProgressEvent;
        import flash.display.Loader;
        import flash.events.IOErrorEvent;
        import flash.net.URLLoader;
        import flash.events.MouseEvent;
        import flash.net.URLRequest;
        import flash.display.Bitmap;
        public class ImageLoader extends EventDispatcher {
            public var imgloader:Loader;
            public var imgMc:MovieClip;
            public var imgObject:Object;
            public var loaded:Number;
            public function ImageLoader():void {
    // better add you movieclip to the stage if you want to view anything added to it.
                imgMc = new MovieClip();
                imgObject = new Object();
                imgloader = new Loader();
            public function loadImage(filepath:String):void {
                imgloader.contentLoaderInfo.addEventListener(Event.COMPLETE,onImgLoad);
                imgloader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,onImgLoadPr ogress);
                imgloader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR,onImageLoadF ailed);
                imgloader.load(new URLRequest(filepath));
            private function onImgLoad(Evt:Event):void {
                var image:Bitmap = Bitmap(Evt.target.content);
                try {
                    imgMc.removeChildAt(0);
                } catch (error:Error) {
                imgMc.addChild(image);
                try {
                    if (imgObject.URL != undefined) {
                        imgMc.buttonMode = true;
                        imgMc.removeEventListener(MouseEvent.CLICK, onImageClicked);
                        imgMc.addEventListener(MouseEvent.CLICK, onImageClicked);
                } catch (err:Error) {
                dispatchEvent(new CustomEvent("CustomEvent.ON_IMGE_LOAD"));
            private function onImageClicked(evt:MouseEvent):void {
                trace("Image Attrs:"+imgObject.URL +" Target "+imgObject.Target);
            private function onImgLoadProgress(Evt:ProgressEvent):void {
                if (Evt.bytesLoaded>0) {
                    loaded = Math.floor((Evt.bytesLoaded*100)/Evt.bytesTotal);
                    dispatchEvent(new CustomEvent("CustomEvent.ON_IMGE_LOAD_PROC",loaded));
            private function onImageLoadFailed(Evt:IOErrorEvent):void {
                trace("Image Loading Failed");
                dispatchEvent(new CustomEvent("CustomEvent.ON_IMGE_LOAD_FAIL"));
    Here I am loading some images using the above class in a for loop, like
                for (var i=0; i < 3; i++) {
                    var imgLoader:ImageLoader=new ImageLoader();
                    imgLoader.addEventListener("CustomEvent.ON_IMGE_LOAD",onImageLoad);
                    var target:MovieClip=videolist_mc["list" + mcCount + "_mc"];
                    target.list_mc.visible=false;
                    var imgObj:Object=new Object;
                    imgObj.FilePath=list[i].Thumbnail;
                    imgObj.Url=list[i].Url;
                    imgObj.Target=list[i].Target;
                    target.list_mc.urlObj=new Object  ;
                    target.list_mc.urlObj=imgObj;
                    imgLoader.loadImage(pass the image file's path/name);
                    target.list_mc.lable_txt.htmlText="<b>" + list[i].Label + "</b>";
                    target.list_mc.imgholder_mc.buttonMode=true;
                    target.list_mc.imgholder_mc.addEventListener(MouseEvent.CLICK,onItemPressed);
                    mcCount++;

  • Probleme changing the value of a variable in movieclip from my scene

    Hello,
    i have a probleme changing the value of a variable in movieclip from my scene. i explain: I have combobox on my scene containing categories, and in the scene i load an xml file containing links to php files that work with the combobox.
    Also on the scene i have a movieclip "filmstrip", inside this movieclip on the first frame i have a script loading the php file selected in the scene . i use a load() function with a variable "theUrl" inside like this : T.load(theUrl);.
    In my scene i want to change the value of "theUrl" inside the movieClip filmstrip. I tried filmstrip.theUrl = url; But it doesnt work
    the xml file
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <slideshow>
    <area title1="10 Last updated" link1="link1.php"/>
    <area title1="special" link1="link2.php"/>
    </slideshow>
    here is the code on my scene:
    var link1:Array = new Array();
    var LINK:String;
    var url:String;
    var whoOn:Number;
    whoOn=0;
    var x:XML = new XML();
    x.ignoreWhite = true;
    x.onLoad = function(success) {
    var photos:Array = this.firstChild.childNodes;
    for (i=0; i<photos.length; i++) {
    _root.link1.push(photos[i].attributes.link1);
    url=link1[whoOn];
    filmstrip.theUrl=url;//<<--HERE
    x.load("category.xml");
    var cbListener:Object = new Object();
    cbListener.change = function(event_obj:Object) {
    trace(select.selectedItem.label);
    if (select.selectedItem.label == "Last updated") {
    whoOn=0;
    } else if (select.selectedItem.label == "Special") {
    whoOn=1;
    url=link1[whoOn];
    filmstrip.theUrl=url; //<<-----HERE  
    select.addEventListener("change",cbListener);
    here is the code inside the movie clip "filmstrip"
    var T:XML = new XML();
    T.ignoreWhite = true;
    T.onLoad = function(xml) {
    etc etc etc }
    T.load(theUrl);    //<<---HERE it still undefined

    YESSSS . Thanks you very much Kglad it wotk i put all in a function inside the filmstrip function Tload(theUrl){etc ect}and in the root i call it like this filmstrip.Tload(theUrl);   and it works
    code in the root var link1:Array = new Array();
    var LINK:String;
    var url:String;
    var whoOn:Number;
    whoOn=0;
    var x:XML = new XML();
    x.ignoreWhite = true;
    x.onLoad = function(success) {
    var photos:Array = this.firstChild.childNodes;
    for (i=0; i<photos.length; i++) {
    _root.link1.push(photos[i].attributes.link1);
    url=link1[whoOn];
    theUrl=url;
    filmstrip.Tload(theUrl);//<<--HERE
    x.load("category.xml");
    var cbListener:Object = new Object();
    cbListener.change = function(event_obj:Object) {
    trace(select.selectedItem.label);
    if (select.selectedItem.label == "Last updated") {
    whoOn=0;
    } else if (select.selectedItem.label == "Special") {
    whoOn=1;
    url=link1[whoOn];
    theUrl=url;
    filmstrip.Tload(theUrl);//<<-----HERE
    select.addEventListener("change",cbListener);

  • Resizing/moving MovieClips to fit screen problem

    I'd like to make an Android and iOS app with Adobe AIR, but I found a problem I can't solve.
    The Flash document size of the app is 800px x 600px, and I'd like to resize MovieClips to fit Android's and iOS' screens, suporting the Retina display on iOS devices.
    I tried using StageDisplayState.FULL_SCREEN and StageScaleMode.SHOW_ALL, and this does seem to work with static MovieClips, so the snippet would look something like this:
    import flash.system.Capabilities;
    import flash.events.Event;
    import flash.display.StageScaleMode;
    import flash.display.StageDisplayState;
    stage.addEventListener(Event.ENTER_FRAME,process);
    var difN:Number = (((stage.stageHeight*stage.fullScreenWidth/stage.fullScreenHeight)-stage.stageWidth)/2);
    function process(e:Event):void {
              difN = (((stage.stageHeight*stage.fullScreenWidth/stage.fullScreenHeight)-stage.stageWidth)/2);
              stage.scaleMode = StageScaleMode.SHOW_ALL;
    stage.addEventListener(KeyboardEvent.KEY_UP,useFullScreen);
    function useFullScreen(e:KeyboardEvent):void {
              if (e.ctrlKey) {
                        switch (e.keyCode) {
                                  case Keyboard.M:
                                            stage.displayState = StageDisplayState.FULL_SCREEN;
                                  break;
    obj.x -= difN
    However, I'd like to use classic tweens in my application, and this won't work since most of the elements are moving.
    I'd like to rescale/move MovieClips so they don't look distorted and every moving item moves correctly, showing all the content and trying to not make any borders. I read this article but it seems like it doesn't support classic tweens: http://www.adobe.com/devnet/air/articles/multiple-screen-sizes.html.
    Thanks for the help.

    1. scaleMode only has an effect when you embed your swf in an html AND you publish for a percentage.
    2. you need to resize your displayobjects using code and/or in the ide.  if you open your document settings panel (modify>document) and change your stage size you are offered some scaling options.  see if any work for you.

  • Problem with NumericStepper and MovieClip's gotoAndStop

    I have a NumericStepper that increment/decrements the slides in a MovieClip called libMC:
    <mx:NumericStepper id="slide"
    change="{libMC.gotoAndStop(slide.value)}" value="1" minimum="1"
    maximum="{numberOfPages}" stepSize="1" />
    For some reason when I am on the last slide and try to go back to the
    second to last slide (either using the down arrow or entering the
    second to last page number in the textbox and hitting Enter on the
    keyboard), I still remain on the last slide. This problem ONLY occurs
    when going from the last slide back to the second to last slide. All
    other slide transitions work fine.
    Any ideas?

    use the trace() function to debug your code.

  • Export problems multiple movieclips to image sequence

    For our customer we made several flash animations. My output has to be image sequences for Cinemascope format. The export function in Flash for image sequences does not work! All my images are the same frame. This is frame 0 on the timeline. So the embedded movieclips wont playback.
    When exporting a Quicktime movie, some frames are skipped and missing in the output! So the export options in Flash are totally not working for my situation. We bought an application SWF to image but also here are some frames missing in the export. I can not relay on Flash and this application.
    The project is built like this: we made several movieclips and scaled them and put them in position. Then we made one new movieclip with all the earlier made movieclips inside. Then scaled the entire movieclip to the Cinemascope stage size.
    Are we using Flash in a wrong way here?
    Why does the exports functions don't work on my project? (built in movieclips won't play, quicktime mov skips images)
    How can i solve this problem?
    Thanks in advance,
    Greetings Henk

    Ok this is workaround but should in principle do what you want:
    //create an instance of library object
    var mylibrary = fl.getDocumentDOM().library;
    var doc = fl.getDocumentDOM();
    var tl = fl.getDocumentDOM().getTimeline();
    //get items in library in an Array
    itemArray = mylibrary.items;
    totalCount = itemArray.length;
    for(var i=0;i<totalCount;i++){
        myItem = itemArray[i];
        myItemType = myItem.itemType;
        myItemName = myItem.name;
        mylibrary.editItem(myItemName);
        fcNum = tl.layers[0].frameCount;
        for (f=0; f<fcNum;f++){
                tl.setSelectedFrames(f, f)
                framenum = f + 1;
                //select your destination, on MAC use something like file:///Macintosh HD/Users/username/Desktop/
                doc.exportPNG("file:///C|/test/"+myItemName+ "_" + framenum +".png", true, true);
    1: open the fla file you want to convert to a movie and create a backup
    2: Create a new Flash Javascript file and insert the code above, Make sure you have enough hard disk space in your destination folder
    3: Press the play button and Flash will automatically parse through all items frame by frame in your library and save the images as png
    4: Take a break as it might take a long time

  • Problem mit Movieclips in flash8

    Hallo zusammen
    Ich versuche gerade eine Webseite mit macromedia flash pro 8
    zu erstellen, habe jetzt jedoch ein Problem. Ich habe durch
    Movieclips eine Oberfläche erstellt, welche beim anklicken
    ablaufen. Das Problem ist jetzt, dass das Rechteck, in welchem der
    Inhalt erscheinen wird, z.t. von den anderen Menupunkten
    überlagert wird. Hier mal den Link zu meinem flah-film, zur
    besseren Verständlichkeit:
    http://reiser.ti-swiss.com/page.html
    Ich wäre sehr dankbar falls mir jemand helfen
    könnte.
    mit freundlichen Grüssen
    Florian Reiser

    Hallo Florian,
    die Seite lädt bei mir nicht, die SWF wird nicht
    gefunden.
    Frohe Weihnachten
    Christoph
    flurry99 schrieb:
    > Hallo zusammen
    >
    > Ich versuche gerade eine Webseite mit macromedia flash
    pro 8 zu erstellen,
    > habe jetzt jedoch ein Problem. Ich habe durch Movieclips
    eine Oberfl?che
    > erstellt, welche beim anklicken ablaufen. Das Problem
    ist jetzt, dass das
    > Rechteck, in welchem der Inhalt erscheinen wird, z.t.
    von den anderen
    > Menupunkten ?berlagert wird. Hier mal den Link zu meinem
    flah-film, zur
    > besseren Verst?ndlichkeit:
    >
    >
    http://reiser.ti-swiss.com/page.html
    >
    >
    >
    > Ich w?re sehr dankbar falls mir jemand helfen k?nnte.
    >
    >
    > mit freundlichen Gr?ssen
    > Florian Reiser
    >

Maybe you are looking for

  • How can I get my iCloud calendars to show up in Outlook for Mac

    I just bought a new Mac and downloaded MS Office 365 for Mac.  How can I import my icloud calendar into Outlook?  I can't find any concrete info anywhere online. Thanks!

  • 10g Client crash on Windows XP Pro 64bit

    Wenn connecting to an Oracle 9.2 Server, the Client crash with Coredump. ncluded to Dumps with deliverd Java 1.5.04 and new installed Java 1.5.0.13 # An unexpected error has been detected by HotSpot Virtual Machine: # EXCEPTION_ACCESS_VIOLATION (0xc0

  • Message in standby alert file

    I am recieving this error messgae in standby alert file. Any one have idea about this message ksvcreate: Process(m000) creation failed ksvcreate: Process(m000) creation failed ksvcreate: Process(m000) creation failed Thanks

  • Dynamic default date filter in Query Panel

    I have a report in which I want to always filter data up until the previous Saturday based on a certain date field. e.g. if date today is 2nd July then the report can have data up to 28th June only and nothing after that. Is there a way I can set som

  • SAP PS & Primavera difference

    Hi Everyone, How can I differentiate SAP PS from PrimaVera in terms of scheduling or three constraints? Want to know what are the things that are possible in PrimaVera but cannot be efficiently done in SAP PS? Reference docs will be appreciated. PL h