How do I....  - Loading swfs for music festival - some repeat, some don't

I apologize for the lack of actionscripting knowledge, but
I'm in a rush to complete something that is beyond my skill and
hope that you Flash gurus out there can help me.
Here's the idea...
I'm creating a sort of movie slideshow to play at a music
festival which will include several swfs of varying lengths of
edited video clips embedded into Flash with text animation added
---> these I want to load into a main swf with scrolling text
along the bottom (which I've already created). They can play
sequentially if necessary and must repeat. In addition to this,
there will be trivia question swfs that need to also load into this
movie throughout the festival but they cannot repeat and it would
be nice if they could be randomly placed amongst the video swfs.
How do I make this happen and make sure that after each swf has
ended the next one loads?
Thanks for any help - I'm on a tight deadline!!

Swipe right to left on the music list.

Similar Messages

  • How do i load software for a new printer as i don't have a disk drive!, How do i load software for a new printer as i don't have a disk drive!

    Trying to help a friend who has a Mac Air, didn't think it would be as hard, but guess it's what you're used to.
    Have bought a new printer Epson SX235W, and trying to load the software and connect wireless, but the only instructions that come say to use with the Disc, but don't have a disc drive - can anyone help as to how I load and connect it please as I'm having no joy from the Epson site, despite I think loading some software - Thanks Steve

    Hello Fruhulda
    Clicking a Pages table don't give the same result than clicking somewhere in the table then pressing cmd + a.
    The first scheme selects the table (height square handles displayed)
    The second one select every cells (no handle displayed).
    If we try to fill cells with a color in case 1, only standard cells are filled.
    If we try to do the same in case 2, every cells (headers included) will receive the color.
    Yvan KOENIG (VALLAURIS, France) dimanche 12 février 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • How do I load windows for mac

    How do I load windows for mac I have DVD software

    You can install Windows on a Mac with Boot Camp or a virtual machine. If you need maximum performance, use Boot Camp.
    If you want to use Boot Camp, first check that the Windows version you want to install is compatible with your iMac > http://support.apple.com/kb/HT5634 Then, open Boot Camp Assistant, in /Applications/Utilities, and follow the steps to install Windows. Check > http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.8.pdf
    If you want to use the virtual machine, you have to install an application like Parallels, VMware Fusion or VirtualBox, create a virtual machine and install Windows there

  • How can I find ringtones for sale in iTunes? I don't see it as a category anywhere.

    how can I find ringtones for sale in iTunes? I don't see it as a category anywhere.

    Ferretbite wrote:
    You could also download the Ringtone Maker all for iPhone in the AppStore and create your own custom ringtones and message tones.
    Not needed.
    Easy enough to do in iTunes.
    Find the song you want and note the start/stop time you want the ring tone.
    Right click - get info, click the Options tab and set the start/stop times as above.
    Right click - Create AAC version. This creates a new file.
    Drag this new file from the iTunes window to the desktop.
    Delete the file from iTunes and also select Delete from hard drive.
    On the desktop, rename the file whateveryouwant.m4r (first part you can change to whatever you want & change the extension to .m4r).
    Drag the file back to the iTunes library at top left.
    Make sure iTunes prefs > General has Tones ticked.

  • I can find no CD slot. How do I load games or music CDs?

    Just bought a new MacBook Prow/retina display and in working with it this morning noticed that it had no slots for games or music CDs. How do I load content that I have on hand? Am I to believe that I can't load some of my favorite stuff on a brand new laptop computer? Please. Someone tell me I'm just overlooking it.

    No more optical drives, it's a exernal option now.
    A lot of software based on cd's is for PowerPC processors that the new Mac will not run anyway.
    You want software, you go to MacUpdate.com and download it, then a lot of it you will have to right or conrol key click on it to "Open" as Apple is trying to restrict outside sources of software.
    https://www.macupdate.com/
    You can install some software at AppStore (Apple menu) but a lot of it is hobbled due to Apple's restrictions, no trialware etc., etc.
    Better to download direct from the developer, but some are now only on AppStore and charging for their software and later you find out you don't like it.
    https://developer.apple.com/appstore/guidelines.html
    How to uninstall/install software on your Mac

  • HT1711 I have an itunes account with my own music (non purchased).  I have loaded the playlists to my iphone and ipod.  How can I load the same music on my wifes iphone and ipad

    How do I syn my own music (non purchased) from my itunes account to my wifes iphone and ipad

    Does your wife sync her phone with a different computer or iTunes.
    If so you need to copy that music to that iTunes
    If she syncs with the same iTunes as you do just select your music and sync as normal

  • How to center loaded swf & get screen coordinates of its component?

    I made an swf using Flash CS4, it has a movieclip named 'mc' & and a vertical bar centered horizontally. I then load it using swfloaded & put it inside a canvas & set it's windows & height to 100%.
    The codes:
    <mx:Canvas id="cv" verticalScrollPolicy="off" horizontalScrollPolicy="off" width="{screen.width}" height="{screen.height}">
      <mx:SWFLoader id="template" source="assets/sample.swf" width="100%" height="100%"  complete="dump(event);"/>
      <mx:HBox id="bb" />
    </mx:Canvas>
    <mx:Script>
    private function dump(event:Event): void {
         var panel:MovieClip = MovieClip(template.content);
         var pt:Point = panel.localToGlobal(new Point(panel.mc.x, panel.mc.y));
         bb.x = pt.x; bb.y = pt.y; bb.width=10; bb.height = 10;
         panel.x = (cv.width - panel.conentWidth) / 2;
         Alert.show(
              "scaleratio x,y = " + panel.scaleX + "," + panel.scaleY +"\n"
              + "panel x,y = " + panel.x + "," + panel.y + "\n"
              + "local x,y = " + panel.mc.x + "," + panel.mc.y + "\n"
              + "global x,y = " + pt.x + "," + pt.y + "\n"
    </mx:Script>
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    The dump result is:
    scaleratio x,y = 1,1
    panel x,y = 100,800
    local x,y = 775, 800
    gloval x,y = 875, 800
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Q1. I draw an bound box according to the content object of this swf & saw this bound box is indeed centered. However, the bar object is some offset left from the center of screen. Why it's not aligned center as I saw it in Flash CS4?
    Q2. I try to get the screen coordinates of component 'mc' by using localToGlobal to convert it to screen coordinates & draw a box to overlap their top-left point. However the topleft point of box is far left of mc's on screen. I think it's due to the swf is scaled, so I dump scaleX and scaleY of this swf but they are both 1? How can I get correct screen coordinates of mc?
    Thanks in advance!
    Scott

    Because of margins and padding, the Canvas probably won't be positioned at
    0,0, so setting its width to screen.width will make it hang over the right
    edge.  Use width="100%" instead.  Same for height.
    I believe there is a horizontalAlign property on the SWFLoader.

  • How to down load 30GB ipod music to my computer?

    My 30GB ipod battery only gives me 5 hrs. of play time. If I do the download to check the battery, I will loose the music that was downloaded into the ipod. To save the music, I want to down load the 2.5 GB of music to my computer. How does one do this?

    There is a manual method of accessing the iPod's hard drive and copying songs but not playlists back to iTunes on Windows posted in this thread: MacMuse - iPod to iTunes
    If you prefer something more automated then there are a number of third party utilities that you can use to retrieve the music files and playlists from your iPod, this is just a selection. Have a look at the web pages and documentation for these, they are generally quite straightforward.
    iPod Access Mac and Windows Versions
    YamiPod Mac and Windows Versions
    PodUtil Mac and Windows Versions
    iPodCopy Mac and Windows Versions
    PodPlayer Windows Only
    iGadget Windows Only

  • How does a loaded swf talk back to the main movie?

    Hi,
    I'm new to as3 and have troubles finding the right path for
    swfs to "talk" to one another.
    In my movie, I load an swf "news.swf" into a mc called
    container_mc.
    At one point I want to swap the "news.swf" to "ueberuns.swf"
    via button click in my main movie, but not directly: "news.swf" has
    a frame labeled "out", which builds down some elements over appr.
    20 frames. In the last frame of "news.swf", I want "news.swf" to
    either load the next "ueberuns.swf" into that same container_mc of
    my main movie or have my main movie find out that "news.swf" is
    through with it's last frame and then throw out "news.swf" and put
    "ueberuns.swf" in that container_mc.
    I already found out that I address "news.swf" by the
    following code:
    if (newsLaden.content != null) {
    newsLaden.content.gotoAndPlay("out");
    where newsLaden is the Loaders name. But how do I get
    "news.swf" to reply?
    Anyone can help? Thanks a lot!
    Cheers, Karl

    This is one of the biggest problems of AS3 as communication
    between swfs, levels, and nested MCs has taken a completely
    different path than the previous 9 versions of Flash. Both Erick's
    and TheWabbit's suggestions will work but I sort of follow Erick's
    approach as LocalConnection is the perfect fit for .swfs
    communicating in the same HTML page not for nested. The key is
    defining the timelines of MovieClips in each class when you want to
    tell them to do something.
    Try tera's example and see if that helps but if you
    understand Erick's approach keep going. I just wanted to add that
    you have to start thinking about defining the MCs you want to
    communicate with in each Object Class file such as:
    var _root:MovieClip = new MovieClip(parent);
    and then you can always sort of define who you want to talk
    to a bit easier.
    THIS REALLY REALLY SUCKS for those of us who have been with
    Flash since version 2 because they took away one of the best and
    easiest things to do (but I'm glad telltarget is gone!! lol). Now I
    fear people are going to start throwing everything back into one
    LARGE SWF again thereby undoing all the work we in the Flash
    community did in the first ten years to define 'best practices'
    and_levels definitely was one of them along with an 'actions'
    layer. I think Adobe's programmers who joined the Macromedia guys
    led the product somewhere it didn't necessarily need to go. The
    problem is many didn't know how to use the Flash Community's Best
    practices. They were new to Flash.

  • How to setup my airport for music streaming

    Hi all
    I would like to use my iPhone and or iPad to stream music from Pandora and Spotify to my 5.1 (Wired) Speakers.
    This question is similiar to this thread https://discussions.apple.com/thread/4153687 however i wanted some clarity and thought best to start a new discussion before pulling my hair out doing this the wrong way.
    I have an unused Airport Express basestation (A1408) My current home setup is as follows:
    Modem Router: (Netgear DGND3700) N600 Wireless ADSL2+ Dual band Gigabit
    Home Theatre Computer: Windows 7 (Cat6 LAN Ethernet connection) NO LAN port
    AV Reciever: (Onkyo TX-SR309)
    5.1 Speakers: Wired connection to AV Receiver (NOT Airplay capable)
    Laptop: Windows 7 (Cat6 LAN Ethernet connection)
    My question is how to setup the airport, i understand it can be used to enable airplay streaming of music over the existing WiFi network, as these music streaming apps download and play music concurrently i would not want to have to switch between to two seperate WiFi networks. Should i plug the airport into the HTPC? I would need to purchase a LAN Splitter as the only LAN socket is already taken up with my cat6 connection. OR would i plug it directly into the modem/router? This second option is prefereable.
    I have attached an image of my setup below. Any advice would be great, Regards Steve
    [URL=http://s1293.photobucket.com/user/steve7677/media/homesetup_zps63eaf61c.jpg.html][IMG]http://i1293.photobucket.com/albums/b599/steve7677/homesetup_zps63eaf61c.jpg[/IMG][/URL]

    Still slightly confused, with the link you provided i chose scenario 2. All the other secanrios instructed i connect the airport express to my home stereo or powered speakers. As i dont have an aiport express only an airport extreme there is no audio jack and cannot connect it to the stereo/speakers.
    option 2: Connecting to an existing Wi-Fi network as part of a roaming network
    Ensure that the AirPort base station Ethernet cables are connected as above
    I have done this and conected it via ethernet cat6 to the modem/router
    Launch AirPort Utility 6.1. The Assistant will automatically configure the Roaming network
    Im using windows 7 and cannot find this version of aiport utility, only 5.6.1 - The message comes up: Aiport utility was unable to find any airport wireless device. I am running this utility on my win7 HTPC (which is connected to my modem/router via cat6 LAN) The airport light is blinkng amber.
    would you reccommend a hard reset of the airport? or can you provide a link for AirPort Utility 6.1.?
    Regards

  • How to unload/load swf

    I have a Flash movie that automatically opens another Flash movie inside it. The main swf has a "Start" button at the bottom. When I click the Start button I want to unload the swf that loaded automatically (as a placeholder) and load a new Flash video swf. I'm doing this to create a placeholder for the video. I don't know what code I need to use on the button to unload the automatic swf and load the new swf video.

    if you don't need to stop any loaded streams (like sound/video), you can just reuse the same loader to load the next swf.  otherwise, apply unloadAndStop() to your loader before loading the next swf.

  • How much space is there for music?

    im thinking about getting an iphone but im concerned about how much music it holds. if its 8gb some of that space must be taken up by the phone/internet built in part of it, how much is left for the music/videos? help much appreciated

    Well if you want to know how much music an 8 GB can hold it's 1,750 songs, and for 16 GB it's 3,500. This is just the approximation, i'm sure you can hold more if all songs are small in size. It also depends what else you have that is taking space in the iphone. Say Apps, Photo's, anything that takes up memory would hold less of music.

  • How to decrease loading time for 0Mat_Plant

    Hi Experts,
    I am currently looking to decrease loading time of 0Mat_Plant. I have gone thru performance material available and checked following things listed below :
    Plz note following:
    1) Standard delta is avail but it has been enhanced and there are Z fields. So if i use delta, them I might be missing delta for Field.
    2)Can we switch OFF number range SID buffering to avoid memory allocation on daily basis ...somehow through ABAP program?
    3) BUffering can be switched OFF, but there is delta load also alonwith full load. So performance would decrease for delta records. But no of records for Full load is 188000 and for delta is just 1700 around. SO will this helps in decreasing overall time? Any idea?
    Load is taking around 90 minutes in my system (Full Load)..
    I m not clear abt data package size and if it will help me or not..
    What more can we do??
    Any help would be appreciated and points would be assigned......
    Thanks in advance
    Gaurav
    Message was edited by:
            Gaurav

    Hi Nagesh,
    Here are my replies;
    1) Loading time is only for 0mat_plant..
    2) R/3 job finishes quickly....no prob seems to be with this..
    3) I m not clear about "locked trfc..but there are no errors in trfc...and there doe snot seem to be IDOC clogging problem...
    4) Not sure what yu mean by trfc "released"....
    I checked R/3 JOb log and its pasted below ( though for other datasouce)....
    I want to know wht does it implies.....in general  i hve few questions listed below after the log..::
    BEGIN BW_BTE_CALL_BW204020_E 13.514
    END BW_BTE_CALL_BW204020_E 13.514
    BEGIN EXIT_SAPLRSAP_002 13.514
    Datasource:0MATERIAL_ATTR, In: 13.514 , Out: 13.514
    END EXIT_SAPLRSAP_002 13.514
    Asynchronous send of data package 1 in task 0002 (1 parallel tasks)
    IDOC: Info IDoc 2, IDoc No. 442405, Duration 00:00:00
    IDoc: Start = 26.06.2007 19:34:06, End = 26.06.2007 19:34:06
    tRFC: Data Package = 1, TID = 0A01A001012F4681A2A7362D, Duration = 00:0
    tRFC: Start = 26.06.2007 19:35:03, End = 26.06.2007 19:35:04
    BEGIN BW_BTE_CALL_BW204020_E 0
    END BW_BTE_CALL_BW204020_E 0
    BEGIN EXIT_SAPLRSAP_002 0
    Datasource:0MATERIAL_ATTR, In: 0 , Out: 0
    END EXIT_SAPLRSAP_002 0
    Asynchronous transmission of info IDoc 3 in task 0003 (0 parallel tasks
    IDOC: Info IDoc 3, IDoc No. 442406, Duration 00:00:00
    IDoc: Start = 26.06.2007 19:35:04, End = 26.06.2007 19:35:04
    Synchronized transmission of info IDoc 4 (0 parallel tasks)
    IDOC: Info IDoc 4, IDoc No. 442407, Duration 00:00:00
    IDoc: Start = 26.06.2007 19:35:04, End = 26.06.2007 19:35:04
    Job finished
    I want to confrm my understanding abt extraction process when infopackage gets triggerred...
    Infopackge gets triggered....->R/3 job gets created/triggered....-> Info iDoc regarding request sent to BW..-> Application document(??)) posted..(( posted to what???....  passed to Trfc??....and then to psa which is seen in monitor??))...
    Like wise after successfull passing of datapackage to BW ( not posting to pSA) , next datapackage is sent..... and so on...
    What is TRfc??  .as far I know its function modules created to pass data to bW thru RFC call...(??)...
    IF you can give me clear picture of whts happening behind the scenes, it would be great.. or helpful links would do....it would be help me to enjoy wht you ae saying and how to tune more...
    THanks for your patience and help...
    Already assigned points to you..
    PS: I hve turned OFF buffering for master data records greater than 100, 000 and saved approx 25% for each master data records....
    Regards
    Gaurav

  • How do I load pics and music onto ipad without another computer

    I bought a IPAD 2 after my home computer crashed. I had all of my Pictures and Music saved on an external hard drive. Problem is I don't have a personal computer to load all of them onto to transfer to my IPAD? Please help!!!

    Unless I am missing something, you can't transfer the music and photos from an external drive to the iPad. You need a computer that has an operating system that can move the files from the drive to the computer and then to the iPad. Or you could sync the content from the drive, I think, but you still need an operating system in order to make the transfer work.

  • I have "Load Images Automatically" disabled. How can I load images for ONLY the page I am currently viewing?

    I have intentionally disabled "Load Images Automatically" so that it is easier to view my desktop remotely via VNC or Remote Desktop. Animations and other graphics kill the performance of these remote viewing apps. However, when I reach a desired web page (the one I really intend to read in full), I want to load all the images ***for that page only***.

    I don't think Firefox has that features. It views loading images as a permissions issues toggled on a site-by-site basis rather than a performance issue toggled on a page-by-page basis.
    Maybe an add-on would give you a better balance of features? These two popped up in a quick search:
    [https://addons.mozilla.org/en-US/firefox/addon/image-block/ Image Block :: Add-ons for Firefox]
    [https://addons.mozilla.org/en-US/firefox/addon/imglikeopera/ ImgLikeOpera :: Add-ons for Firefox]
    If you try either of these, let us know what you think.

Maybe you are looking for