Play swf's in a row and loop

Okay, I had some diffuculties with some swf's which were created in Indesign; but thanks to this forum (kglad) I got it worked out. It seemed that I needed to work in AS3... I want to play four swf's in a loop ín AS3, I can handle this with AS2 but I have to work in AS3.. I cannot make it work! In AS2 I just loaded a swf in a frame and 20 seconds later (timeline) the other swf  got loaded in a new keyframe etc. I'm NOT good in AS3 so if there's anyone who can help me out with a simple solution... Thank you.

Nope.  There is the Play Next Episode button when it stops at the end of one, but that's as good as it gets.
 

Similar Messages

  • Cannot Play MP4 Files on Front Row and Quicktime

    Hi guys,
    I cannot play any MP4 files on QT or FR. They play fine on VLC which is strange as I never had a problem before. I have the latest version of QT and didnt repair permissions on upgrade!

    Panther: http://www.apple.com/support/downloads/quicktime731forpanther.html
    Tiger: http://www.apple.com/support/downloads/quicktime731fortiger.html
    Leopard: http://www.apple.com/support/downloads/quicktime731forleopard.html
    It was on the thread I posted below

  • How to play two presentations from the DMP one after another and looping

    Can anyone help me on this.I want to play two presenations one after another and looping from the DMP.

    Semuhtu,
    The easiest solution for looping two or more DMD presentations
    is to create a nested playlist within DMD.  You simply
    create a master presentation and add a playlist to this
    presentation.  Add the desired presentations to this playlist
    and then schedule or send the Action to the DMP(s) to play
    the Master Presentation.  The 2 or more child presentations will
    play and loop until you stop it manually.
    Summary of Tasks
    * Using DMD create Presentations (2 or more) that you would like
      to display on the DMP-Display(s).
    * After the presentations are created, you will need to find out
      what the URL addresses are for each presentation. Using the
      "Actions" drop down on the DMM-DMP Manager screen, you select
      a DMP and send the Presentation to the DMP.  Once the DMP displays
      the presentation, access the DMP-DM Web admin page and copy the URL
      address in the "Startup URLs-->Browser" field.   Repeat this process
      for each DMD presentation that you want to loop.
      For example:
      http://dmm.company.com:8080/xTAS-core/appgen/clad/clad_95_.htm
      http://dmm.company.com:8080/xTAS-core/appgen/clad/clad_96_.htm
      and so on...
    * Another parameter or variable that you will need to find out is
      the duration of your DMD presentation(s).  Some Presentations may be
      a slideshow of images and some may contain videos.  Your will need to
      play each presentation on the DMP to determine the duration length of
      each presentation that you will add to the looped playlist. 
    * Create a Master presentation using DMD. In this presentation, you will
      create add a "Playlist" to the presentation by selecting the Playlist
      button-drop down.  Select "All Media Types" and a Playlist object will
      be added to the Master presentation.
      - Double-click on the object to add content
      - Select "Add URL" button in the Playlist Content window.
      - Fill in the required fields (URL Title & Link) in the "Add URL"
        window.  Repeat the process for each presentation that you want
        to add.
      - Set the Duration for each item in the Playlist. Select the Item
        in the list and then DOUBLE-CLICK on the "Planned Duration"
        field and edit the time to desired duration.  Repeat process for
        each item.
      - Save Master Presentation
    * Schedule or use the  "Actions" drop down on the DMM-DMP Manager screen
      send the Master Presentation to the DMP(s).  The Playlist will play and
      Loop after the last item in the Master Playlist.
    If this answers your question, Please take time to mark this
    discussion answered & rate the response.
    Thank You!
    T.

  • How do I create a 1d array that takes a single calculation and insert the result into the first row and then the next calculation the next time the loop passes that point and puts the results in thsecond row and so on until the loop is exited.

    The attached file is work inprogress, with some dummy data sp that I can test it out without having to connect to equipment.
    The second tab is the one that I am having the problem with. the output array from the replace element appears to be starting at the index position of 1 rather than 0 but that is ok it is still show that the new data is placed in incrementing element locations. However the main array that I am trying to build that is suppose to take each new calculation and place it in the next index(row) does not ap
    pear to be working or at least I am not getting any indication on the inidcator.
    Basically what I am attempting to do is is gather some pulses from adevice for a minute, place the results for a calculation, so that it displays then do the same again the next minute, but put these result in the next row and so on until the specifiied time has expired and the loop exits. I need to have all results displayed and keep building the array(display until, the end of the test)Eventually I will have to include a min max section that displays the min and max values calculated, but that should be easy with the min max function.Actually I thought this should have been easy but, I gues I can not see the forest through the trees. Can any one help to slear this up for me.
    Attachments:
    regulation_tester_7_loops.vi ‏244 KB

    I didn't really have time to dig in and understand your program in depth,
    but I have a few tips for you that might things a bit easier:
    - You use local variables excessively which really complicates things. Try
    not to use them and it will make your life easier.
    - If you flowchart the design (very similar to a dataflow diagram, keep in
    mind!) you want to gather data, calculate a value from that data, store the
    calculation in an array, and loop while the time is in a certain range. So
    theres really not much need for a sequence as long as you get rid of the
    local variables (sequences also complicate things)
    - You loop again if timepassed+1 is still less than some constant. Rather
    than messing with locals it seems so much easier to use a shiftregister (if
    absolutely necessary) or in this case base it upon the number of iterations
    of the loop. In this case it looks like "time passed" is the same thing as
    the number of loop iterations, but I didn't check closely. There's an i
    terminal in your whileloop to read for the number of iterations.
    - After having simplified your design by eliminating unnecessary sequence
    and local variables, you should be able to draw out the labview diagram.
    Don't try to use the "insert into array" vis since theres no need. Each
    iteration of your loop calculates a number which goes into the next position
    of the array right? Pass your result outside the loop, and enable indexing
    on the terminal so Labview automatically generates the array for you. If
    your calculation is a function of previous data, then use a shift register
    to keep previous values around.
    I wish you luck. Post again if you have any questions. Without a more
    detailed understanding of your task at hand it's kind of hard to post actual
    code suggestions for you.
    -joey
    "nelsons" wrote in message
    news:[email protected]...
    > how do I create a 1d array that takes a single calculation and insert
    > the result into the first row and then the next calculation the next
    > time the loop passes that point and puts the results in thsecond row
    > and so on until the loop is exited.
    >
    > The attached file is work inprogress, with some dummy data sp that I
    > can test it out without having to connect to equipment.
    > The second tab is the one that I am having the problem with. the
    > output array from the replace element appears to be starting at the
    > index position of 1 rather than 0 but that is ok it is still show that
    > the new data is placed in incrementing element locations. However the
    > main array that I am trying to build that is suppose to take each new
    > calculation and place it in the next index(row) does not appear to be
    > working or at least I am not getting any indication on the inidcator.
    >
    > Basically what I am attempting to do is is gather some pulses from
    > adevice for a minute, place the results for a calculation, so that it
    > displays then do the same again the next minute, but put these result
    > in the next row and so on until the specifiied time has expired and
    > the loop exits. I need to have all results displayed and keep building
    > the array(display until, the end of the test)Eventually I will have to
    > include a min max section that displays the min and max values
    > calculated, but that should be easy with the min max function.Actually
    > I thought this should have been easy but, I gues I can not see the
    > forest through the trees. Can any one help to slear this up for me.

  • OSX 10.5.2 and AR8.1.2 playing swf files

    After applying the latest Apple updates to OSX 10.5.2 I find that I can no longer play
    swf files from within a PDF file. I'm using AR8.1.2 with FP9,0,115,0 . Consider
    the example:
    http://www.amrita-cfd.org/4adobe/swf/swf.pdf
    It contains an /Annot "Click to activate SWF!" that is supposed
    to play the swf, but when I click it: a progress bar "buffering" appears
    in the bottom right corner of the screen and then hangs. The swf file
    is included as an attachment, shock-tube.swf, which can be
    opened in an external viewer and so I don't think the swf file
    is the problem.
    I have the same problem with the PDF available at:
    http://acrobat.timhuff.net/?p=92
    where the swf is embedded using Acrobat,
    rather than my homebrew approach.
    I would very grateful if anyone could shed light
    on this problem.
    Thanks,
    James Quirk

    James,
    I am seeing what you are seeing even on pdfs with swfs that I created
    that previously worked. I guess we will need to file a bug report.
    Mike

  • Flash CS6 cant open play SWF files without importing and destroying them, how can I get around this?

    Flash CS6 can't open play SWF files without importing and destroying them, how can I get around this?
    I'm just trying to preview an swf file in flash like I have with all previous versions.

    What if my SWF loads external content from an online server?
    Not only does the current flash player prohibit such activity, it doesn't even pop open an error anymore saying there was an error connecting to an online source.
    Normally, I would simply drag the SWF into Flash and all connections would go through.  I could see traces, errors, and experience no issues.
    Now I can't even do that.  So what then?  You have crippled a fundamental use of the program, but THANK GOD we have that deco brush that nobody asked for.
    And for the record, the nature of my work benefits from not necessarily allowing the Flash Player to connect to online content.  The error it pops up?  That's simply another method of error checking that I require.  Updating the Flash Player options is not an option.
    Why would you even remove this key feature from Flash anyways?  It's been there for years ... has the ratio of people importing SWFs (a rather useless gesture in an increasing OOP world) really outweighed the people using Flash as a testing environment that much?

  • I need to take elements from within 2 nested for loops and place them in an array at the specific row and column that I need.

    I have tried intializing an array and replacing elements by specifying a particular row, and column, but in the end I get an array with only one element replaced, and I suspect that it is because as the for loops are running through their iterations each time the array is re-initializing. I have a simple vi that I will post below, it is not the exact situation that I have but is a good place for me to get some understanding. I have the row and column indexes being driven by the inner and outer loop iterations, which gives me the pattern I need. I am using the inner iterations as array elements. How do I set this up so that it works and d
    oes keep re-initializing my array.
    Attachments:
    Untitled.vi ‏26 KB

    I have fixed a number of things in your vi.
    You were right in thinking that the array was continuously re-initialized. To avoid this, use a shift register (right-click the loop border), which will pass the updated array into the next iteration.
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    your_vi.vi.zip ‏13 KB

  • HT5271 Downloaded latest Apple updates that informed me old versions of Adobe Flash Player were disabled and advised me to go to Adobe and down load latest version of Flash Player. Did that, but Flash Player won't play swf files, which it did before.

    Downloaded latest Safari update that informed me that older versions of Adobe Flash Player were being disabled and then advised me to go to Adobe and down load latest version of Flash Player. Did that, but Flash Player won't play swf files, which it did before. (Instead of opening, it comes up as a page of code).

    Hi..
    Quit Safari.
    Open System Preferences > Flash Player then select the Advanced tab.
    Click:  Delete All
    Now select the Storage tab.
    Click Delete All
    Relaunch Safari to test.
    edited by:  cs

  • Having a qt movie auto play and loop without controls

    I have a qt movie that I want to place on a page in iweb - but i want it to autoplay and loop and do not want the controls to show at the bottom of the movie- can this be done?
    thanks

    Yes, and there's a couple different ways to do this. One way is to use a specially created QuickTime movie that will play and loop a remote movie. I've gone through some steps of how to do this here.
    (turn your volume down, loud movie at the following link)
    http://web.mac.com/makentosh/iWeb/zample/crab.html
    Another way is to edit the .js file for that page so that you set the
    autoplay to true,
    controller to false,
    loop to true,
    and adjust the size of the movie to be 16 pixels shorter to account for the missing controller. I used part of THAT technique on some movies here.
    http://web.mac.com/makentosh/iWeb/zample/abutton.html
    Here are some more specific instructions. These are for audio, but with a few changes, could be for your video as well.
    http://www.rowan-cottage.co.uk/Site/Autoplay%20Music.html

  • Is it possible to let Spry Tab Panels play and loop automatically?

    Hello everyone,
    I have created several Spry tab panels and they appeared to
    be working perfectly as I need them to.
    However, I was wondering if there is a way to have the tab
    panels play automatically and loop like a slide show on page load.
    So when a user vists the page, the panels will play or
    transition like a slide show.
    Is this at all possible?
    Thanks everyone - Patrick

    A few missing pieces here...
    1. Are you using Kerio on your machine, or that is what your hosting provider is running? (I will assume the former).
    2. Does your hosting provider accept mail to AnyUser@yourdomain, or only to legitimat users at your site? If the former, it is no wonder you are getting hammered by spam. You will take anything. Your provider might be able to filter against an RBL list, but that probably only takes out about 70% of the spam on a good day.
    Anti-spam filtering takes place on the SMTP side of the server. Once the mail is delivered to your SP, you've got the mail and have to deal with it on the client side. Ugly at best. Fetchmail will not help you here.
    OS X mail does have a pretty good selection of anti-spam tools. Most notably, SpamAssassin and greylisting. But both (greylisting in particular) require your mail server be the only mail server for your domain for best results.
    Mail does not require particularly high availability. If your mail server is missing for a while, the sending site will try again later. Mail is very resilient to temporary failures. You could set up your SP as a backup MX host if you want, but I would submit that would increase your spam load when your server is down or missing (mail relay from a secondary host, short circuits the greylisting feature).
    I do not know Kerio myself, but for mail alone, the built in mail services in OS X (current version) are pretty good. But you are shooting yourself in the foot by having your SP collecting mail for you, especially if they will accept any user.

  • Quiting front row and continue to play music

    It used to be that front row would continue to play music after you quit it from the same playlist but this isn't the case anymore. If you are using FR to listen to music and quit the music stops playing. Anyone know how to have the music continue to play?

    Well as much as I like the look of the new Front Row, I don't like the same thing, That it stops playing music upon closing. The older one (Tiger) was so much better Animation and usefulness wise. It also supported Air-Tunes (my best friend). So I thought to myself, "is there any way i can switch back to Front Row from Tiger (A.K.A. Front Row w/ Air Tunes)". I went on a hunt on the internet and I came across this web site
    http://www.edalytical.com/articles/2008/01/16/front-row-and-airtunes-back-to-tig er-for-me
    When typing the code into the terminal field, you can just copy and past for safety if need be.
    Just rememeber to exorcize caution whenever using terminal, for it can really do damage.
    And one more thing, I've realized that when going to the video/movies section it likes to freeze (though it always has for me for some reason when I was running Tiger). DVD Function works perfectly.
    Hope that helps!

  • Why do audio tracks for embedded .swfs for Slide 14, 25 and 36 audio tracks auto play on Slide 1?

    I have created a Captivate course with no audio. 
    Slide 14 in the course has an inserted .swf animation WITH audio (a demo with ‘Kate’s voice’).
    Slide 25 in the course has an inserted .swf animation WITH audio.
    Slide 36 in the course has an inserted .swf animation WITH audio.
    These animations are ‘hidden’ in the slide 14, 25, 36 Properties, and are told to ‘show’ when user clicks a button on the slide.
    When published to my hard drive, the course runs as it should, and the animations play correctly when user clicks the play button on slides 14, 25 and 36.
    When published course is uploaded to a file server, the course runs as it should, and the animations play correctly when user clicks the play button on slides 14, 25 and 36.
    When published course is uploaded to a web server, all 3 .swf animations show up for a split second, (plus 2 other small animated images) one after another, and then disappear, and then the audio of the 1st starts playing, 5 seconds later the audio of the 2nd starts playing, and 5 seconds later the audio of the 3rd starts playing.
    The odd thing about this is that once the course is in the Internet Brower cache and the course is refreshed, the audio of the 3 embedded .swfs does not start playing on slide one, and the course works as it should.
    Can you please tell me what to do to make the 3 .SWFs NOT execute when slide one of the course is opened? 

    Did you ever get an answer to this question? Since you have partial success, perhaps you can share some info. My main .swf is loaded on a web server and links to other URLs works well but links to other .swf that are loaded in the same directory as the main .swf do not activate at all..no sound, no visual. Did you load your sub-swf files in the same directory? did you use a special naming scheme? did you load the .html file for the sub-swf?

  • Problem in playing swf files in IE 6.0

    I am facing a big problem in playing swf files in IE 6.0 with
    the tags object and embed.
    In my current project their is option to upload the swf files
    to oracle db and when ever wants to view that swf file, reading
    that swf from db and displaying in browser, In win 2000 swf file is
    displaying very fine, but not in win 2003 and win xp. and that swf
    file, entire application is using asp.net, C#
    Can anyone tell the problem behind this situation.
    I feel great for any solution.
    Thanks in advance

    > Yes, I put it in the (2) posts above...
    No.. there is no URL in the two posts above .. if there was I
    would not have
    asked for it again
    But now you have, I can have a look (no promises though :))
    BTW: These are your posts in their entirety:
    >>
    Hi,
    I'm brand new to programing, so my knowledge is limited. But
    I'm having a
    similar problem where my swf appears but sits on frame 1. I
    have a
    preloader
    set up on fr2. But it just gets stuck there (fr1). I know the
    plugin is
    installed but not sure why it won't display my movie. I know
    it's
    happeneing
    only with IE and XP and XPpro. Any ideas?
    >>
    >>
    Sorry, I since realized that it's not getting stuck on fr1.
    It's just
    displaying the bg color in the html page while it's waiting
    for the swf to
    load. But the swf never loads. It just sits there. I've tried
    using
    different embed tags, etc. But no-go.
    Here's the first example-
    <body>
    <table width="100%" height="100%" border="0"
    cellpadding="0"
    cellspacing="0">
    <tr>
    <td><div align="center">
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
    rsion=6,0,29,0" width="800" height="600">
    <param name="movie" value="NINA.swf">
    <param name="quality" value="high">
    <embed src="NINA.swf" quality="high"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="800"
    height="600"></embed>
    </object>
    </div></td>
    </tr>
    </table>
    </body>
    >>
    >>
    Here's another example which is part of the most current
    detection scripts
    from
    Adobe....
    <script language="JavaScript" type="text/javascript">
    <!--
    var hasRightVersion = DetectFlashVer(requiredMajorVersion,
    requiredMinorVersion, requiredRevision);
    if(hasRightVersion) { // if we've detected an acceptable
    version
    var oeTags = '<object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="100%" height="100%"'
    +
    'codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">
    + '<param name="movie" value="NINA.swf" /><param
    name="loop"
    value="false"
    /><param name="menu" value="false" /><param
    name="quality" value="high"
    /><param name="scale" value="noscale" /><param
    name="bgcolor"
    value="#46442c"
    />'
    + '<embed src="NINA.swf" loop="false" menu="false"
    quality="high"
    scale="noscale" bgcolor="#46442c" '
    + 'width="100%" height="100%" name="NINA" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="
    http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags); // embed the flash movie
    } else { // flash is too old or we can't detect the plugin
    var alternateContent = 'Alternate HTML content should be
    placed here.'
    + 'This content requires the Macromedia Flash Player.'
    + '<a href=http://www.macromedia.com/go/getflash/>Get
    Flash</a>';
    document.write(alternateContent); // insert non-flash
    content
    // -->
    </script>
    >>
    > One is
    http://eliasencpa.com
    > The other is...
    http://www.eliasencpa.com/TEST_091606.html
    >
    > thanks a lot.

  • Problems copying a row and pasting it in the following row

    Hi all,
    In a Numbers table I have 400 rows with data separated each one by a blank row
    row 2 has data
    row 3 is blank
    row 4 has data
    row 5 is blank ... and so on.
    I have prepared a small script to copy row 2 into row 3, row 4 into row 5,... as follows:
    set dName to "Conta"
    set sName to "Movis"
    set tName to "Pruebas"
    set row_ini to 2
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    set selection range to row row_ini
    repeat
    if value of first cell of selection range = 0 then
    exit repeat
    else
    tell application "System Events"
    keystroke "c" using {command down}
    keystroke return
    keystroke "v" using {command down}
    end tell
    tell first cell of the selection range to set rowNum to address of its row
    set selection range to row (rowNum + 1)
    end if
    end repeat
    end tell
    The idea is:
    1 select the initial row (in this case row 2)
    2 check if the value of first cell of the row is cero, then exit the repeat loop
    3 else
    4 copy the entire row, move down a row and paste.
    5 move to the next row
    6 repeat
    The first time I run the script it worked until the row 124 and stopped. I tried again changing the inicial row and it worked only for 7 rows. The third time it erased all the cells with data. I've tried closing both the table and the script but the problems persists: in this case it stops after replacing 5 rows.
    Where am I wrong?
    Thank you in advance
    Ratz

    KOENIG Yvan wrote:
    There is not such a book.
    There is just on short chapter dedicated to iWork in :
    Hanaan Rosenthal & Hamish Sanderson, Learn AppleScript: The Comprehensive
    Guide to Scripting and Automation on Mac OS X, Third Edition, Apress (2010);
    ISBN 978-1-4302-2361-0
    You may find useful infos in my idisk :
    <http://public.me.com/koenigyvan>
    Scan the contents of the folder :
    For_iWork:iWork '09:for_Numbers09.
    I guess the problem is for using the tell application block without telling the process Numbers.
    No, I had to change a lot of things.
    the name of the document was wrong (at least on my machine on which I always use the name extension.
    set selection range … was wrong.
    Yvan KOENIG (VALLAURIS, France) dimanche 20 février 2011 23:02:35
    Thank you.
    Visiting your idisk I realise how much work I must do to become a decent scripter!
    The book you mention looks interesting. I'm going to include it in my bookcase (and read it, of course).
    Ratz

  • How to get number of rows and columns in a two dimensional array ?

    Hello,
    What would be the simplest way to get number of rows and columns in a two dimensional array represented as integers ?
    I'm looking for another solution as For...Each loop in case of large arrays.
    Regards,
    Petri

    Hi Petri,
    See a attached txt file for obtaining two arrays with upper and lower index values
    Regards
    Ray
    Regards
    Ray Farmer
    Attachments:
    Get2DArrayIndex.txt ‏2 KB

Maybe you are looking for

  • Power Mac G5 DP 1.8, won't to enter in Open Firmware, and no OF comm. exec.

    Hi Guys, It seems to strange but my Power Mac G5 DP 1.8 Ghz, cannot enter in the OF and no commands are accepted by the OF (like boot from cd pressing C, or reset Pram, or everything else) I'm not sure but probably after the last upgrade ( november 2

  • Bluetooth has disappeared since 10.5.7

    Bluetooth has totally disappeared from my iMac since installing 10.5.7. No bluetooth preference, "No Information Found" in Apple Profiler. When trying to get the Bluetooth icon into the menu bar via the Network preference, it flashes but won't stay.

  • R3trans import

    Does a R3trans import of a table perform and append or an insert? While I was performing a R3trans import of a table, my database ran out of space and the process stopped. I need to restart the process, but I do not want duplicate records in the tabl

  • Got replacement iPhone but can't sync old backup

    I had my iPhone replaced today by a Genius at the Apple Store (one of the volume buttons was malfunctioning.) He reactivated the phone at the store for me. However, when I got home and plugged it into iTunes, it didn't give me the option of restoring

  • Pb installing lightroom 5

    hellos i have just recently subscribed to Photoshop/Lightroom CC and was running a Mac os 1.6.8. Lightroom would not install so i had to upgrade to a newer version of OS, and upgraded to Maverick. Still, i cannot install light room. This time the Ado