I'm Still Looping - End the looping!!

I wrote an earlier post, received a good suggestion, and
found that it isn't working for me. I created a slideshow that has
the following characteristics:
1. An embedded .swf title graphic that appears on the first
and last slide. I want it to play once than hold, but it just keeps
looping.
2. Each slide has text and a picture that fades in over 120
frames. I'm using Timeline effects to fade-in the picture. I'd like
the picture to fade in, then remain visible. What happens is that
the pictures just keep looping.
I've unchecked loop in Dreamweaver properties when I inserted
the flash graphic. I've also tried to "uncheck" all the loop
options.
A kind responder suggested that I use action script to insert
stop() in a keyframe at the end of the graphic's frames, but this
isn't working - the Timeline effects don't play at all with this
command insterted.
Help.

Post the FLV and it will be easier to answer. At the end of
each movie clip you just need to add a keyframe and put in a
stop();
Make sure the stop is on a keyframe at the end of the of the
movieclip, don't just click on the last frame and add the
actionscript. It has to be keyframed or it will use that stop(); on
every frevious frame.
If that isn't working then something else is causing the
error.

Similar Messages

  • I keep getting the error message "apple application support is required to run itunes. Please uninstall itunes and then install it again." I've done this twice and still keep getting the same message...I'm at wits end Please HELP!!!

    I keep getting the error message "apple application support is required to run itunes. Please uninstall itunes and then install it again." I've done this twice and still keep getting the same message...I'm at wits end Please HELP!!!

    Let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, does iTunes launch properly now?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • Do you have any ideas why Motion 5 would run slow on a computer? I have an Imac with 8Gigs of ram, and plenty of hard drive space, but it still gives me the beach ball when I add a few lights and effects. I'm at the end of my rope.

    Do you have any ideas why Motion 5 would run slow on a computer? I have an Imac with 8Gigs of ram, and plenty of hard drive space, but it still gives me the beach ball when I add a few lights and effects. I'm at the end of my rope.

    You probably don't really need 1080 at 60 for your finished projects but since you're just starting out with Motion, you need to lower your expectations. A long way. 1080 is about 2 million pixels per frame, DV is only about 400,000. That's not just five times as many pixels for the Mac to track; everything in video is exponential.
    Explore the training tutorials available by Mark Spencer. You will get an idea of how his super powerful machine reacts with the software.
    Adding a light roughly doubles the processing time over flat scenes. Two lights increases processing again. Reflections require processing the lights and then calculating the reflections so add another quarter of the time required for flat scenes. Add camera movement, motion blur, and depth of field and you need exponentially more processing time for every frame. The preload of renders into RAM is one of the cooler features of Motion, as comapred to After Effects, but that takes tons of time, to.
    Try working in ye olde DV resolution for a few days. Get to know the software's limitations and what gets imposed by your Macintosh. Step up to 720p/30 and see how things slow down.

  • How do you create a rolling title that ends on a still image of the title?

    How do you create a rolling title that ends on a still image of the title?

    Here's the help page that describes using the tab stops:
    http://help.adobe.com/en_US/PremierePro/4.0/WS35CA53B6-EAFF-499a-A600-DCD85686354Da.html
    Let me know if that's clear as mud and I'll try to shed more light on the subject.
    One thing that isn't specified/clarified/whatever (and was the biggest stumbling block for me when I first tried this in PPro 1.5) is that the ruler for the tab stops is zeroed at the edge of the text box, and tab stops ONLY work in text boxes (or "text area," however you please). At any rate, you have to position that ruler so that the zero point is at the left edge of your text box, and then the rest of the instructions in the help doc will make sense.
    Also, it's useful to show the tab markers while you work. Just go "Title > View > Tab Markers" and you're good.
    Hope this helps!
    As a side, I have found that this one feature is really the best and most useful part of the PPro titler (and also, just about the only function in the titler that WON'T cause your system to crash on a regular basis).

  • How do I get values into a vi from a subvi while the subvi is still running within the vi?

    Hello
    This is my problem. I have a subvi that runs an experiment. At different point in the experiment different instruments are on or off and I have a boolean array display this info. It is updated at various points of the experiment via a local variable. That works fine. Here is the problem though. I run that subvi from a main vi program (that runs it several times for several experiment cycles). I would like to pass the status of that array onto the mainvi to display there too. The problem is that the array in the main vi is not updated until the subvi is done running and thus displays only the array status at end of experiment (instead of changing
    as the status changes within the subvi). I tried using a global variable to write to it in the subvi every time there is an update, and read from it in the mainvi, but that doesn't work, it still displays just the status at the end of the subvi execution. Does anyone know how to make this work, or if there is a workaround this? Thanks.

    If you have LabVIEW 6i, you can update indicators of a calling VI from
    a SubVI, while the subVI is running.
    In your case you need
    1) an indicator on the main VI panel to display the boolean array
    2) to pass a reference to that indicator to the subvi when you call it
    3) to use this reference in the subVI, connect a property node to it and
    write the values to be displayed to the 'value' property of this node
    If you don't have version 6, you can write the values to be displayed to
    a global and display this global in the main VI from within a while loop
    which must run in the main VI in parallel to the running subVI.
    It's more complicated, since you need a mechanism to gracefully shut
    down the while loop after subVI finishes. You could do this with
    another global control boolean which is not displayed but just connected
    to the repeat terminal of the while loop. Don't forget to put a 'Wait' of,
    say, 50...100 msec in that while loop.
    -Franz
    zkajan schrieb:
    > Hello
    > This is my problem. I have a subvi that runs an experiment. At
    > different point in the experiment different instruments are on or off
    > and I have a boolean array display this info. It is updated at
    > various points of the experiment via a local variable. That works
    > fine. Here is the problem though. I run that subvi from a main vi
    > program (that runs it several times for several experiment cycles). I
    > would like to pass the status of that array onto the mainvi to display
    > there too. The problem is that the array in the main vi is not
    > updated until the subvi is done running and thus displays only the
    > array status at end of experiment (instead of changing as the status
    > changes within the subvi). I tried using a global variable to write
    > to it in the subvi every time there is an update, and read from it in
    > the mainvi, but that doesn't work, it still displays just the status
    > at the end of the subvi execution. Does anyone know how to make this
    > work, or if there is a workaround this? Thanks.
    Franz Josef Ahlers
    Section Semiconductor Devices
    Physikalisch-Technische Bundesanstalt
    Bundesallee 100
    D-38116 Braunschweig
    phone: (+49) 531 592 2410
    fax: (+49) 531 592 2405

  • Question about the sensor... just got my 4s yesterday after screwing up my 3 with the laterd version update.  EVery call I have been on has either changed to speaker, called another number or ended the call or activated facetime, which I have turned off.

    Question about the sensor... just got my 4s yesterday after screwing up my 3 with the laterd version update. EVery call I have been on has either changed to speaker, called another number or ended the call or activated facetime, which I have turned off. never had this trouble with my 3...I don't even want to talk to anyone on this phone! Is the sensor bad? That is what the AT&t rep suggested.

    Restore as new... if the problem still continues then there is a hardware issue.
    If it stops after a restore as new, then the issue is with the backup the device is currently setup with.

  • HT1209 I've successfully imported the videos I've shot with my iphone5 into iphoto on my MacBookPro but they're only showing up as still shots, ie the imported videos don't play! Itunes no longer opens automatically when syncing!

    I've successfully imported the videos I've shot with my iphone5 into iphoto on my MacBookPro but they're only showing up as still shots, ie the imported videos don't play! Itunes no longer opens automatically when syncing, and when I open itunes it shows that there are zero "home movies" in there, meaning that it never grabbed the videos from my phone either. What to do? Thanks!

    tl:dr?
    Really?
    There was a short version expressly for people who weren't bothered to read a myriad of text.
    Meh, not that it matters anymore. I ended up redownloading 70-odd albums, so I have the bulk of my music back. And I still have no idea what iTunes did with my files, but I'll make sure it never does it again.
    I would thank you for the help but you were utterly useless. Oh well, carry on.

  • Even I cant believe this is happening again! i'm once again asking for help with my account.  Since im very sick I ask that u look into my account and read the hell verizon has put me through and assist ending the hell once and for all even if that means

    Even I cant believe this is happening again! i'm once again asking for help with my account.  Since im very sick I ask that u look into my account and read the hell verizon has put me through and assist ending the hell once and for all even if that means ending my contract, i just want the hell over. I went into my bill tonight and the mess was still there I paid $110. that's what I owe

    I guess I spoke too soon!  I really can't believe this nightmare is not over yet! My account is still wrong.  The credit that I was due totaled $63.00  I am looking at a message on my phone saying that $21.01 was credited which makes my balance $219.72.  I received a text the following day that says, I processed your credit of $30.00 and your new balance $216.73 how is that possible?  None of the late fees were credited and the amount due for my monthly charges are wrong.  Before any changes were made to my data plan back in Nov. My monthly charges were $140.00, I needed my hot spot back and i was told that the hot spot will increase my bill $10 for each phone that totals $20.  The customer rep that change my data plan at that time also gave me a credit of $20 to compensate for the increase until I had time to talk with customer service about the mix-up with my Hot spot. I originally had the hot spot, but the rep that change my plan almost a year prior told me nothing was changing except I was getting more for less money.  I explained to that rep that I need my hot spot 4 times a year...and I don't want my plan to have any changes. To verify what I'm telling u check my account and see that I called from Albany New York wanting to know where my hot spot was and I was told I didn't have the hot spot on my account since the last data change!  I lost money once again due to the verizon rep's.  so my current data plan the rep promised would increase $20 which makes my monthly charges that were $140 prior to the change $160 after the hot spot was returned to my account.  Then I was given a $12 credit per month for 12 months because of so many mistakes made to my account so with that $12 credit my monthly charges should $148 + surcharges + taxes and that's not what I see. I do know this much right now my account is in such a shambles I can hardly see the light at the end if there is an end!  I need real help!
    >> Personal information removed by Verizon Moderator to comply with the Verizon Wireless Terms of Service <<

  • I have iMovie 09. I just erased my external hard drive, but it is still formatted for the mac. However, iMovie will not recognize the hard drive. It shows the only hard drive available is the computers. How do I get the external hard drive to show up?

    I have iMovie 09. I just erased my external hard drive, but it is still formatted for the mac. However, iMovie will not recognize the hard drive. It shows the only hard drive available is the computers. How do I get the external hard drive to show up?

    In Finder's Menu, select Go menu>Go to Folder, and go to "/volumes". (no quotes)
    Volumes is where an alias to your hard drive ("/" at boot) is placed at startup, and where all the "mount points" for auxiliary drives are created for you to access them. This folder is normally hidden from view.
    Drives with an extra 1 on the end have a side-effect of mounting a drive with the same name as the system already think exists. Try trashing the duplicates with a 1 or 2 if there are no real files in them, and reboot.
    If it does contain data...
    http://support.apple.com/kb/TS2474

  • My iPhone 4s won't display my contact names in my message, although the number is still linked to the correct contact in my phone book

    My iPhone 4s won't display my contact names in my message, although the number is still linked to the correct contact in my phone book.
    Recently updated with iOS 5.1.1, I've read elsewhere about a possible bug associated with the update?

    Hello, Sue.Darby. 
    Thank you for visiting Apple Support Communities. 
    I would recommend having your friend check to see if call and message blocking is enabled on their end.  Here is some information regarding that feature. 
    iOS 7: Understanding call and message blocking
    http://support.apple.com/kb/ht5845
    -Jason H. 

  • When I close firefox I attempt to reopen, it wont load...looking in task manager shows it as a process, i need to, end the process to restart firefox, Why?

    when I start firefox, then close it..and attempt to restart it, I get a message that its loaded....but its not...but I see it as a process in task manager.I end the process..then start firefox again...........constant problem...............windows 7 system...8gb ram g4bit

    Hi Andis.
    First of all, this is completely normal behavior, although it's a bit irritating, I know. What happens is that when you close Firefox, despite the window disappearing right there and then, Firefox keeps running for a little bit until the whole closing procedure is completed. This can take a fraction of a second on fast computers, or can take a few seconds on slow computers or when Firefox is storing a large session (if you save your tabs). All you have to do is wait a bit until Firefox closes, and then open it again.
    To see if it's still running, you can press CTRL+SHIFT+ESC and then, under the Processes tab, you can see if firefox.exe is still there. If it's taking an unusual amount of time to close (which happens very rarely, and only if the browser freezes on exit), you can force the application to terminate from this application (task manager).
    Firefox 4.0 will reduce by 97% the time it takes firefox.exe to close, so this problem will be basically erased for Firefox's next version.
    Until then, I can recommend you this extension, which helps you restart your browser more easily and without bothering about closing times:
    https://addons.mozilla.org/en-US/firefox/addon/3559/
    Hopefully this will help.

  • Firefox does not close in the normal fashion. I have to go to Task Manager and end the process

    I am operating on a Windows XP OS. I have been a FireFox user for several years. I am using version 3.6.13 Several months ago I noticed that if I closed FireFox I could not open it again. I got a message box stating that FireFox was still running. And, I fact, Task Manager did show that it was still active. I had to end the process there, before I could open FireFox again. It will remain active in the background and the CPU will be maxed out, thus creating problems for other programs. How can I remedy this problem? btw, I have trouble opening IE now.

    https://support.mozilla.com/en-US/kb/Firefox%20hangs#w_hang-at-exit

  • I'm getting a still image in the beginning of my movie when I export. Why??

    I don't understand why FCP is doing this. I export a bunch of movies (using batch export) and some of them export right while others get messed up. There would be a still image in the beginning or sometimes the end instead of seeing the actual movie. I can still hear the sound so it's only a problem with the video.
    Because I use QT compression to export I don't have the option to re-compress all frames like in the "export using QT movie" command... right?
    Help me out here. It's driving me crazy having to export everything a few times until final cut gets it right... Thanks.
    Message was edited by: CBeditor

    NLEdit,
    Here's what I have (to the best of my knowledge):
    Original source: mini DV tape, it's all HD
    I use capture now to digitize the whole tape. My easy setup is: HDV- 1080i60 FiriWire Basic. After I have digitized all of it - it's an .mov file with the settings I just posted above. So when final cut is done digitizing I already have all the files in my browser window and I just drag them and drop them in the timeline and I choose to match the timeline settings if they're different. So my timeline settings look like this:
    Frame Size: 1440x1080
    Vid Rate: 29.97 fps
    Compressor: HDV 1080i60
    When I'm done editing, I use batch export to export a bunch of sequences (they all have the same settings I just mentioned above) and I chose:
    Format: QuickTime (custom), Compression Type H.264, frame rate: 29.97 fps, key frames: every 24frames, compressor quality- high, encoding: best quality. Then for size I choose either 1280x720 HD or I use "custom" to make them half the size of that so that would be 640x360. My point is to end up with an .mov file which I can then encode into an flv or just burn it on a data cd.
    As for your question number 1: I'm not even sure what you mean by that.
    Does all that make any sense now?

  • G510 Application Not Responding. Do you want to end the process?

    I am extremely frustrated with my g510 laptop- so frustrated that I am about to go spend money on a new laptop when then one is only 10 months old.
    Computer boots fine. I start to use it. Doesn't matter what application I am running I get a message box titled Microsoft Windows: Application Not Responding...do you want to end the process.  Doesn't matter what I hit the computer will then not respond.  
    Frustrated with what was going I tried several things...eventually I gave up and just reset the laptop completely to factory and then downloaded the few programs I use and am STILL getting this message.  
    I run Mcaffe Internet Security and the "few programs I use" are Adobe CC for Photographers, Google Chrome and Yahoo Messenger.
    Anyone have any ideas or do I have a $700 boat anchor?
    Solved!
    Go to Solution.

    Hi Amykay74,
    Welcome to Lenovo Community!
    As per the query we understood that you are facing issues with application not responding in your Lenovo G510 laptop.
    As you have mentioned that you are using the MacAfee internet security, try to uninstall the MacAfee internet security and check for the issue.
    Hope this helps. Do post back if the issue persists!
    Best regards,       
    Ashwin. S
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • What if I end the CC subscription?

    I have to use my CS5 key to start a CC subscription, but will I still be able to use my CS5 if I end the CC subscription?

    Yes. There's no effect on your CS5 license if you stop using CC. CS5 is and always will be valid.

  • IE11 - Can only close IE window by ending the process

    Good Morning,
    We have just updated our company to IE11. For some users, intermittently they cant close the IE window from either File-Exit or by clicking on the Red X at the top right hand corner. The only way they can close the window is by ending the process.
    We have deleted the windows profiles to no avail.
    We are running Windows 7-64. Any assistance would be greatly appreciated.
    Thanks and regards.
    Bryan.

    Hello Bryan,
    Please try to reset the Internet Explorer and check if the issue still exists.
    http://windows.microsoft.com/en-us/internet-explorer/reset-ie-settings#ie=ie-11
    If the issue still exists, please refer to the following article to repair and reinstall the Internet Explorer 11.
    https://support.microsoft.com/en-us/kb/318378?wa=wsignin1.0
    Best regards,
    Fangzhou CHEN
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • Running custom page from Jdeveloper

    When I try to run my custom xml page from JDeveloper I get the following message: Error(13,8): class dekalb.oracle.apps.xxdk.ContEOImpl should be declared abstract; it does not define method setLastUpdateLogin(oracle.jbo.domain.Number) in class oracl

  • Change Pics in Report

    Hi! Is there any way to change pics itselfs or its 'source filename' depend on After parameter form? Thanx before Paul

  • Group by clause in toplink

    Hi everyone, toplink support group by clause. if, yes. how....

  • Google two-factor auth and iPhone apps? ...

    Who here has enabled Google two-factor authentication? Did it break anything on your phone? I tinkered with it yesterday, and then our family's shared Google calendar stopped working. My wife couldn't see new items I added (in either the iPhone calen

  • How to install Messenger Express Multiplexor (MEM)

    I have read through the docs, but am still unclear about how to install the Messenger Express Multiplexor. After installing the Messaging Server bits I ran the "configure" script and selected "Multiplexor". Was this the right choice? After that I use