Combine 10 smaller .swf apps into 1 big app with menu? Possible?

Hi,
I create educational games for kids.
These are normally made as 1 swf file for each minigame and I allready had a collection of these.
Is it somehow possible in air for android (I understand that for iOS is likely not possible because of Apple restrictions) to include all these SWF files together with 1 menu.swf into 1 big package so that the menu could somehow load a activity swf on demand (local, since the swf is allready in the package) ?
I also understand that communication from the activity to the menu.swf is most probably sandboxed, but I suppose that communication from menu to loaded activity should still be possible so I can somehow set a variable flag in the loaded content for the menu.swf to know when it may unload the content.
Hopefully somebody can give me a little help on this, first of all if its possible at all and secondle (if possible) in what direction I should go start looking to create this.
Working with flash CS5 by the way.

Yes, you can do:
i) Create a index file and use loader for swfs and assign the loader contents to a movieclip to control the timeline of loaded swf.
ii) External swf should not contain any script and whatever script you have to do will control by your index.
I had done a project by creating many .as files for the external swfs and just include that in the index file when accessing the external swf.

Similar Messages

  • Making two small hard drives into one big partition, so i can install jsdk

    I want to install jsdk but my hard drive isnt big enough. I connected a second hard drive to the same cable as my 1st hard drive, i want to make one partition. Is that possible? How can i do it so to harddrives look like one hard drive when i open "My Computer" I have fdisk, but what do i choose to partition it correctly?
    thanks,
    N

    i explain what i know but if i am wrong maybe some others will correct me:
    From what i know, there is no way to auto fill the second when the first is filled. BTW the first will not be filled because if it does, there wont be enough space to run your other program.
    Master and slave is like a primary harddisk and a secondary hardisk
    Master is where your OS resites and is commoly known as C drive whileas secondary can be your D, E , F( i am refering to harddisk not your CD-Rom or floppy drive)
    Logic partitioning is where u separate your one hard disk into several parts... Like u can separate your C into several shelves to store things. No conflict will arise if same filename is found in the C drive.
    Extended is where u separate the separated portions of the hard disk... like separating one shelf into two: one to keep your books and the other to keep your pencil etc.

  • Combining multiple small .pptx files into one larger .pptx

    So I'm a newbie when it comes to powershell and can't figure this out.  Here's the scenario, I have a file named "Multi organization.pptx" in a directory, within this directory I also have sub-directories labeled "Organization 1",
    "Organization 2", etc.  I have a .csv file with the correct order to place the organizations in the  multiorganization.pptx.  What I need powershell to do is search each of these sub-directories for their .ppt or .pptx take the entire
    presentation and place them in the "Multi organization.pptx" in the order they are listed in the .csv and if there isn't a .pptx in the sub-directory then it should skip that one and move to the next item in the .csv.  
    A couple notes all the slides are 16:9 ratio and must keep source formatting.  The script should also know to search for .ppt as well.

    Well below is what I have developed so far.  I need assistance pulling ppt's based on the CSV name (so organization 1 folder would have organization 1 ppt in that folder).  All these ppts are custom layouts, which could make this rather arduous.  Also need assistance with pulling all slides from given presentation and putting them in the Multi-organization.pptx.  I figure if I get help developing a solid code here, then it may be easier for the Powerpoint developers forum to assist. #Set office to Open
    Add-type -AssemblyName office
    $Application = New-Object -ComObject powerpoint.application
    $application.visible = [Microsoft.Office.Core.MsoTriState]::msoTrue
    $slideType = "Microsoft.office.interop.powerpoint.ppSlideLayout" -as [type]
    #Specify path
    $path = "Multi-organization.pptx"
    #Import CSV and Tell PS to get specified pptx files
    #Need CSV Command to pull pptx's based on CSV object
    Get-ChildItem -Path $path -Include "*.ppt", "*.pptx" -Recurse |
    ForEach-Object{
    $presentation = $application.Presentations.open($_.fullname)
    $customLayout = $presentation.Slides.item(1).customLayout #Need to know how to grab all slides
    $slide = $presentation.slides.addSlide(1,$customLayout) #need command to place slides in consecutive order from CSV pull.
    $presentation.SaveAs()
    $presentation.Close()
    "Modifying $_.FullName"
    $application.quit()
    $application = $null
    [gc]::collect()
    [gc]::WaitForPendingFinalizers()One thing I did notice was the slide pulled the layout and inserted only one slide but left out the text box and words.  Will the words need to be added after the script runs?  If so it seems to defeat the purpose of automating the task.

  • Can I combine two methods of code to load various SWF files into the same location

    I presently have a set up where a large SWF file brought on the stage by clicking small icons from the scrollable thumbnail menu on the bottom of the stage. All of it happens at the same frame with .xml loading file.
    Here is the code for constructing the ImageLoader(for thumbnails) and SWFLoader for (bigger SWF files)
    [CODE]
       function _xmlCompleteHandler(event:LoaderEvent):void {
       _slides = [];
       var xml:XML = event.target.content; //the XMLLoader's "content" is the XML that was loaded.
       var imageList:XMLList = xml.image; //In the XML, we have <image /> nodes with all the info we need.
       //loop through each <image /> node and create a Slide object for each.
       for each (var image:XML in imageList) {
        _slides.push( new Slide(image.@name,
              image.@description,
              new ImageLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/thumbnails/appThmb_imgs/" + image.@name + ".jpg",
                   name:image.@name + "Thumb",
                   width:_THUMB_WIDTH,
                   height:_THUMB_HEIGHT,
                   //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates
                   //x:260, y:320,//doesn't work here but works in line 69
                   scaleMode:"proportionalInside",
                   bgColor:0x000000,
                   estimatedBytes:13000,
                   onFail:_imageFailHandler}),
              new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",
                    name:image.@name + "Image",
                    width:_IMAGE_WIDTH,
                    height:_IMAGE_HEIGHT,
                    //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates
                    x:0, y:144,
                    scaleMode:"proportionalInside",
                    bgColor:0x000000,
                    estimatedBytes:820000,
                    onFail:_imageFailHandler})
    [/CODE]
    Here is what I would like to resolve. I have another section on the site with an image collage. Every image is a button. I want to script this each image on click to go to the label with ImageLoader and SWFLoader AND TO OPEN A UNIQUE SWF (ASSOCIATED WITH AN IMAGE CLICKED) ON THAT PAGE
    Previously this is what I did to achieve it. I would specify a String:
    [CODE]
    var sourceVar_ProductsPopUps:String;
    [/CODE]
    and then all my buttons will have their unique SWF assigned for them which opens at another labeled section ("prdctsPopUps" in this example):
    [CODE]
    function onClickSumix1PopUp(event:MouseEvent):void {
      sourceVar_ProductsPopUps="prdcts_popups/sumix1-popup_tl.swf";
      gotoAndPlay("prdctsPopUps");
    [/CODE]
    Then in the "prdctsPopUps" section I would specify that var string to bring up SWF files. The value of sourceVar_ProductsPopUps allows to load mulitple SWFs from the previous page.
    [CODE]
    loaderProductPopUps = new SWFLoader(sourceVar_ProductsPopUps,
    [/CODE]
    But I need both of them to be working at the same time. First there is a sectionA from where a user can navigate to specifically targeted SWF to section B's SWFLoader. Then in the section B a user has an option to bring up other SWF files into SWFLoader from the scrollable thumbs menu. Is there a way to combine these two lines into one:
    [CODE]
              new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",
    [/CODE]
    and
    [CODE]
    new SWFLoader(sourceVar_ProductsPopUps,
    [/CODE]

    Thanks for looking into my issue.
    Unfortunatelly I am not so advanced in AS and do not complitely understand the logic of the problem. I will try to decribe my set up more precise.
    So, my main flash file is broken into labeled sections on the main time line.
    One of the sections is "Applications" It has an animated collage of images. Each image acts as a button and once clicked brings a user to a section called "ApplicationsPopUps".
    "ApplicationsPopUps" section has small image thumbnails scroll menu at the bottom of the screen and a large SWFLoader in the middle of the screen. User can click on an image in the thumbnails scroll menu and a corresponding SWF file will load in the middle of the screen in SWFLoader. User can click on left/right navigation buttons and preceeding/following SWF file will load in SWFLoader.
    Everything works fine (with your previous help)
    Here is the working code for the ImageLoader and SWFLoader (please let me know if you need additional code on the page):
    function _xmlCompleteHandler(event:LoaderEvent):void {        _slides = [];       var xml:XML = event.target.content; //the XMLLoader's "content" is the XML that was loaded.        var imageList:XMLList = xml.image; //In the XML, we have  nodes with all the info we need.        //loop through each  node and create a Slide object for each.       for each (var image:XML in imageList) {         _slides.push( new Slide(image.@name,               image.@description,               new ImageLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/thumbnails/appThmb_imgs/" + image.@name + ".jpg",               {                    name:image.@name + "Thumb",                    width:_THUMB_WIDTH,                    height:_THUMB_HEIGHT,                    //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates                    //x:260, y:320,//doesn't work here but works in line 69                   scaleMode:"proportionalInside",                    bgColor:0x000000,                    estimatedBytes:13000,                    onFail:_imageFailHandler}),                 new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",                   {                     name:image.@name + "Image",                     width:_IMAGE_WIDTH,                     height:_IMAGE_HEIGHT,                     //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates                   x:0, y:144,                     scaleMode:"proportionalInside",                     bgColor:0x000000,                     estimatedBytes:820000,                     onFail:_imageFailHandler}) 
    Thumbnails in the section "ApplicationsPopUps" and images in the image collage in the section "Applications" represent the same photographs. So when a user clicks on one of the images in "Applications" section it would be natural that that image will load in the "ApplicationsPopUps" section. However "ApplicationsPopUps" section presently has a working code (as sampled above) It looks too complex for me and I do not know hot to implement this feature. I do want to keep the functionality of the thumbs image scroller in section "ApplicationsPopUps" as it is now. But I want to add that when a user click on an image from section"Applications" then that particular SWF file will load in SWFLoader in section "ApplicationsPopUps" and then the present functionality can as well be exectuted. Presently it just opens on a first image in xml order.
    P.S. I see that you had a download link in your answer. How did you do it? I could also upload a small sample file with my problem. This way you could see all the set up right away.

  • My CS3/PS has started to change the cursor into a line of three VERY small icons when dragged over a picture or menu. Thus it is VERY difficult for instance to drag a layer in the layer list to the wastebasket - the cursor simply is too big for the waiste

    My CS3/PS has started to change the cursor into a line of three VERY small icons when dragged over a picture or menu. Thus it is VERY difficult for instance to drag a layer in the layer list to the wastebasket - the cursor simply is too big for the waistebasket icon. Even all other exact work is impossible.  Of course I have checked all the cursor presets but nothing seems to help. My OS is Windows7.

    Have you tried resetting Preferences?
    A logical next step would be to reset your Preferences.
    To reset Preferences:
    If Photoshop is already open on your screen, close it (Quit). Then hold down Shift+Ctrl+Alt (Win) / Shift+Command+Option (Mac) on your keyboard and start Photoshop.
    A dialog box will pop up asking if you want to delete the existing Preferences file (the "Settings"). Click Yes in the dialog box. The existing Preferences file will be scrapped and a new one will be created.

  • I need to combine 2 swf files into 1 file

    I have a flash template that is controled by basicly 3 files website.swf, text.xml and index.html (there are a lot of supporting files)  When i put a video.swf in the xml file it runs with the website.swf as long as I don't turn on the sound on the video.swf because it will not stop.  So I needed some controls on the video.swf which is the skinunderall.swf, but the file comes in 2 pieces and will not intergrate on the website.swf.  I have about 18 video.swf files and they all need to be controlled by the user on the site.  Is there anyway to combine video.swf and the skinunderall.swf to ONE file with the controls?  I will settle for a start stop button, however once the file starts I can't touch it--it seems.  But I have turn the video.swf into a link and it was clickable.
    I read the captive thing but it seems to be out of date.  Oh yeah and I am a page one (begining) coder.
    Any help?

    Hi,
    "combine 2 swf files into 1 file" is a pretty abstract question. The short answer is - yes, you can, but you need an appropriate  software tool for that. But really it's not clear (for me) how all your files work together exactly. The only what I can derive from your explanation, is that you need to add an interactive control to some SWF files with embedded video, loadable into the main "envelope".
    In general all what you need are:
    - you must have some named mc within your "main" SWF, which will load your video SWF's into itself by loadMovie() function.
    - you need to have some controls (buttons, etc.) in your "main" movie. which will control this mc playback - mc.play(), mc.stop(), etc.
    I'm almost sure it's resolvable problem, but can you upload this template to let us see how it all works now? If you don't wish to disclose it all publically, then you may write to me personally. You can find email address at the bottom of the webpage in my signature.
    FlashDigger
    www.flashdig.com

  • Can Time Machine combine two HDs into one big one?

    I know Mountain Lion added the ability to use multiple HDs simultaneously (I have done this). As it stands, it just rotates among the different HDs each time it does a backup. Is there a way to have OSX combine two HDs to make a 'virtual' bigger HD?
    The reason I ask this is because my existing iMac has a 1TB internal hard drive. I have two external LaCie drives of 2 TB each that I use for Time Machine. I'm planning on getting one of the new iMacs and custom-ordering it with a 3TB internal drive. Obviously a 2TB drive won't fit, but if OSX can combine the two HDs virtually, it'll end up with a 4TB volume, right? Can it do that?

    A hardware RAID is as reliable as the hardware. I believe the LaCie product you mention is a hardware RAID. I have no opinion of its reliability, and I don't know whether you can configure it as a mirrored RAID.
    Maybe I should clarify. I see no reason to use a RAID for backup unless you need the space. If you need a 6 TB Time Machine volume, you have to use a RAID -- striped, not mirrored. For the safety of your data, regardless of the amount, you need redundant backups, not RAID. That is, you should have at least two independent backups, at least one of which is off site at all times.

  • Concatenate two single frame swf's into one singleframe swf?

    Hi
    Is it possible to combine multiple swf's into one "single frame" swf?
    I have an flex application, that has a scroller with a swfloader inside, and the swfloader should load the "single frame" swf and it is possible to navigate up and down, via the scroller.
    Any help is appreciated.
    /Allan

    I've experienced the same thing sometime long in the past,
    and I probably did a frame by frame Print Screen to get around it.
    If it's single frame swf, then that's probably all you're going to
    get is one frame as an output.
    You may be able to incorporate a jpeg encoder of some sort to
    take snapshots as the piece animates in some form of loop fashion,
    but I'm not savvy in that dept.

  • Loading external SWF's into an SWF Loader as3 style?

    Hi,
    I've recently made the switch from as2 to as3 and am still struggling to get my head around one aspect in particular. I've managed to load one external swf into a blank file via the script
    import LoadDisplayObject;
    var loader:LoadDisplayObject = new LoadDisplayObject("button_01.swf", true);
    loader.addEventListener("displayObjectLoaded", onComplete, false, 0, true);
    addChild(loader);
    function onComplete(evt:Event):void {
         trace("loaded complete received");
         loader.scaleX = loader.scaleY = .75;
    .....however I'm struggling with the script to make a swfs load into a space when one of my 3 buttons is clicked....
    My page currently has three buttons (button_01, button_02 and button_03) and in a local folder three separate swfs with the same names which I wish to load in, when the appropriate button is pressed. 
    I have managed to get them to load in using a tutorial...however they load over the top of each over...far from ideal. From research on the internet I've found a range of different script...but I just can’t find anywhere I can find script to make this work..hence why I have turned to here.
    Any help much appreciated...thanks in advance.

    Hi,
    Just throught I would let you know that I've manged to get this to work this morning. Changed the script slightly and used a different method of:
    var home:MovieClip = this;
    function butt1Click(evt:MouseEvent):void {
        var ldr:Loader = new Loader();
        ldr.load(new URLRequest("button_01.swf"));
        ldr.contentLoaderInfo.addEventListener(Event.INIT, loaded);
    function butt2Click(evt:MouseEvent):void {
        var ldr:Loader = new Loader();
        ldr.load(new URLRequest("button_02.swf"));
        ldr.contentLoaderInfo.addEventListener(Event.INIT, loaded);
    function butt3Click(evt:MouseEvent):void {
        var ldr:Loader = new Loader();
        ldr.load(new URLRequest("button_03.swf"));
        ldr.contentLoaderInfo.addEventListener(Event.INIT, loaded);
    function loaded(evt: Event):void {
        if(contentClip.numChildren > 0){
            contentClip.removeChildAt(0);
        contentClip.addChild(evt.target.content);
    button_01.addEventListener(MouseEvent.MOUSE_UP, butt1Click);
    button_02.addEventListener(MouseEvent.MOUSE_UP, butt2Click);
    button_03.addEventListener(MouseEvent.MOUSE_UP, butt3Click);
    seems to work well. Only small question is if I want one page to load automatically upon opening...how do I alter the script to do this??? Thanks

  • Is there a way to generate air apps with hidden or "insided" swf?

    The swf file is very very easy to be decompiled after installed...
    Why adobe air doesn't include swf into the executable file?
    I have to protect it.

    but it will be complicated for Android and iOS
    You don't need any setup mangers for this. Adobe Air for iOS use embedded runtime into package (captive) and you can't build it separately. For Android there two options. Make it built-in (captive) or shared. So don't worry about mobile devices. Just use captive for Android.
    and there is another problem with the Air Security Certificate and Digital signature.
    I don't understand your issue. When you developing and publish app for iOS/Android - you must use Developer certificate that you must buy from Apple or Android/Azamon. iOS don't allow packaging without certificates. Android allow with self-signed.
    , just after the manifest document (xml) was extracted or with personal package.
    Adobe Air very flexible. You can use different techniques. For example I use visualization software to create from Adobe Air bunch of files just single one executable file. It's like packaging you app with all external files inside another app.

  • Joining several swf files into one swf file

    hello everybody
    i've been dealing this issue for too long and decided to ask for  help - how can I unite 15 swf files which placed in one folder to a one swf file???
    i tried all kindes of merging softwares like "Join (Merge, Combine) Multiple SWF Files Into One Software" and "WinMerge" without success and tried to convert swf to flv (cause i found other merging software for flv files) but again...
    I have CS5 so if i'll have to open Flash for this i will, though i'm trying to avoid that and even then i'm gonna need full instructions.
    All i need is this simple thing so i'll appreciate very much any help
    Thanks & Good Day
    Keren

    Hi Ned
    Again - thank you very much.
    I've got the source files and i'm on the run now.. kind of..
    I did as you recomצended and used a code from one of the AS3 UILoader tutorials , and it seems to work:
    import flash.net.URLRequest;
    import flash.events.ProgressEvent;
    import fl.containers.UILoader;
    var myLoad1 = "fastflipPage.swf";
    var request:URLRequest = new URLRequest(myLoad1);
    loader.scaleContent = false;
    loader.addEventListener(Event.COMPLETE, completeHandler);
    loader.addEventListener(ProgressEvent.PROGRESS, progressHandler);
    loader.load(request);
    loader.load(request);
    function progressHandler (event:ProgressEvent):void
    status_txt.text = "Percentage Loaded" +
    Math.round(event.target.percentLoaded);
    function completeHandler (event:Event):void
    status_txt.text = "Loaded Done";
    So... i'm tring to find some answers to my next step : in the code above im loading only one file and i need to load 30 files so they could play one after another. i noticed that i can create many uiloader instances and load several external SWFs in the same scene without writing a script to each one of them... is that right? and if so, how can i do that???
    I'm full of hope to figure this task, meantime will look for more answers
    Thanks in advance
    Keren

  • Load swf directly into Captivate 5.5?

    Hello,
    How can I load swf files directly into Captivate 5.5 during runtime?
    I do not wish to have one single large Captivate file. Rather, I wish to create multiple small swf files and load them into Captivate as needed.
    I do this all the time in Flash, however,is this possible to load external swf into Captivate?
    Thank You
    iaustin

    You can select the option to externalise resources such as animations and widgets (both SWF files) in Project Preferences.

  • Choppy Playback of small swf Animations

    Ok, this may be a very a simple and easy question...  I would just like to know what would be others workflow or process per my given situation. We are creating a virtual classroom and building several swf animations to support the content for the classroom. Our swf files are no more than 80kb. When we do share my screen to show the files the playback of these animations are choppy, extremely pixelated and not playing back real time. (Starting to gather that is a bandwidth issue even though we do have our setting set up for the highest bandwidth during our rehearsals.)
    Another option we have played with is uploading our files to the adobe connect server and creating a link. This still seems a little choppy, a slightly better quality but still not the quality of the original animation. Plus, we are not to keen on having to pull up a browser window throughout the presentation/ classroom to show our animations.
    My question is what would be your best workflow or process to present these small swf files so there is no skipping/ choppy or degrading the quality of these animations in a Adobe Connect virtual classroom?
    Appreciate any feedback or advice. Kind of newbie to Connect :/

    The screen sharing option makes sense, as the screen share runs around 5 FPS, so it would be visually choppy, and would have lag.
    Are you custom building the SWF files? I would use the Collaboration SDK to make it so your SWF files can play in the sync'd mode in the connect room, or you can just load them into the Share pod as is and each individual will view it independantly. Just make sure you are making the SWFs in AS3.
    SDK documentation is listed here: http://www.adobe.com/devnet/adobeconnect.html

  • Will AEC ( Acoustic Echo Cancellation ) work in an SWF App that runs inside of an AIR app?

    Hi,
    I was forwarded here in hopes of better understanding the architecture of Flash Player within the AIR environment.
    1) Woulda SWF App compiled to target FP10.3 run in an AIR App that targets FP 9.0 and AIR 2.7?
    * Would FP10.3 specific features work correctly within the AIR app since all the work is happening in the SWF app?
    * Assumption: The user has AIR runtime 3.1 installed( which I assume embeds FP 11 )
    Details:
    * App #1 => is a swf app that targets FP10.3 + LCCS v2.2.0 ( FP 10.3 )
    * App #2 => AIR 2.7 app that target FP 9.0
    Execution Flow:
    * App #2 creates an HTML view, loads the "App #1" within itself and runs it.
    Will the App #1 have AEC working and/or any FP10.3 specific behavior ? Is it OK that the container AIR app is not be targeting FP10.3 ?
    Thanks,
    Alex G.
    PS Original post came from: http://forums.adobe.com/thread/927781

    This question would be better directed to the FlashPlayer and/or AIR forum.
    AIR embeds a version of WebKit to implement the HTML view and I am not sure of what FlashPlayer is used by that "browser" (it could be an embedded FlashPlayer, in which case I am assuming will be the same version of AIR FP, or the FlashPlayer installed at the OS / external browser level, in which case it could possibly be a newer version of the FlashPlayer).
    Best thing to do: try it out
    I would build an AIR app embedding a small SWF that prints out the FlashPlayer version and see what happen changing the targets for the AIR app and the SWF.

  • Help Needed!! embeding a swf widget into a flash site

    Hi all.
    I am currently making a flash site for a band, and need to
    embed an external SWF widget into it.
    Its easy enough to embed it into HTML page, but idealy this
    site will endup a single SWF file, to make distribution onto the
    bands various pages (MYspace etc) easier.
    The code to embed in html is:
    <embed src="
    http://www.soundclick.com/player/V2/mp3player200.swf"
    width="200" height="140"
    flashvars="bandid=850463&playType=band&ext=1&testMode=0&autoplay=1"
    name="MP3PlayerBasic" type="application/x-shockwave-flash"
    wmode="transparent" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    Some one told me it should be no probs to embed a swf with
    some sort of LoadMovie command, but he didnt have a qule about
    assigning flashvars to it.
    Any help here would ge greatly apreciated.
    Cheers.
    Sion

    I am listening to you and was letting you know that the code that I am trying to use is probably from an old forum. The code that Flash CS4 cranks out is about 10 pages long which seems a little much just to import an .swf with a transparent background. I don't imagine CS6 would be much shorter.
    From what I gathered, the html file checks to see what version of Flash you're using as well as what browser. The code for that is insane in my opinion and I am trying to keep my html file for my homepage rather small. I had no problem importing this in DW with a transparent background (when I was using DW) but am using Komodo Edit as my HTML editor now as it didn't come with Production Premium that I just got.
    If you know the correct (newer) code, that would import an .swf with a transparency, that would be most be useful. If not I guess I'll just wait for someone to reply that does.
    I will try to extract the code from the CS4 HTML file and use that, but did already try it once and it didn't work. If all else fails, I'll just download a trial version of DW and/or Flash CS6 and see if I can figure out how I did it on a website I developed a couple years ago (that I lost the files from in a HD crash).

Maybe you are looking for

  • Music library crashes on iphone 5.  Can anyone advise on how to fix this?

    I have a new iPhone 5 and when I transferred all my data from previous iphone I find my music library crashes.  Can anyone advise on how to fix this? I've already tried to sync with my itunes library on my computer.

  • Crystal and xml data

    I am building a report using xml data set from 3E database (elite software) i have data displaying in my xml output, but when i pull field into the report and run it through the viewer it doesnt display anything. i have tried the table (dataaset) alo

  • Email template functionality in P6

    Hi Experts, Do we have any email template functionality in P6,if yes how and where ? 1.     Option 1 : Send email from project workbench(activity) with logo – Manual process 2.     Option 2 : Send email with the required content thru BI Publisher. Th

  • IMovie to iDvd chapters not showing up?

    I have a great film of a relatives wedding that I edited in iMovie I then sent it to iDvd figuring I could chapter it when it got there. I was wrong. You have to enable an advanced menu then chapter the movie in iMovie. I did this then decided to Exp

  • Facetime w/iPad & iPhone

    May I use my iPhone and iPad to facetime continuously 24/7 as a video monitor ?