Combining two Flash Document (.fla)...

I am having extreme difficulties. How do you combine the layers from two separate files. So that they play one after the other? I've looked at guides and it doesn't work at all. It gets all choppy... (I am using Adobe Flash Professional CS5, if that makes any difference to you). Thank you.

I sort of answered my own question then created a new problem. I copied and pasted the layers into the other project. This worked fine, except that it changed some of my symbols. I thought 2 different objects could have the same name as long as the were in separate folders in the library.

Similar Messages

  • Combining two sales documents  into one billing document

    Hi Friends,
    I need to combine two sales document into one billing document. Header data is same in both sales document.
    I have set factory calendar in the payer master.
    Tried for data transfer rotine at copy control of item level. But was not sure which routine to be set.
    Please let me know, what all settings are required to create one combine billing document.
    Regards
    Suman

    Hi,
    Is it delivery based billing or order based billing?
    2 orders / 2 deliveries and 1 invoice.
    For the above situation you need to write a routine which eliminates document number difference for Reference and Allocation.
    If you do not have different customer purchase orders for these two sales orders and in your copy control from delivery to billing your assignment and reference numbers are blank then system will club these deliveries and create one sales order.
    Else you need to eliminate these by writing a copy control routine and assign it at the header level.
    Hope this helps.  Pl. revert in case of further clarifications.
    Thanks
    Krishna.

  • Converting flash document (FLA) to Flex project

    Hi, I am trying to convert flash document to flex project.
    I initially had the .swf file. Then I created flash document(.fla) from .swf file. Now I need to convert to flex project so that I can modify and add new functionality. Please let me know if there are conversion tools available or is this purely a manual effort.

    You should take your question over to the Dreamweaver forum if it asking how to work with HTML5.  HTML5 by itself cannot reproduce Flash designs... the burden is moreso on javascript and CSS to make that happen.
    http://forums.adobe.com/community/dreamweaver/dreamweaver_general?view=discussions

  • There is a way to combine two flashes as one

    3640:
    I have one on board flash and two slots, there is a way to combine two of them to make a bigger one.

    No.
    Edited to add:
    If your flash is too small to contain the image you want, you can boot from tftp. In that case, there is no limit for the image size.

  • Possible to combine two xml documents into a single query?

    In ASP, PHP, etc. if I wanted to combine two tables and
    filter by one =
    item, I would create a recordset combining the two on one
    common element =
    and have one recordset. Is that possible with xml documents
    and Spry =
    datasets?
    I have xml information sent to me 4 times a day from a
    weather service. =
    This happens automatically, but the two xml documents
    (current.xml and =
    forecast.xml) are set in stone by the service. However, if in
    my Spry =
    dataset, I could combine them so I could list the 15 cities
    in a master =
    region and have tabs for the current conditions and forecast
    which would =
    each access a separate xml document but needs to do that from
    the city =
    link on the left, that would work great.
    Can I do this as I would be able to if I had a database with
    different =
    tables?
    Thanks!
    Nancy

    Hi Kin:
    They are really static xml files that are placed in a folder
    directly by =
    the weather service. The files in question are current.xml
    and =
    forecast.xml.
    And there is not one per city .. but just one of each. the
    location =
    node in current.xml and the citycode node in forecast.xml
    contain the =
    same information.
    If I were doing this in a recordset with a database, I would
    write =
    something like SELECT whatever from current, forecast WHERE =
    current.location =3D forecast.citycode AND current.location
    =3D variable =
    (which would be what is clicked on).
    This sets up a master/detail arrangement for the first one
    that works =
    fine. Click on the city code (which I have to write something
    to say If =
    location =3D FAT, document.write "Fresno" and so on) and the
    rest of the =
    current information displays fine on the right side of the
    page. Now I =
    have to marry that to the forecast.xml file so that when
    citycode =3D =
    FAT, the five day information for Fresno shows up .. and so
    on. I was =
    planning to use Spry tabs or whatever to show the data.
    <!--
    var dsCurrent =3D new Spry.Data.XMLDataSet("current.xml", =
    "weather/current");
    //-->
    </script>
    </head>
    <body>=20
    <div class=3D"MasterDetail">
    <div spry:region=3D"dsCurrent"
    class=3D"MasterContainer">
    <div class=3D"MasterColumn" spry:repeat=3D"dsCurrent" =
    spry:setrow=3D"dsCurrent" spry:hover=3D"MasterColumnHover" =
    spry:select=3D"MasterColumnSelected">{location}</div>
    </div>
    <div spry:detailregion=3D"dsCurrent"
    class=3D"DetailContainer">
    <div class=3D"DetailColumn">{phrase}</div>
    <div class=3D"DetailColumn">{temp}</div>
    <div class=3D"DetailColumn">{temp/@units}</div>
    <div class=3D"DetailColumn">{aptemp}</div>
    <div class=3D"DetailColumn">{aptemp/@unit}</div>
    <div class=3D"DetailColumn">{wndchl}</div>
    <div class=3D"DetailColumn">{wndchl/@unit}</div>
    <div class=3D"DetailColumn">{rhumid}</div>
    <div class=3D"DetailColumn">{rhumid/@unit}</div>
    <div class=3D"DetailColumn">{wind_dir}</div>
    <div class=3D"DetailColumn">{windspeed}</div>
    <div
    class=3D"DetailColumn">{windspeed/@unit}</div>
    <div class=3D"DetailColumn">{pres}</div>
    <div class=3D"DetailColumn">{pres/@unit}</div>
    <div class=3D"DetailColumn">{vis}</div>
    <div class=3D"DetailColumn">{vis/@unit}</div>
    <div class=3D"DetailColumn">{icon}</div>
    </div>
    Arnout gave me some suggestions .. but so far, I haven't
    gotten either =
    of them to work. Also I am trying to get some ideas from spry
    Samples =
    from the Spry home page/samples area, but again .. not yet.
    Thanks,
    Nancy
    "kinblas" <[email protected]> wrote in
    message =
    news:[email protected]...
    >I don't think you need to combine them just so they can
    render in a =
    tabbed=20
    > widget. We're still missing a couple of key pieces of
    information. =
    What does=20
    > the data that is used in the master region look like?
    Are what you =
    refer to as=20
    > current.xml and forecast.xml really static files? Or are
    they =
    dynamically=20
    > generated by a server side script (php/cf/etc)? There is
    one current =
    and=20
    > forecast xml per city right?
    >=20
    > I ask these questions because you may be able to simply
    set up a =
    master detail=20
    > relationship between 3 data sets and just use those
    within a region(s) =
    that=20
    > build up the tab widget. Assuming you were getting the
    list of cities =
    from a=20
    > 3rd source, you could set up something like this:
    >=20
    >=20
    > var dsCities =3D new Spry.Data.XMLDataSet("cities.xml",
    =
    "/cities/city");
    > var dsCurrent =3D new=20
    >
    Spry.Data.XMLDataSet("current.php?location=3D{dsCities::name}",=20
    > "/weather/current");
    > var dsForecast =3D new=20
    >
    Spry.Data.XMLDataSet("forecast.php?citycode=3D{dsCities::name}",=20
    > "/weather/forecast/day");
    >=20
    >=20
    > ...
    >=20
    >=20
    > <div id=3D"TabbedPanels1" class=3D"TabbedPanels">
    > <ul class=3D"TabbedPanelsTabGroup">
    >
    Current</li>
    >
    Forecast</li>
    >
    > <div class=3D"TabbedPanelsContentGroup">
    > <div class=3D"TabbedPanelsContent"
    spry:region=3D"dsCurrent">
    > {temp}{temp/@unit}
    > </div>
    > <div class=3D"TabbedPanelsContent"
    spry:region=3D"dsForecast">
    >
    > <li spry:repeat=3D"dsForecast">{name}<br
    />High: =
    {high}{high/@unit}<br=20
    > />Low: {low}{low/@unit}</li>
    >
    > </div>
    > </div>
    > </div>
    >=20
    >=20
    >=20
    > --=3D=3D Kin =3D=3D--
    >

  • Combine two large documents fails

    I have two large PDF files with multiple embedded videos. One is 1GB and the other is 2.12GB. When I try to combine them and save, the save fails with a message: "The Document could not be saved. The file is too big." This has happened in two computers, each one a Mac running 10.7.5. I have tried this in both Acrobat X and Acrobat XI.
    Note that InDesign also fails to export this as a single large file, but will export two files that each appear to be fine.

    Two things you can test : maintain the vendor code in the customer and the other way round to say SAP.
    Then the standard SAP program RFKORD10 allows several parameters that you can check.
    If none of tham are working, then you need to create a specific program based on RFKORD10 that will do what you want.

  • Combining two pdf documents

    Is it possible two create two separate pdf documents and pull one into another, either in the middle of it, or tack one to the end of the other?

    @Bernd Alheit,
    THANKS for the link. I will have to read and understand the whole thread --- I am relatively new, so it might take some time. Looks like what I want to do can be done, I just have to learn how I can accomplish the task.
    If I have questions should I post to the 286654 thread?

  • Can I combine two PDF documents?

    How can i add two pieces of pdf document each oder?

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • How do I combine two pdf documents into one using preview?

    If I remember correctly I have done this in the past but now I can't remember how to do it.
    Message was edited by: admiral_koa
    i finally found some other questions like mine which got answered. So I'm closing this out.

    That would be kind of you. Thank you. This is my first post on the new support setup. I find it a lot different than the previous arrangement. Harder actually.  I don't remember what I did when I first posted it. It seemed like my searches for my subject I could not find until I posted my question and then I found some immediately. Evidence of my struggling with how this works.
    thanks again,
    AK

  • How Do I combine 2 InDesign Documents into 1 (in a very particular way)

    How do I combine two InDesign Documents into one in a very specific way.
    Here's my problem: I have two separate InDesign CS5 files for playing cards. File one is the front. File two is the back.
    The company that does my final print production needs the the cards sent as two separate PDFs. One for the card fronts, one for the card backs. Both of these InDesign (and the PDF export) files are arranged in the same way: page 1 is card #1, page 2 is card #2, etc. Nice and simple.
    However, I use a different company for producing prototype versions of the decks (the production printer can't do this economically). My prototype producer needs me to send a single PDF where page 1 is Card #1 Back, page 2 is Card #1 Front, Page 3 is Card #2 back, Page 4 is Card #2 front, etc.
    The decks I am building usually run 56 cards, but can be as large as 180 cards.
    So, what's the easiest way to automate this process? is there a way to combine two separate indesign files by "interleaving" the pages from the two original documents into a new larger document (where I could do a new PDF export)?  Or, is there a better way to do this in Acrobat Pro? At the moment I have to resort to drag and dropping each card from one PDF thumbnail pallet to the other. It's really time consuming and mind-numbingly boring.  Any Ideas?

    This script is actually pretty straightforward, so it's a good first
    challenge I think.
    I would script this in InDesign -- probably because I'm more familiar
    with InDesign scripting.
    To start learning the InDesign scripting basics, open the ExtendScript
    Toolkit (ESTK) which is almost certainly installed on your computer
    already. Go to the Help menu, and you'll find an entry there called
    Adobe Intro to Scripting. Read that. I think that's the best place to start.
    For the script in question, you would want to:
    1. make sure both InDesign documents are open. They would both have the
    same number of pages. (No scripting involved here, just make sure
    they're open before running the script.)
    2. loop backwards through the collection of document pages of one of the
    documents. (document.pages is the collection you're looking for)
    3. use the move() method of a document page to move it. (myPage.move())
    4. Learn about the LocationOptions enumerator so that when you move the
    page you can tell InDesign if you want to move it before, or after
    another page. (LocationOptions.AFTER or LocationOptions.BEFORE)
    5. Get a reference to the page in the second document before (or after)
    which you want to move the page in the first document.
    5. that's basically it
    I suggest that as you work your way through this (if you decide to take
    up the challenge), you post any questions you may have on the InDesign
    Scripting forum here.

  • How to add a dropdown menu in flash document (.swf, .fla) ??

    How to add a dropdown menu in flash document (.swf, .fla) ??
    as i am developing a website for my semester proj, i need to add some flash contetn in the website..
    here is the link, http://www.mediafire.com/?wnx1jkwkkx9c118
    Check Out..
    the thing is i want a dropdown list/menu in "language selection - tab " (check the html page in above link).. plz help me out..
    Thank You,
    sairam

    For Flash questions check the Flash Forums. 
    http://forums.adobe.com/community/flash
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • When I try to combine two pdf's, it asks for a permission password and says the documents are protected; however, I didn't put any protection/security in the documents.  I assume it is a default security under the enhanced security settings of the Acrobat

    When I try to combine two pdf's, it asks for a permission password and says the documents are protected; however, I didn't put any protection/security in the documents.  I assume it is a default security under the enhanced security settings of the Acrobat Pro XI which I recently purchased.

    Acrobat (Pro or Standard) does not apply a "default" protection. It appears that someone or some other process has applied protection.
    Be well...

  • How to encapsulate two games in a new flash document

    Hi mates!
    Now that I have my first two games I want to encapsulate them in a new document!
    Here is my idea:
    Create a new document with 4 keyframes in the main timeline.
    The first one will accommodate the title and two "play" buttons (each allowing to play a game).
    The second one will contain the first game.
    The third one will contain the second game.
    The last keyframe will contain the scores.
    Each game contains a movieclip that is being controlled by a main class that I wrote using as3.0. For example imagine that one of the games is a simple rectangle that the user moves with the arrow keys. The motion code is inside the main document class. The second game is something similar.
    So, how do I "import" the games (that were developed totally independent of each other ) to the keyframes of my new flash document?
    Could you help me?
    Thanks in advance

    Importing the swf's will destroy any actionscript they have.  You'll need to copy the timelines of the games into movieclips in your other file.
    You might instead consider just loading the games dynamically, making the main file more of a loading/summary platform that you use to communicate with the loaded games.  This approach would likely allow you to easily add even more games as long as you have a similar communication scheme established.

  • How do I combine two one page documents into one two page document?

    How do I combine two one page documents into on two page document?????

    Menu > View > Show Thumbnails > Click on the thumbnail > Copy > Paste into the Thumbnails of the 2nd document
    Peter

  • A "security issue" for property list in library of flash document

    Please take a look at this screen-shot I have taken from the library in a flash document.
    see in the link below, you have to copy and paste it in your browser.
    http://askervgs.wikispaces.com/file/view/library.jpg/505738374/library.jpg
    As you see the modified dates for all these components are 28 April-2014 and for last component it is 29 April-2014.
    What is strange is that the flash document itself is claimed to be created in a local exam: date on 30.April 2014 !!
    How is it possible the components in the library are modified two days before the document itself is created?
    Dose it mean that the student has had access to these components two days before the actual exam date????
    *** All other students flash documents look normal and all dates for anything they have created  i
    their flash document library are actual exam date: i.e. 30.April 2014 between 08.00 - 14:00. 
    Please help to clarify this issue?
    Thanks for any help!

    Thank you for your answer!
    They use school laptops, and I will later check the date/time on this person's computer, but something which contradicts the "wrong date" case is that I have received three more files(one open office writer text file) from the same student, all created and modified on 30. April 2014, which was the actual exam date.
    So until know it seems that this student has had access to the exam file and prepared the main fla file 2 days prior to the exam date.
    This is quite possible because we use previously given  samples in local exams, (digitally available for "some nerds").
    But technical question is:
    Do the dates listed in flash-library for created components actual dates which match users computer dates/times?

Maybe you are looking for