Exporting to Flash without embedding music files

I had to create a music player for a website, and really didn't want to make a flash player from scratch again. So I had an epiphany and opened Keynote.
I created a slideshow: the first page was a "Click on song to play" and every page after the first was a song that auto played in the background with a next, previous and home hyperlink on each. Ten minutes later I could export to Flash, open it in Safari, and had a perfectly functional flash music player; 10 points for Apple.
The only problem is that the export embeds the songs into the SWF file, making the file around 16mb. In my current setup for the website, it's not a terrible problem, but I was wondering how I would export the file to Flash (from Keynote still) so that the music loaded externally, and only when the song needed to be loaded.
I could buy a swf>fla converter and change the actionscript, but I figured some genius in the Discussions might have a trick up their sleeve.
Well, do ya?
PS: For those interested, here is the file: http://clay.bellmor.com/appledis/musicplayer
Remember, it's 16+ megs, so whip out your Activity window. I also built in a timed auto-tranisition to play the next song. Again, 10 points for Apple.
Message was edited by: claytonbellmor

OK, I'm about at my wits end with this issue and it's only getting worse! Yesterday I did unistalls and reinstalls of both Flash and Captivate and made sure that I the proper Captivate A.S. folders copied to the Flash Classes folder...still no dice.
I then went to IT and asked for a loaner laptop to install both on to see if it might be my PC that's the problem...installed both on the laptop and export the Captivate File to Flash and published it...the audio worked! I was pumped. So went back to my PC and tried again and it didn't work. I then brought the new .FLA over from the laptop and it plays with audio fine on my PC. However the exact same Captivate project exported to Flash on my PC doesn't play the audio. I have a TON of captivate .SWFs that I need to add actions to, so if anyone can offer (even possible) solutions, I'd be grateful! Thanks!

Similar Messages

  • Export to Flash and keep the file size small!

    Clearly Keynote has a major bug when exporting to Flash. The files become very large, about 10x larger then the combined size of the JPEG's inserted. Earlier today I discovered how to get around this issue, albeit a far from perfect solution. Simply open each picture used in Photoshop and use the "save for web" menu. Save each image as GIF, 128 colors and rebuild the Keynote presentation. Although a color rich picture saved as GIF versus a reasonable compressed JPEG is x 3 or x 4 times larger the end result when exporting the Keynote to Flash is substantially smaller. Apparently Keynote exports to Flash without adding size when GIF's are used. Apple, please fix this "JPEG export" bug!

    Hi Gopal,
    You can get the components in your internal table using the below code-
    lo_struc_descr ?= cl_abap_typedescr=>describe_by_data( <fs_line> ).
        lt_components = lo_struc_descr->get_components( ).
    * Insert the component names in the start of the file
        LOOP AT lt_components INTO ls_components.
          IF lv_string IS INITIAL.
            lv_string = ls_components-name.
          ELSE.
            CONCATENATE lv_string ls_components-name INTO lv_string
            SEPARATED BY cl_abap_char_utilities=>horizontal_tab.
          ENDIF.
        ENDLOOP.
    Here <fs_line> is a work area. Basically we are getting all the fields in the internal table and writing their names in the start of the file.
    Hope it helps.
    Regards,
    Ravi

  • FLEX debugger not hitting breakpoints, because Flash sometimes embeds source file paths with wrong letter case?

    I was trying to figure out why breakpoints were working fine for source files in some locations but not others.  FlashDevelop's debugger (which I believe is actually the FLEXSDK debugger) was successfully connecting, tracing output, and hitting breakpoints in SOME files, but not others.
    I downloaded SWFInvestigator from Adobe Labs and checked the embedded debug paths for various source files to see what was going on.
    I discovered that files in which no breakpoints could be hit had their paths embedded in all lowercase (e.g. "c:\users\username\desktop\source\myproject" instead of "C:\Users\username\Desktop\source\MyProject").
    So I have two questions:
    First, is this a Flex debugger issue, or a FlashDevelop plugin issue? Letter case shouldn't matter or interfere with matching file paths in Windows.
    Second, what could possibly influence the letter case of embedded paths in a SWF output by Flash Professional (CS6), such that they are sometimes all lowercase and other times maintain the same case from the file system?  And why would that affect a debuggers ability to hit breakpoints in Windows 7?  I am compiling in multiple ways. Sometimes clicking Publish within Flash. Sometimes the file being published is not even open in Flash, and my JSFL script file is passed to Flash.exe containing embedded file paths to open the document. Usually, everything seems to work fine, no matter where I publish from, regardless of whether the FLA file is open or not. I'm honestly starting to believe that it depends on how the FLA was last opened in Flash Professional, as though it saves some sort of last access path internally and uses that to embed debug information.

    I don't think it's the source path in my case, because it's simply the dot ".", although I did check that because it would most likely influence the embedded paths.
    In the library path, I use relative paths exclusively, since all my individual project folders exist in the same "source" folder.
    Here's how I arrived at the conclusion that something more complex or "stateful" must be occuring:
    I publish my files with a one-click application, which does the following
    updates version timestamps (static constants) in specific files via regex match
    fills in a JSFL template with the FLA filename and writes the JSFL file to disk, then passes the JSFL file path to flash.exe for publication
    the JSFL then runs a command, which signals the main application via cross-process communication that the script has finished publishing
    That all makes it easy for me to update and publish multiple projects and deploy them, with a single click.  Here is the JSFL template I created, which has been drastically simplified since the days where it used to search to see if the file was open in Flash, select the document, and call publish.  Now it just uses the publishDocument method to silently publish files without opening them.
    var filepath = "FLAFILEPATH"; //template parameter: the URI (beginning with "file:///") of the FLA file to publish
    fl.publishDocument( filepath, "PUBLISHPROFILENAME" );
    FLfile.runCommandLine("COMPLETECOMMAND");
    The C# app replaces the strings in all caps with the actual values.  The COMPLETECOMMAND is actually populated with the application's own executable path, along with a "complete" switch, which lauches a 2nd instance, which handles the complete switch by broadcasting a signal over an interprocess channel and then terminates.  The main instance captures the signal, triggers a wait handle, and continues with publishing the next file.  Here is the core code for it:
    private string fillTemplate( string fla_directory, string fla_filename, string publish_profile_name )
        string fileuri = "file:///" + Path.Combine( fla_directory, fla_filename ).Replace( '\\','/' );
        return EmbeddedResources.OpenAndPublish //JSFL template file embedded as string resource
            .Replace( "FLAFILEPATH", HttpUtility.JavaScriptStringEncode( fileuri ) )
            .Replace("COMPLETECOMMAND", HttpUtility.JavaScriptStringEncode( "\"" + Application.ExecutablePath + "\"" + " -publishcomplete" )) //call self with -publishcomplete switch to signal main instance's publishCompleteSignal
            .Replace("PUBLISHPROFILENAME", HttpUtility.JavaScriptStringEncode( publish_profile_name ) );
    private static readonly string FLASH_PATH = @"C:\Program Files (x86)\Adobe\Adobe Flash CS6\Flash.exe";
    public void publish( string fla_directory, string fla_filename, string publish_profile_name )
        Program.publishCompleteSignal.Reset();
        string template = fillTemplate( fla_directory, fla_filename, publish_profile_name );
        string curdir = Environment.CurrentDirectory;
        string tempJSFLfilepath = Path.Combine( curdir, "temp_script.jsfl" );
        File.WriteAllText( tempJSFLfilepath, template );
        Process p = Process.Start( FLASH_PATH, tempJSFLfilepath );
        Program.publishCompleteSignal.WaitOne( 30000 ); //timeout after 30 seconds
    Here's where it gets interesting.  The FLAFILEPATH has ALWAYS been passed in as all lower case, yet this publication method has worked 99% of the time for hundreds of publish operations every day.  This applies to both the publication of the first SWC, which is referenced by the second published SWF (both were being published with lowercase paths), yet the paths for the main SWF were remaining in lowercase, while those in the referenced SWC were maintaining the correct case from the file system.
    So there may be any number of things going on here.  SWCs may be published differently than SWFs, such that SWCs always have the correct letter case for debug source files, regardless of how the source FLA project was opened.  Ensuring the path passed to publishDocument uses the right case definitely fixes the problem, but it doesn't explain why it usually worked, despite having always been passing a lowercase string.  The only variable I can think of in all of this is Windows itself or Flash, such as whether the document was open in Flash at the time the silent JSLF publishDocument command ran, and how that FLA was last opened (via shortcut, via "recent documents" in Flash, via recent documents in Windows.  It has to be something, even if it's something as obscure as how the folder path was last accessed in windows, although I strongly suspect it's just how (in terms of path case) the FLA was last opened in Flash.
    In any case, I'm happy that passing the right case to JSLF's publishDocument command fixes the problem, so I'm not going to spend any more time trying to figure out how opening the FLA in various ways could affect the embedded debug paths.  The only thing that should be done is to address how paths with the wrong case are handled when they do get embedded that way for whatever reason.  Perhaps the flex debugger should be updated to use case-insensitive matches in case-insensitive file systems, unless, perhaps, this is a FlashDevelop debugger issue after all.

  • Export to Flash with embedded QT or Flash video - can it work?

    Is it possible to have an embedded video (either QT or Flash) in a Keynote '08 presentation and export the presentation as a Flash SWF file? I have tried saving the video in different QT and Flash formats then export to Flash using Keynote, but when I view the exported SWF file, the embedded video doesn't play. I'm unsure if it's not possible to do this or if I'm doing something wrong.
    Thanks.
    Lori

    No, this would have required Apple to build a Flash video encoder engine into Keynote's export module. You'd think if it was already a flash movie, it would work, but it doesn't, so assume they just didn't bother building in support for embedding flash movies into a flash export.

  • Exporting to flash with embedded video HELP

    I am working on a presentation that includes a video I shot and edited on FCP. I used compressor to resize and reformat to a mpeg4, which I thought would be a very universal format. However, while it does play nicely in my Keynote presentation, it refuses to export to flash. groan.
    Can anyone suggest a video format that will play nicely in my keynote presentation and export to flash?
    Note: If it matters or helps: I always post my presentations in flash for my non-mac co-workers. They are able to view them in explorer from the intranet. They can also download, place them on usb flash drives and give them to potential clients. Everything was fine until I started to add video (which of course everyone wants).
    Thank you very much
    MacBook Pro Mac OS X (10.4.8)

    Welcome to the discussions, jimfospace.
    Anytime you export to Flash, it will not include the video so, no, there's not a format that will play at all when exported to Flash.

  • How do I get closed captions to play when exported, nothing is working (embedding, side files etc)

    I can't seem to get my closed caption track to play when exported, since my film is in german it is completely essential, none of the side files work with quicktime or vlc and neither does embedding it

    First off, media players like QuickTime and VLC do not play sidecars. I believe sidecars are used for broadcasting and possibly for writing to DVD.
    As for the embedded captions, a few questions:
    What is the type of the caption stream? Only CEA 608 can be embedded into QuickTime clips.
    In QuickTime, have you enabled caption display?
    If you import the QuickTime clip with embedded captions back into Premiere Pro, are the captions present?

  • Embedding Music Files

    Hi
    I'm trying to create a website that will contain music
    tracks. I've created a page and am experimenting. However it
    doesn't matter how hard I try or the research I do, and it doesn't
    matter weather I embed .mov, .mp3, .swf I just can't get the
    Quicktime scroll bar thingy to work properly. It seems to be coming
    up with the Quicktime Q with a question mark in it. Could somebody
    please look at my code and tell me why this is happening and not
    automatically coming up with the media controller bar and
    buttons...it's driving me bloody crazy. The webpage address is:
    http://www.scottkilminster.com/music.html
    I would be grateful for suggestions on the perfect html code
    that will make this work smoothly.
    My email address is; [email protected]
    Thanks for your time

    Hi. I can't seem to get the URL to come up, so I can't see
    your HTML. Are you using the <embed> tag? If not, here's a
    link to some information on the embed tag:
    http://docs.info.apple.com/article.html?artnum=61011
    If you're using the embed tag with still no results, sorry -
    can't help ya. I'm a "junior member" like you, and still fairly wet
    behind the ears.
    BTW - if you figure out how to get embedded audio to work in
    Firefox, let me know. Video works, and audio works in other
    browsers, but for some reason audio in Firefox is not working.
    Thanks,
    Ryan Janus

  • How to export PDF without embedded fonts?

    Hi,
    I'm using CrystalReports with VS2008. I export a report in this way:
    rpt.ExportToDisk(ExportFormatType.PortableDocFormat, filename);
    This works fine except it includes the used fonts. A older version of our export tool used Delphi and the vcl component which did not include the fonts. Including the fonts increase the pdf filesize in my case from 21kb to 70kb. Sounds less but the export creates around 1500 pdf on one day.
    Is there a way to export to pdf without embedding the fonts?
    Thanks
    Thomas

    Hi Thomas,
    No, and it's not all just embedded fonts. After CR 8.5 we converted everything to be UNICODE compliant. So as of CR 9 the size of the files, Printing as well as exporting, increased due to the unicode feature. All characters and bits of the files are now double byte in length with the resulting output being typically 4 or 5 times greater in size ( just a guess ).
    Only option would be to export as usual through CR and then use PDF API's to remove the fonts from the output file and resave the PDF.
    Thank you
    Don

  • Export a Flash Movie File

    Can you Export Flash Movie files to other formats?? Don see
    an Export to other File options.
    Would like to Export a Flash Movie or SWF file to a Quicktime
    or IPOD MPEG File.
    Anyone know where to do this? Do not see an Export to File
    option to that Format on Flash Pro CS.
    Thanks

    Without seeing your movie, its difficult to tell where the
    problem may be. My first guess is that the data rate is to high.
    You will probably need to choke that back in some way: lower the
    data rate for the compressor, reduce the frame rate, reduce the
    image size, reduce the color depth, etc.
    When you select to export to QT, for example, a new window
    opens to let you select some basic settings. At the lower right of
    that window is a button titled "Quicktime Settings...". Click that
    button and a new window will open that will allow you to set the
    compressor, frame rate, quality, etc.

  • Can not export to flash

    I would like to export a captivate project to flash, but the
    options under the edit button are grey (can not select
    them).

    Generally, the grayed out selections means you either do not
    have Flash on that PC, or you have an incompatible version. You
    didn't say what version of Captivate you are running, so the below
    might help:
    Captivate 3 designed compatible with Flash 8 > Flash CS3
    Captivate 2 designed compatible with Flash 8
    Captivate 1 designed compatible with Flash 2004 MX
    It has been a while, so it is possible I am wrong about the
    above. If I am, can someone please correct the versions listed.
    Thanks.
    When Captivate is installed, it looks for the compatible
    Flash. Sometimes if you install Flash
    after Captivate, it might not get registered, in which case,
    try reinstalling Captivate using the *Repair* option on the
    installer.
    Hope this helps, www.
    Larry
    P.S. Just caught a single word in your post - you said the
    options under the Edit button.
    What Edit button? Captivate's Export to Flash is on the File
    menu. Maybe we are not talking about the same thing at all?? Is it
    possible you mean you want to
    publish to the Flash SWF format and something is grayed out
    there? Guess we need a little more clarity onthe problem...
    L

  • Exporting to flash from keynote.

    Am I able to export a keynote presentation to flash then add the flash file to my iweb .mac site? Like moving words etc...?
    Thanks,
    Andrew.

    You can export to flash, but getting that file into your iWeb page would require editing the HTML after export.

  • How Do I Use an External MP3 file Without Embedding it? (AS2)

    I am using Adobe Flash CS6 with ActionScript 2.0.
    I have compiled my project, and due the collection of embedded mp3 files (background music) I am using on various locations, my published swf file is over 12MB.
    To reduce the size, I placed all the mp3 fiels in the same folder as the swf file and removed all reference to them from the project.
    I then added this code to frame #1
    import flash.events.Event;
    import flash.media.Sound;
    import flash.net.URLRequest;
    var CreditsMusic:URLRequest = new URLRequest("NineWalkers.mp3");
    var s:Sound = new Sound(CreditsMusic);
    CreditsMusic.setVolume(50);
    CreditsMusic.start(0,1);
    Obviously, this is not working (I would not be posting here if it was).
    What am I doing wrong?

    I haven't look into the help documents (you can), but I see you mixing up AS2 and AS3 code, along with treating a URLRequest (AS3) as if it is a Sound object....
         CreditsMusic.setVolume(50);
         CreditsMusic.start(0,1);
    If you want to work with the Sound class in AS2 open the help documents and see what properties and methods are available for the Sound class and work things out from there.  If you search Google using "AS2 Sound loadSound" you might get some good info as well.

  • Embedding music; XSPF vs. Flash MX 2004

    I'm working on a little personal site that feaatures articles about musicians and short sound clips of some of the their best songs. I've found two good ways to have a little embedded player: XSPF (frree from SourceForge.net) or Flash. Two things I'm worried about: If I use XSPF, it appears the user's browser will download the player and a playlist to the mp3 music file on the server. Pretty much the same way Flash works, I believe, except I think the wav/mp3 is imbedded in a Flash file. Sounds viable. Second thing I'm worried about: I bought Flash MX 2004 from Macromedia before they were bought out by Adobe. It's an old version, but I'm assuming it can do something as simple as create a little player? I didn't really explore it much after I bought it. Any tips appreciated.

    1) WMA is not a suitable file type for the web.  Use MP3.
    2) You don't need to re-invent the wheel.
    3) For a better user experience, get a Flash MP3 Player that supports playlists (see link below).
    http://www.webdesignbooth.com/10-easy-to-implement-flash-based-mp3-players-for-your-websit e/
    For people who don't have Flash capability (iPhone/iPad, etc...), also provide direct links to the MP3 files.  Almost everyone has an MP3 capable player like iTunes installed on their system.
    Good luck with your site!
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Exporting without embedding profile

    I want to export some files for printing by a service bureau using a custom profile which is 1.87 MB and do no not want to embed the profile. The images will then be sent directly to the printer without any adjustments and the profile is not needed. This is an option in Photoshop, but I have not found a way to do this in Lightroom. Any help would be appreciated.

    Bill_Janes wrote:
    Andrew Rodney wrote:
    Depends on the lab or service. In CMYK workflows, folks by and large just send the numbers within the data to the device as is. The only use for an ICC profile would be if someone wants to open the image and view it correctly (or edit it). In such workflows, it is common for such shops to receive maybe hundreds of output ready CMYK files. Even at 1mb per image, it adds up. Even so, unless bandwidth is an issue, I still recommend an embedded profile. In the very old days (1990’s) some old RIPs would barf on an embedded profile so people stripped them out. I seriously doubt those RIPs are still running and if so, I’d be worried to work with such a shop.
    Lab’s that can accept output ready RGB should work the same way. But there are far more labs that expect sRGB and if the OP sent data in something other than sRGB, the front end would make a mess of the output. You’d want an embedded profile assuming the front end can even recognize it and pop some alert.
    Perhaps I should have mentioned that I am not dealing with a full service lab, but rather my local Costco which has custom profiles on DryCreek.com. The local personnel do not know a lot about color management, but there is an option on uploading to print the files with no adjustments and they are sent directly to a Fuji Frontier printer. I do most of my more important printing with my Epson 3880, but send small prints to Costco and have have good results without embedded profiles saved as such from Photoshop.
    I have sent some prints to CostCo using their custom profiles and left the profile in place.  The CostCo I used simply ignored the embedded profile.

  • How can I stop embedded shockwave files from resizing in the exported file.

    -Operating System: Windows XP
    -Office Version: 2007
    -Flash Player version:
    -Xcelsius Version and Patch Level: 2008 (2?)
    I have a problem with embedded shockwave files resizing when they are exported.
    I have built a dashboard which needs a video to loop in the corner.  When I embed this video as a swf file using the image component and linking to the swf in question there is no problem.  I can export the entire as a swf in itself and the video plays in the corner fine.
    However when I need several videos each appearing on different 'pages' within the dashboard the problem arises.  I can set the various shockwave videos behaviour to appear and disappear depending on the page selected.  But, instead of appearing in the size that I have set the embedded video to they have grown.
    So instead of having a neat little video looping in the corner I have a huge video obliterating the rest of the dashboard.
    any help would be gratefully heard.
    Thanks
    Ed

    Halo Mattias,
    i using this function get file file name and directory:
    at selection-screen on value-request for p_file.
      call function 'F4_FILENAME'
        exporting
          program_name  = syst-cprog
          dynpro_number = syst-dynnr
          field_name    = 'P_FILE'
        importing
          file_name     = p_file.
    Rgds,
    Wilibrodus

Maybe you are looking for

  • HTML files viewed in Safari

    I'm sorry if this has been posted before, but I couldn't find it in the search area. But I am in a web design class, and just started taking my Macbook to school. And when I create an HTML document in a text editor and open it in safari, it shows the

  • Error in pdf printing

    i am using FOP for pds printing. The report is printed nicely when the records retrieved are 3000 or so. But when the record are more then that then it produces the following error. Acrobat Reader could not open 'Report[1].pdf because it is either no

  • Changing Portal Theme for HTMLB elements

    Hi I want to change css of the portal theme and use different styles. I downloaded the portal theme used and found css files in "its" folder. Is it useful to change the css files in it or how can i change style of theme?

  • DB Migration from SAPDB to Oracle 10g - Archive access after migration?

    Hi! Our customer plans to move his SAP system landscape from one Service Provider to another. During this not only new hardware is used but also a DB migration will be done using the procedure described in the SAP System Copy Guide (SAPDB -> Oracle -

  • Regarding Archiving Accounting Documents

    Hi all, I am using FBRA for resetting a cleared document. But i am getting the error as : Archiving has not finished. and the remedy as:  To avoid inconsistencies of this sort, clearing procedure must not be reversed until after archiving has finishe