Placing a movie into scrollpane

I have a scrollpane Scroll1.
I set its contentpath to "movie1"
When run movie1 shows within the scrollpane.
I need to progam a button to replace the contentpath with
"movie2"
I have tried:
_root.Movie1.loadMovie("movie2.swf");
_root.scroll1.loadScrollContent("movie2.swf");
I cannot get it to work. ANyone have a step by step example
please?
Cheers
SteveW

I wrote up a very long explanation of this for indesignsecrets.com.
http://indesignsecrets.com/putting-swfs-into-indesign-documents.php
The bottom line is:
It's a bug on the Mac
Windows users can play those SWFs but the Mac hangs
Adobe is aware of the problem
But if you want an SWF to play on both Mac and Windows, open the PDF in Acrobat Professional and add the SWF there.
You will actually have more control than if you had placed it in InDesign and it played correctly.

Similar Messages

  • Placing SWF Movie into IDCS4 for export to PDF

    I'm trying to place a swf into an Indesign document for export to PDF.
    I made a simple swf using Flash CS4 (AS2 if it matters) and placed it using the File->Place menu.
    I checked the Movie Options and selected, Embed in PDF, and play options.
    Then I export to PDF and am sure that Interactive Elements is checked.
    I found someplace that suggested toggling "create tagged PDF" to the opposite setting of whatever it is, but that didn't make any difference.
    When I open the PDF with Acrobat and move to that page it just shows the default movie preview and shows a "buffering" window for ever, but the file is tiny so it should load immediately.
    So how do I do this? Is it possible? I've tried some searches, but most everything I'm finding is about exporting ID docs to swf. And that isn't what I want.
    At least I don't think this is what I want. I need to make a PDF that will have an animation of how to navigate a web app. So if anybody has a better way to do this, then please let me know!

    I wrote up a very long explanation of this for indesignsecrets.com.
    http://indesignsecrets.com/putting-swfs-into-indesign-documents.php
    The bottom line is:
    It's a bug on the Mac
    Windows users can play those SWFs but the Mac hangs
    Adobe is aware of the problem
    But if you want an SWF to play on both Mac and Windows, open the PDF in Acrobat Professional and add the SWF there.
    You will actually have more control than if you had placed it in InDesign and it played correctly.

  • Bash: unzip file and move into directory if directory created

    I'm writing a script that decompresses zipped/rared files.
    The zips typically have content in a one directory or not contained in a directory.
    Is there a way to see if the unzip process created a directory and move into it or if one wasn't created to operate on the files extracted in the PWD?
    So far the rar files have only had data that gets extracted to PWD, but if I see some with files in directories I'd like for a solution that might work in that case as well.

    Would zipinfo' help?  It lists zip archive files in a format similar to 'ls -l'.
    I only tried this on two zipfiles, and I'm concerned about how foolproof this may or may not be.
    Zipinfo lists the files in the opposite order that they were placed into the zipfile, I think.  If the first file placed into the zip was the parent directory, and so contains all the other files, the listing will be something like that shown below, with the container directory always on the next-to-last line of zipinfo's output:
    -rw-a-- 2.0 fat 1057 tx defX 09-Nov-12 17:56 examples/README.txt
    drwx--- 2.0 fat 0 bx stor 09-Nov-12 16:48 examples/
    42 files, 508682 bytes uncompressed, 133398 bytes compressed: 73.8%
    So one would have to test if the next-to-last line of zipinfo's output begins with 'd' (directory) or '-' (regular file).
    Off the top of my head, with not-so great command-line skills, I came up with:
    zipinfo example.zip | tail -n 2 | grep '^d'

  • Importing a movie into Captivate

    I need to import a movie into Captivate. I've tried .avi and .swf....flv works great, but the finished .swf file will be placed into an LMS shell, so I won't be able to reference the external .flv file.
    The .avi file, when published in Captivate to a .swf, is choppy and the audio is off. I tried changing the frame rate, but it didn't help.
    When I converted the .avi to a .swf file, placed it into Captivate and published it, the resulting .swf opened for a couple of seconds then crashed, or closed, or whatever. I just get a blank screen for a couple of seconds, then nothing.
    Please advise re: the best movie format to place into Captivate. I can convert the .avi to any format.
    Thanks, mp

    Hi there
    itsmecathy wrote:
    This question has been posted several times and I guess Adobe support people choose not to answer or don't know the answer...
    Well, for starters, Adobe Support people don't lurk in the forums waiting for issues to resolve.
    What you mostly have here are users helping other users. Now we do notice that members of the Adobe Captivate Development team have been frequently posting here since version 5 has been released. While I heartily applaud that move and agree that it will only help the product over the long haul, we shouldn't count on it because Adobe says right up front that the forums are User to User and not an officially sanctioned support channel.
    Cheers... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • Placing library item into page

    This script for placing library item into page and applying object style to the item. In line 16, script shows that "assets" property does not support. Please resolve this.
    if (app.documents.length==0){
        alert("Please open the Document");
        exit();
    if (app.libraries.length==0){
        alert("Please open the Library");
        exit();
    app.findTextPreferences=app.changeTextPreferences=null;
    app.findTextPreferences.appliedParagraphStyle="MN";
    var myfound=app.activeDocument.findText();
    alert(myfound.length);
    for(i=0; i<myfound.length; i++){
    var mylib=app.libraries.assets.itemByName("Box").placeAsset(myfound[i].insertionPoints[0]);
    var mymove=myfound[i].move(LocationOptions.atBeginning, mylib.insertionPoints[0])
    mylib.appliedObjectStyle="MN_Obj";

    To make that work, you have to address an open library (line 16).
    app.libraries describes the collection of all open libraries, not a distinct one.
    If only one library is open you could address the one with its index:
    app.libraries[0]
    If you already know the name of the library or better, the exact path of the library, you can:
    1. Make sure to open it
    2. Call it by its name
    Let's assume you know the name and you know that the asset you want to place is stored inside, you could do it this way:
    app.libraries.itemByName("TheNameOfTheLibrary").assets.itemByName("Box").placeAsset(
    /*Wherever you want*/
    Now, what will this line return?
    A library object? Hardly. So be cautious with using a variable name like "mylib".
    According to documentation it is returning an Array, and we can assume, that in this array is the object that is placed out of the library. Your asset stored in the library which goes by the name of "Box". Whatever that is.
    If you want to find out, you can use the following, more descriptive variable: "myPlacedAsset". That sounds more neutral.
    var myPlacedAsset = app.libraries.itemByName("TheNameOfTheLibrary").assets.itemByName("Box").placeAsset(
    /*Wherever you want*/
    Using the ESTK (ExtendScript Toolkit) together with $.writeln() can write the true nature of the placed asset to your JavaScript Console:
    $.writeln(myPlacedAsset.constructor.name);
    is informing you what kind of object "myPlacedAsset" really is. If indeed it is an Array, you could look for its length. If its length is "1", you get to the "heart" of your placed object by:
    $.writeln(myPlacedAsset[0].constructor.name);
    Or by that more inquisitory question:
    $.writeln(myPlacedAsset[0].getElements()[0].constructor.name);
    If your array is of a greater length, you have to loop through this array and question every single object!
    Before testing, exchange my comment "/*Wherever you want*/" with the code you like to use: Obviously the first insertion point of your found text. Hold on! This will backfire to you, because every time you place one instance of the asset you will add a character to your found text and shift the original insertionPoint. Better loop from back to forth or do the search from back to forth.
    Adobe InDesign CS6 (8.0) Object Model JS: Text
    Please, try that and report back…
    (Isn't noone reading the documentation these days?)
    Indesign JavaScript Help
    Adobe InDesign CS6 (8.0) Object Model JS: Table of Contents, Libraries Suite
    Adobe InDesign CS6 (8.0) Object Model JS: Library
    Adobe InDesign CS6 (8.0) Object Model JS: Asset
    Adobe InDesign CS6 (8.0) Object Model JS: Asset
    Uwe

  • I'm unable to drag mp4 movies into itunes and sync with ipad after updating to 10.5.2.11 version. I'm using windows 7? I was able to in the previous version, why?

    Im unable to drag mp4 movies into itunes and sync to my ipad2 after updating itunes to 10.5.2.11? Im using Windows7. I was able to before this update, why?

    I see same question with itunes not accepting mp4 videos and no answers? Has anyone been able to sort this out or is it a software problem being attended by apple? Please reply?

  • How do I share my movies with my wife's iTunes account on the same iMac, without having to actually copy the movie into her library?

    I apologize if this is already in the forum somewhere, I simply could not find this question being asked anywhere.  We have an iMac running Lion with all of the latest updates as well as the latest version of iTunes.  All of the digital movies we've purchased through iTunes, have been purchased through my iTunes account.  However, my wife is the one with the iPad, and syncs it with her own iTunes library and her own Apple ID.  I have turned on Homesharing for my library, and she can see my library from within her iTunes account.  We turned on the feature to automatically copy new movies into her library so that she could sync those movies onto her iPad.  However, I quickly discovered that it is literally storing a second copy of the movie file in her iTunes folder, and therefore eating up precious hard drive space.  Is there a way for her to "check" movies in my homeshare library from within iTunes to sync with her iPad when she connects it, without actually copying those movies into her iTunes folder?  If not, any suggestions on how we can solve this issue?

    What you're describing is the expected behaviour.  I believe though that is also is the easiest way to have all the contents available to both of you at all times.  If you have a spacious hard drive you should probably allow this to happen as anything else will be harder to manage.
    My suggestion would be the following if you want to try something different.
    Store all your music at a location that is accessible by both of you — an example would be to use your Public Folder as the locations where iTunes will go and look for all the media files—.  Your wife does have access to it.
    In the Finder you will need to move the folder name iTunes Music to the location in your Public Folder (see above).  Once that's done, you and your wife will have to go into the iTunes Preferences > Advance Preferences and un-check Copy files to iTunes Media folder when adding to library.  From this point on, you can continue to use iTunes as usual.  You'll need to tell your wife what has been newly downloaded/imported into your iTunes so she can manually go look for those items in that Public Folder iTunes of yours and import them into her iTunes.  She will not duplicate by doing that, but, like I say this is an all-manual work.
    She can do the same, so you have access to contents she imported herself.  One more downside of this is that both usernames have to be active in your iMac.  If yours isn't, she won't be able to access any item (song, book, app) located in your Public Folder's iTunes.
    I'm sure there's a way, if you have an router with external hard drive conectivity, for both of you to be able to access —independently— the iTunes Media at all times but I was just reading at another post that doing so can further complicate things.
    Hope this helps.  Please let me know what you think or decide to do.
    Jorge...

  • How can I import a movie into iMovie 09 from a hard drive?  The movie will open and play in idvd but breaks into separate files that can't be downloaded when I try to import.  Can it be done?

    How can I import a movie into iMovie 09 from a hard drive?  The movie will open and play in idvd but breaks into separate files that can't be downloaded when I try to import.  Can it be done? I am trying to create a disc of player highlights for a collegiate coach, and I am using movie files downloaded to my hard drive from a DVD created on a PC. 

    No unfortunately it won't open in quicktime either.  It does the same thing that Imovie does, separates it into two file folders audio and video, and if i select video it opens to reveal 8 files that cannot be selected.  VIDEO_TS.BUP, VIDEO_TS.IFO, VIDEO_TS.VOB,VTS_01_0.BUP, VTS_01_0.IFO, VTS_01_1.VOB, VTS_01_2.VB, VTS_01_3.VOB.  All of which cannot be opened or selected.
    Opening it in Idvd and folllowing your suggestion works and I get a format code of NTSC.  Is that the same?  Thank you for your time and response.
    CaCanuck

  • How can i convert 3d movie into 2d to watch it in mac

    i have a movie with mkv file playable on vlc how can i convert the movie into 2d

    There are now a bunch of them out there. Do a Google search for "mac 3D conversion" They tend to be around $35. I have been using iSkysoft products, which have been fairly easy to use. They have a "iMedia Converter Deluxe for Mac" that besides the 3D to 2D conversion, will also convert video to 70+ formats, has a 1-Click Video Downloader, and a single click Rip DVD and Burn to DVDs feature. Also claims to be "Ultrafast" all for the same price others apps are that only do the conversion.

  • Cross references corrupted after placing Word document into an InDesign document

    I am placing a word document which contains cross references to headers and captions/figures within the document. They seem to be fine and function correctly in the Word document, however, after I place this word doc into my InDesign doc, I take a look at the cross references panel and notice that the cross references have been corrupted. It is wrapping the wrong portions of text from the cross reference destinations. See screenshot for a visual of how the cross references are malformed. For example the 7th cross reference in the list should say Framework Details, not "Framework Detai
    InDesign Cross References Panel - showing malformed bits of text
    Another visual of this issue can be seen if I view the text frame in Story Editor view, see below. You can see that the cross reference source tags (blue arrow like symbols) are wrapped around the wrong portions of text. The blue tags shoud be wrapped around Framework Details and 52
    InDesign Story Editor
    You can see below as to why I think the cross references are fine in the Word doc, you can see the same cross reference I used in the example above in the word doc and it is wrapping the correct portion of text:
    Word - showing cross reference is formed corerctly
    Why is this not being maintained after placing this file into InDesign?
    Also I am not performing any cross reference updates after I import, this problem occurs immediately after the place of the doc.
    Why would InDesign be having difficulty in importing these cross references? I have set up a simple test Word document with cross references to headers and figures in and they have imported fine. What could be wrong with this other particular word doc that would be causing this "corruption" of cross references? This is not only causing my cross references to break visually and lack the update capability but also I cannot export the InDesign doc to an ePub as it keeps crashing. I believe from my reading on the web that if there is only one broken cross reference source i.e. the cross reference destination that it is trying to link to is missing, then the export to epub will fail. So this is causing a massive headache for me at the minute.
    Is there anything I could be looking at in the Word doc to try and figure out why the porblem is occuring in the first place?
    If anyone has any tips or a possible solution to this I would really appreciate it. Even better if someone knows the reason why this is happening I can tackle it from the source and prevent it happening time and time again.
    Thanks, Dave

    Only bad experiences, Peter ...
    I've seen this character shifting before on numerous occasions, both with cross references and with hyperlinks. (It's especially funny with hyperlinks, 'cause you can see that the outline box shifts one character at a time per each next link...)
    The thing is it's not just limited to hyperlinks and cross refs. Dave's screenshot doesn't show bold, italics, or other local formatting, but it's a fair bet these are off by a couple of characters as well.
    Dave's experiment of making a "minimal" Word document to confirm it's a persistent bug didn't work. I found the same thing: either a document comes in fine, or everything is foo-bar right from the start. There must be some internal Word code that InDesign forgets to count as 'a character position'. Without delving into the Word file with some very advanced tools, it's anyone's guess what code that would be.
    I can only offer the one solution that works for me: in Word, remove all hyperlinks (which is what Word uses for internal links as well as for external ones) and convert all cross-references to text. Then, if the file finally imports fine, re-build them in InDesign. It's a cumbersome workaround, but slightly better (only just) than checking each reference, delete, rebuild, check next -- etc. (And with that the chance that your other text attributes are also off.)

  • How do I get iPhone movies into iTunes' movie menu in the sidebar?

    I've tried to get iPhone movies into iTunes, but they turn into .MOV files and won't transfer!
    I've tried exporting iPhone movie files from iPhoto into iTunes shared movie files (Movies folder), but
    they don't appear in the iTunes movie list!  They don't appear in the iPad video app either!
    What's the story!  .  .  .  . thanks f

    Allan,  I tried all you suggested.  I ended up with 'IMG' files in the source list, and they won't play.  When double clicked they try to open for a blink, then back to the list.
    When exporting the iPhone video from iPhoto, what did you fill out in the dialogue box.  All I saw were selections referring to photos (jpeg, medium, etc.) I didn't see choices for video!  Wouldn't it be just as easy to just drag
    the video from the iPhoto thumbnails to the desktop?  Am I missing something here?
    Thanks again

  • Why cant i drag and drop movies into itunes?

    why cant i drag and drop movies into itunes?

    To make it display on the desktop, Finder > Preferences > General tab > check external disks.
    The drive might be formatted NTFS for Windows which is treated as read-only on the Mac.  Need to reformat it using disk utility.

  • My old back i had a lot of movies on it and it was stolen. i got a new one and it won't let me download my 400 dollars in movies into my library..all the movies show up on my purchased items how do i do this???

    my old back had a lot of movies on it and it was stolen. i got a new one and it won't let me download my 400 dollars in movies into my library..all the movies show up on my purchased itemsbut when i click on them it does nothing  how do i get my movie back??

    if you cant download them > email the iTunes Store emaill support adn explian the situation adn they will give you a regrant of all your purchases.
    expresslane.apple.com > click on iTunes > then iTunes Store > and choose the right prompts
    but you should try the pas purchase thing in iTunes first because the regrant is a one time thing. > IE iTunes Store > purchases > click what you want > redownload
    > but you do need iTunes 10.5 or later for it to work correctly .
    i woudl ask for the regrant it you dont have the options for movies yet

  • I have a MacBook 10.5.8 with Boot Camp. I can only operate the Windows side. When I move into MacOS it does not open.

    I have a MacBook 10.5.8 with Boot Camp. I can only operate the Windows side. When I move into MacOS it does not open.

    Your phrasing is not clear. How do you reboot into Mac OS? /can you describe the process step by step?
    Usually, you should do like this:
    - while in win, restart
    - immediately after chime, press option or alt key
    - wait for 2-3 seconds, you should see the boot options
    - select Mac OS partition
    If you have performed all these steps, and, after choosing Mac OS partition, you cannot boot into Mac OS, then your system is corrupt and should be reinstalled.

  • TS4163 Every time I try to export my movie into a Windows Format from compressor it shrinks the movie to 27 seconds.WHY? HELP

    Every time I try to export my movie into a Windows Format from compressor it shrinks the movie to 27 seconds.WHY? HELP

    Probably because you have the free version of Flip4MAc from Telestream that limits exported files to 30 seconds or so. There ae several paid versions  – depending on your requirements
    Good luck.
    Russ

Maybe you are looking for