Flash movies in image-control

When I load different flash movies in the same image-control
(e.g. via a button-click), the browser-cursor starts switching from
a busy-cursor (the little round clock-cursor) to an arrow (or
hand)-cursor intermittingly, without stopping.
When I load the same movie over the existing one in the
image-control this does not happen.
Seems like I have to unload the old movie first? I don't know
how to do that.
Any suggestions are welcome.
Thanx in advance.
Rui Rosado

Hi,
Take a look at this
http://swforum.sun.com/jive/thread.jspa?forumID=123&threadID=62416
MJ

Similar Messages

  • Is there a better way to position a flash movie than ap div?

    I'm creating a new website(not yet active) and have a great flash movie for the home page.  I've place it in an ap div and of course it moves to a different position in different browsers. Is there any way I can get it to display correctly, or is there a better way to position the movie? Thanks.

    Of course. The following code is for the home page: 
    "http://www.w3.org/TR/html4/loose.dtd">
    #page-background
    #container
    /* this image stays in internal style sheet*/
    #mainImage{
        background-image: url(images/mainImageBkgrnd.jpg);
        background-position: center top;
        background-repeat: repeat-y;
        width: 875px;
        height: 625px;
        margin: 0 auto;
        padding-left: 0px;
        padding-right: 0px;
        margin-top: 0px;
        position: relative;
    #footer{
        position: absolute;
        top: 700px;
        left: 10px;
    #serviceImage{
        position: absolute;
        top:300px;
        left: 35px;
        z-index: 0;
    #orderImage{
        position: absolute;
        top: 300px;
        right: 20px;
    #flashMovie {
        background-image: url(images/flashPix.png);
        background-position: center top;
        background-repeat: no-repeat;
        width: 700px;
        height: 300px;
        margin: 0 auto;
    .flashText p{
        width: 250px;
        padding-top: 75px;
        font-family: "Arial Narrow";
        font-size: 180%;
        line-height: 1.5em;
        color: #666;
    #vertStripe {
        position: absolute;
        top: 325px;
        left:435px;
    #serviceHeader {
        position: absolute;
        z-index : 50;
    #apDiv1 {
        position:absolute;
        left:607px;
        top:169px;
        width:700px;
        height:298px;
        z-index:2;
    html {overflow-y:hidden;}
    body {overflow-y:auto;}
    #page-background
    #content
    </style>
    <![endif]-->
    <!IE7 and lower stylesheet>
    <!>If this page is not displaying correctly, please update your browser by downloading Internet Explorer 8.<link rel="stylesheet" type="text/css" href="ie7-and-down <link rel="stylesheet" type="text/css" href="ie7-and-down.css" />  <![endif]>
    body
    font-size: 70%;
    text-align: center;
    <!begin flash Movie> 
        <!>>
          <!<![endif]>
            Content on this page requires a newer version of Adobe Flash Player.
    !http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif|height=33|alt=Ge t Adobe Flash player|width=112|src=http://www.adobe.com/images/shared/download_buttons/get_flash_player .gif!</p>
          </div>
          <!>>
        </object>
        <!<![endif]>
      </object>
    </div>
    <!end flash Movie>
    !images/waves2.png|height=100%|alt=Waves|width=100%|src=images/waves2.png!
    !images/banner_nws.gif|height=120|alt=Northwind Safety Corp.|width=875|src=images/banner_nws.gif!
    <!main Navigation menu>
    [About Us | about_us.html]
    [Services | serv_fa.html]
    [Training | train_cpr.html]
    [Products | products.html]
    First Aid
    [AEDs | aed_philips.html]
    <!end main Navigation menu>
    !images/serviceComp.png|height=250|alt=Van Serviceman|width=400|src=images/serviceComp.png!<!end serviceHeader>
    </div><!end serviceImage>
    !images/vertStripe.png|height=150|width=5|src=images/vertStripe.png!
    <!end vertical stripe>
    !images/orderComp.png|height=250|alt=Order Taker|width=380|src=images/orderComp.png!
    <!end orderImage>
    </div><!end mainImage>
    h1. Contact Us
    h1. Careers
    h3. Northwind Safety Corporation
    8425 Rausch Drive
                       Plain City, Ohio 43064
                    phone: 614-873-1000
                    fax: 614-873-1002
    [ [email protected] | mailto:[email protected]]
    <!end footer div>
    </div><!end container div>
    </div><!end body div>
    swfobject.registerObject("FlashID");
    <!end body>
    </html> 
      Thanks  

  • Flex and a flash movie clip

    Hi All,
    I'm looking for some information on how to take an embedded
    flash movie clip and control it through Flex. I want to be able to
    manually move through the movie clip, select frames to display etc.
    Any information pointing me in the right direction would be
    greatly appreciated.
    Thanks in advance

    For Flash SWF's:
    Inside your componet/app def:
    private var movie_clip:MovieClip;
    private var myLoader:SWFLoader = new SWFLoader();
    onInit() {
    myLoader.addEventListener(Event.INIT,loadHandler);
    myLoader.trustContent = true;
    myLoader.load("../assets/my.swf");
    this.addChildAt(myLoader,0);
    private function loadHandler(e:Event):void{
    movie_clip= e.target.content;
    movie_clip.gotoAndPlay(2);
    movie_clip.some_custom_as3_method();
    For Flex SWF's here is an example:
    import mx.events.FlexEvent;
    import mx.managers.SystemManager;
    import mx.core.Application;
    // * gets rid of type checking so we can leave strict enabled
    [Bindable]public var _appLoaded:*;
    private function
    onCurrentApplicationComplete(oEvent:Event):void
    _appLoaded = Application(oEvent.target.application);
    private function onCompleteAppLoader(oEvent:Event):void
    var smAppLoaded:SystemManager =
    SystemManager(oEvent.target.content); //get a ref to the loaded app
    //listen for the application.complete event
    smAppLoaded.addEventListener(FlexEvent.APPLICATION_COMPLETE,
    onCurrentApplicationComplete);
    // call a custom public method in your application mxml file:
    public function setPlaylist(id:int):void {
    if(_appLoaded) {
    _appLoaded.change_playlist(id);
    ]]>
    </mx:Script>
    <!-- <mx:SWFLoader id="player" x="0" y="0" source="
    http://...Player.swf"
    complete="onCompleteAppLoader(event);" trustContent="true"/>
    --> <mx:SWFLoader id="player" x="0" y="0"
    source="@Embed('../assets/Player.swf')"
    complete="onCompleteAppLoader(event);" trustContent="true"/>

  • Loading flash movie manually

    Hello
    ISorry to say this but I am a newbie in Flash.
    I have made a flash movie with playback control.
    I hosted it on my website but the problem is whenever someone
    visit the website it loads automatically even if you don't press
    play.
    I was just wondering how i can make the video starts loading
    only after somebody press play. It is eating my bandwidth at the
    moment everytime somebody visits my website because it loads
    automatically even if you don't press play.
    Do I have to edit the fla or flv? and how?
    Thank you for your help!

    craete two different swf one with play back control and other
    with all main content. And just load playpack swf first and write a
    code on play button to load content swf like
    play.onPress=function(){
    loadMovie("content.swf","_root");
    }

  • Flash Movie - Controlling the Movie

    I'm currently working with a flash file that has 24,000
    frames. I have been able to successfully use the Call Sprite
    commands to start and play the movie and stop the movie, but only
    from frames 1-16,000. But for some reason the movie will not play
    beyond frame 16,001. It will go to any frame using the Call Sprite
    commands after 16,000 and display that frame but the movie will not
    play. The movie is a flash 6 swf. published from Flash 8
    professional. It was originally a video converted to flash format.
    This works or any frame number between 1 and 16,000:
    CallSprite(@"chair",#gotoframe,9325)
    CallSprite(@"chair", #play)
    But the movie image stops at frame 16,001 and the sound
    continues. If I tell it to go to frame 16,100 (or any frame higher)
    It will go to that frame, display that frame (image) but will not
    play the movie/sound.
    The flash assest properties are set as Linked,preload, image,
    sound, and I've tryed every possible option.

    I would not be surprised if this was a limitation of the
    Flash sprite,
    since it only officially supports Flash 6 or earlier. I
    recall some sort
    of frame limit in older versions of Flash.
    Did you try 'not linked', so it's actually imported? Not that
    that would
    help necessarily, but maybe.
    Also maybe try the Flash ActiveX control and see if that
    works better
    for you? Though it has it's own issues and requires different
    scripting...
    Erik
    la4chuck wrote:
    > Apparently, what ever codec was used when the video was
    converted will not
    > allow me to break up the flash movie into segments in
    Flash professional.
    >
    > Is there some limit to how many frames wil play in
    authorware?
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - Authorware
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    samples, tips, products, faqs, and links!
    *Search the A'ware newsgroup archives*
    http://groups.google.com/group/macromedia.authorware
    *The Blankenship Caveat: Note that direct linking to http
    content
    through any Authorware icon will likely fail if a proxy
    server is present!*

  • How do i make an image pause in a flash movie clip

    Please can someone help me. I am trying to find out how to pause or stop an image in a basic flash movie clip,  after it has entered from one side and before it exits the other side.
    I have been trying to work it out myself for three days but no joy. I am practicing  for a test with a training agency which gave me a disk to use but nowhere in it does it say how this is done. I am also having a lot of difficulty making stop start buttons work with this movie clip. I am using a trial cs5.5 version of Flash which expires in 7 days so i need to know this soon. I am up to speed on most of the features, its just this one thing that has me stumped. A lot of the tutorials or examples  i have found on the net are very long winded and hard to follow exactly. Could someone let me know, step by step the sequence i should follow after i have created an object  and made it go from one side of the stage to the other.

    Hi
    Thank you for getting back to me. Yes i am using a timeline tween. I have an image on my stage which moves in from one side and out the other side. I am trying to stop or pause the image. The effect i will be asked to reproduce in my exam will be something very much like the banner on the website http://www,iactweb.com. If you go to this website you will see images arrive on the banner and pause before exiting the other side. I am fairly up to speed on all the aspects of getting this effect but i have forgotten what i learned during the course on how stop or pause the images. I am using the trial cs5.5 version of flash . Thanks again for getting back to me.

  • An image in a flash movie

    I want to modify an image in flash without make again the
    animation. Is it possible.
    This is my situation: I download a template. But i want to
    odify, in a flash mvoie, an image.When i try to click on modify in
    PhotoED a message apear and it says : " Image not fond in
    (directory).
    Pls answer fast because I need it soon.

    Hi
    Thank you for getting back to me. Yes i am using a timeline tween. I have an image on my stage which moves in from one side and out the other side. I am trying to stop or pause the image. The effect i will be asked to reproduce in my exam will be something very much like the banner on the website http://www,iactweb.com. If you go to this website you will see images arrive on the banner and pause before exiting the other side. I am fairly up to speed on all the aspects of getting this effect but i have forgotten what i learned during the course on how stop or pause the images. I am using the trial cs5.5 version of flash . Thanks again for getting back to me.

  • Controlling flash movie from another

    hello
    i hope someone can help me.
    i have 2 flash movies in a page with a CMS and an iframe.
    so quite a complicated structure...
    QUESTION1:
    is it possible to control one of them from the other one?
    e.g. telling movie B to go to a label from a button in movie
    A?
    QUESTION 2
    is it possible to controll either a target movie is already
    loaded in the page or not?
    suppose i need to check from movie A is movie B is already
    loaded in the page
    , load it in case it is not loaded, then tell ti to go to a
    certain label?
    any help would be greatly appreciated.

    Will require some fancy javascript gyrations. Check out
    fscommand:
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_15692

  • Overlib images dissapear under Flash movie

    Hi all,
    Total noob with flash.
    I have some thumbnail images on my page, when you mouse over
    the images an overlib pops up with the full image. Not far above
    the thubmnails is a flash header, when the overlib images pop up
    part of them is going underneath the flash movie.
    Any ideas on how I can prevent this?
    I have tried replacing the flash movie with an image of the
    same size and it all works fine then so I know its not a layout
    issue.
    Thanks a lot for any help with this.

    BlueSolar,
    > I have some thumbnail images on my page, when you mouse
    > over the images an overlib pops up with the full image.
    Not far
    > above the thubmnails is a flash header, when the overlib
    images
    > pop up part of them is going underneath the flash movie.
    The reason this happens is because Flash is an example of
    so-called
    Active Content. Flash movies aren't actually *in* the HTML
    page in which
    they're embedded, they just look that way. The <object>
    or <embed> tags in
    the HTML tell the browser to launch an instance of the Flash
    Player at
    thus-and-such dimensions in this area of the document, and
    the Flash Player
    and browser work together to give the illusion that the SWF
    is a part of the
    page.
    > Any ideas on how I can prevent this?
    The only way to affect this issue involves an often buggy
    feature called
    WMODE.
    http://www.quip.net/blog/2006/flash/how-to-position-flash-beneath-other-content
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Spry navigation bar covers flash movie beneath it but not the jpg image, why?

    i have a spry navigation bar with a flash movie underneath,
    and when i hover over the navbar and the submenu pops down it
    covers the flash movie, but it doesn't cover the .jpg image that is
    next to the flash movie. how can i fix this? thanks.

    thanks for the reply Murray, a responder from the flash forum
    gave me the following answer and it worked perfect.>>
    The <object> and/or <embed> HTML elements that
    reference your Flash content accept a number of optional
    parameters. For the <object> element, these parameters are
    supplied via nested <param> elements. Simply add the
    following new <param>:
    <param name="wmode" value="opaque">
    The <embed> parameters are supplied via attributes. For
    the <embed> element, add the following new attribute:
    wmode="opaque"
    That’s it. Your Flash content is now stackable via
    z-index; for example, you may wrap your
    <object>/<embed> pair in a <div> and set the
    <div>’s z-index as you please.
    <div style="position: absolute; z-index=1;">
    <object attributes >
    <embed attributes />
    </object>
    </div>
    If you’re using Dreamweaver, just press the Parameters
    button in the Insert > Media > Flash dialog or in the
    Property inspector when selecting existing Flash content. Type
    “wmode” (without quotes) in the name/parameter column
    and “opaque” (without quotes) in the value column. That
    will handle the above HTML for you, even with the new JavaScript
    embedding available since the 8.0.2 update.

  • Image control mouse move event updates

    I would like to drag the ROI around in the Image control (holding down the left mouse button) and continually read out the ROI coordinates. I can't find a way to do this: the mouse move event does not seem to fire if I hold the left mouse button down. I assumed that I would have
    1. Mouse down when I click and hold.
    2. Mouse move when I move the ROI around.
    3. Mouse up when I release the left mouse button.
    This does not seem to be the case.
    I've done a simple workaround which is
    1. Use the key up event to check that the space bar has been pressed.
    2. Use this to toggle a "lock" boolean which locks the target to the mouse coordinates.
    3. Use the mouse move event to return the Image Control Mouse Coordinates property.
    4. Unlcok the target from the mouse coordinates by pressing the space bar again.
    This kind of works, but it is much less intuitive than the standard windows "click and drag".
    Any comments appreciated.
    Thanks.
    PS The Image Control is excellent, it has saved me lots of development time. Also, the ROI tools are hugely useful.

    If you filter the mouse down event (MOUSE DOWN?) then the coordinated are always returned on mouse move event weather the mouse is down or not.  I did get the coordinates when the left button was down anyway it was just when the right button was down which the move event was not handled (due to the popup menu consuming the event first?)  I thing there is a good way to do this with dynamic event registration, and NI has a similar example of drag and drop of controls, but I am not at my LV machine to look for it right now.  If I am wrong I am sorry it is early and my coffee is not brewed yet.
    Paul
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

  • Flash movie controlling Captivate navigation in an Aggregator project

    Hi everyone,
    I have a Flash movie which shows a Continue button after an interaction is completed by the user. This functionality prevents the user from clicking through the interaction slides so there is no captivate playbar or nav available. This Continue button works fine in advancing the Captivate movie that contains the Flash movie while published as an individual captivate file. However, when I take that published captivate movie and load it into an aggregator project, the communication of the cpCmndGotoSlide variable does not function properly. I'm using the following code in the Flash movie:
    // captivate access...
        var myRoot:MovieClip = MovieClip(root);
        var cptxMovie:MovieClip = MovieClip(myRoot.parent.root);
        var slide:String = cptxMovie.cpInfoCurrentSlide;   // get current slide for workaround below
    // Continue button handler...
    // cptxMovie.cpCmndNext = 1;  // wouldn't work at all
    var theNextSlide:Number = Number(slide) + 1;       // workaround for cpCmndNext not working
    cptxMovie.cpCmndGotoSlide = theNextSlide;
    Is this because I'm calling the root, and the root is the outermost parent (the aggregator movie) and I need to communicate with the immediate parent of the flash movie (the submodule captivate)?
    How can I access the intermediate captivate while it is in aggregator?
    This is an AS3 flash and captivate and I'm using Captivate 5.
    Thanks in advance!
    Brian

    Hi Tristan,
    Thanks for the reply and the great code!
    I tried it out and got the dynamic text field to display that it had found the main timeline, however, it still would not advance properly. Maybe I'm not doing something right with it. Here's how I had it:
    // captivate access...
    var cptxMovie:MovieClip = getParentWithProperty("cpCmndGotoSlide", this);
    var slide:String = cptxMovie.cpInfoCurrentSlide;
    function getParentWithProperty(propertyName:String, startFrom:DisplayObjectContainer):MovieClip {
              if (startFrom.hasOwnProperty(propertyName)) {
                        trace("Found the Captivate Main Timeline");
                        checkCode.text = "Found the Captivate Main Timeline";
                        return startFrom as MovieClip;
              else if (startFrom == stage) {
                        trace("Could not find the Captivate Main Timeline");
                        checkCode.text = "Could not find the Captivate Main Timeline";
                        return null;
              else {
                        return getParentWithProperty(propertyName, startFrom.parent);
    // advance button handler...
    function advance(e:Event):void {
              for (var i:uint=0; i < orangeCircleArray.length; i++) {
                        orangeCircleArray[j].removeEventListener(MouseEvent.ROLL_OVER, onRollover);
                        orangeCircleArray[j].removeEventListener(MouseEvent.ROLL_OUT, onRollout);
              var slideNum:Number = Number(slide);
              var theNextSlide:Number = slideNum + 1;
              cptxMovie.cpCmndGotoSlide = theNextSlide;
              btnContinue.removeEventListner(MouseEvent.CLICK, advance);
    Thanks! Brian

  • Controling Flash movies from another movie

    I have a site that has multiple flash movies in it. One on
    the top level within a tablecell, the other loads into a central
    iframe. I want the movie in the table cell to play when the movie
    in the iframe hits a certain point, but I can't figure out the
    targetting. Is it even possible to use the gotoandplay() function
    to target a movie that is not within the curent movie? If so what
    would my targeting path look like?
    Thanks.

    sagew wrote:
    > How do you get a movie (embedded I guess) from the
    library of one Flash file
    > into another Flash file? I'm working from a template
    file and I want to use
    > something from the original template file to replace one
    I messed up.
    Open two files, go to library CTRL L and you can view in the
    same time library of
    all the open files at the moment. Than you can copy paste
    simply the content.
    Regards
    Urami
    Happy New Year guys - all the best there is in the 2006 :)
    <urami>
    http://www.Flashfugitive.com
    </urami>
    <web junk free>
    http://www.firefox.com
    </web junk free>

  • Controlling where flash movie loads on a web  browser

    I want to have the index page for my site open with a flash
    movie on top of the rest of the content of the page at a set pixel
    distance from the top of the page and centered horizontally in
    relation to the browser. I have been able to make this work with an
    absolute location using CSS elements in Dreamweaver and the
    equivalent of what used to be layers. It all works as long as the
    position of the layer is absolute, and your monitor settings are
    pretty standard. Otherwise the flash plays on the left:
    http://www.iconoclastic.net/metaphordogs/index.html
    When I try to make it a relative location, it moves to the
    top of the browser. When I try to make it relative to a table, it
    displaces the table content rather than playing over it.
    Any assistance would be appreciated
    Alec

    1. System Preferences >  Flash Player > Advanced >  Delete  All
         Press the "Delete All" button.
         Install Adobe Flash Player.
        http://get.adobe.com/flashplayer/
       Download it first.
       The next step is important.
       Click Safari in the menubar and select “Quit Safari”.
        Follow the prompts and install it.
        Restart computer. Relaunch Safari.
    2.  Allow  Plug-ins
        Safari > Preferences > Security
        Internet Plug-ins >  "Allow  plug-ins"
        Enable it.
    3. Safari > Preferences > Privacy
        Press the button “ Remove All Website Data”.

  • Flash movies stop after a random amount of time,

    The problem that I am having is that flash movie files (Every website) play for a moment or two and then stop with the little “loading” symbol turning endlessly in the center of the screen. Flash movies used to work with no problem but over the span of the last few months it went from not working well to not working at all. In a perhaps related problem sometimes downloads will stop after a certain length of time and also seem to “hang” at a random spot. If I pause the reload and then restart it the program or whatever will usually finish downloading. This doesn’t happen often but does happen. The flash movie thing, though, happens every time – no matter what browser I have tried. (Firefox, IE, IE with no add-ons, and Chrome anyway.)
    I have tried solutions that I have found all across the internet, including the Adobe and Microsoft forums, to no avail. I have unloaded flash with the Adobe uninstaller and reloaded flash. I have tried various flash releases – with and without a firewall on. I have made sure that I am using the 32 bit version of IE and even tried running everything in “administrator mode.” I’ve upgraded every driver that I can upgrade. I’ve used a registry checker as a last resort. I even used the Dell partition to return my computer back to the condition that it was in when I bought it and that didn’t change anything either.
    Everything I have tried has made zero difference. In the hopes that someone will have another idea for me to try I am putting all the stats for my computer that I can think of below.
    Qwest internet running at 20mbps
    Flash 10.1.102.64
    Shockwave 11.5.9.615
    Microsoft Security Essentials
    Tried both IE 9, IE with no add-ons, and now have IE 8 from when I restored from the partition image
    OS Name             Microsoft Windows 7 Home Premium
    Version                6.1.7600 Build 7600
    System Manufacturer    Dell Inc.
    System Model   Inspiron 560
    System Type      x64-based PC
    Processor            Intel(R) Core(TM)2 Duo CPU     E7500  @ 2.93GHz, 2936 Mhz, 2 Core(s), 2 Logical Processor(s)
    Graphics - Intel(R) G45/G43 Express Chipset
    Sound - Realtek High Definition Audio
    BIOS Version/Date          Dell Inc. A00, 10/6/2009
    SMBIOS Version               2.6
    Hardware Abstraction Layer        Version = "6.1.7600.16385"
    Installed Physical Memory (RAM)             8.00 GB
    Total Physical Memory  7.96 GB
    Available Physical Memory          6.94 GB
    Total Virtual Memory     15.9 GB
    Available Virtual Memory             14.4 GB
    Page File Space 7.96 GB

    Thank you for answering eidnolb -
    Answering your questions...
    Have you had a Virus and if so what Anti-Virus program removed it?
    No virus that I am aware of
    Since you have a Dell, McAfee came pre-installed? Did you remove it prior to Installing MSE? If so, did you use the McAfee Removal Tool or just remove it from Control Panel/Programs & Features?
    My computer did come  with McAfee which isn't on my computer now. I used a program called "Decrapifier" that removes unwanted preloaded software that comes with PCs.
    Is McAfee still Installed?
    No
    Do you have any Anti-Virus/Spyware programs other than MSE?
    No - I have just used MSE until now. I thought about using AVAST but was't sure what running 2 virus/spyware programs would be like.
    Since MSE doesn't have a Firewall, do you use any Firewall other than Windows? If so, which?
    I use Windows Firewall. I have tried both adding Youtube as an allowed program and switching the firewall off enirely with no luck.
    Do you use a Router? Is it Wireless?
    I do have a Lynksys router that is a little older but I've also tried hooking the modem directly to the computer.
    Is Qwest wireless?
    I use the wired ports and not the wireless for my connection.
    Other than IE8, what browsers and versions are Installed now?
    I only have IE8 now. I never reinstalled the other browsers after using the Dell partition. I prefer Firefox so having to use IE is frustrating.
    I've also used "RegestryBooster" to make sure that my regestry looked okay.
    Thanks again for taking the time to answer. I think you are right about me doing too much - LOL

Maybe you are looking for