Linking to files (such as Flash)

I was wondering if there was a simple way in DVDSP 4 to link to third party files such as Flash (SWF or Projector {executables})or PDFs, etc., to include a link to them on the DVD from the encripted DVD project (video TS). I've tried using the DVD@acess feature, but the link shows nothing on the complied DVD. Also, I'm using the file:///project/folder/file hierarchy as instructed. I've got a project on deadline for the end of next week...can someone out there help me??
Thanks,
daver123
Mac G-5   Mac OS X (10.4.5)  
Mac G-5   Mac OS X (10.4.5)  

Maybe have a look at this thread a few below this one:
http://discussions.apple.com/thread.jspa?threadID=417013&tstart=0
-Jake
Welcome to the discussions and can you please mark posts & threads as helpful/solved if they are. Thanks

Similar Messages

  • How to link pdf file in flash by xml ??

    how to link pdf file in flash by xml ??

    try to give <a href="your address">My Pdf</a>
    and your textfield should be html enabled
    mytextField.html=true
    mytextField.htmlText=your xml text

  • Create link to help topic from Flash file

    We have started using Flash to develop our online learning
    modules. So far they have been stand alone modules accessed from an
    internal web site, published as .EXEs. Our latest Flash module is
    related to a system for which we have an HTML help file. We'd like
    to embed the Flash module in the help file b/c we want a link in
    the Flash module to open a specific help topic.
    I can get individual .SWFs into the help file but these Flash
    modules are more complex, using many .SWFs for navigation, the TOC,
    the frame, and for each interaction. In other words, the main .SWF
    (or .EXE) calls many other .SWFs as the user navigates through the
    module.
    If I can't get the Flash module into the help file, and I can
    only link to it as an external file, can a link from within a .SWF
    in the Flash module open a specific help topic in the .CHM?
    Any other ideas?
    Thanks for your help,
    SueM2

    This question was answered by kglad, on Saturday, August 11,
    2007 10:13 AM
    Answer
    no it doesn't. getURL() causes no security issues unless you
    try to open the html locally and (try to) access something on the
    internet.
    unless your "flash site" is your local computer there is no
    security issue. if your local computer is an internet server, you
    just need to set the security settings for your local file and give
    it permission to access the internet zone.

  • Link in a DVD menu to link to text files such as Word, Adobe PDF's ect

    Hello All
    Is there anyway to put a link in a DVD menu to link to text files such as Word, Adobe PDF's etc that are burned into the DVD?
    Hope someone can help me out.

    Is there anyway to put a link in a DVD menu to link
    to text files such as Word, Adobe PDF's etc that are
    burned into the DVD?
    Actually, you CAN'T with iDVD. You CAN put a variety of content into the DVD-ROM area, but that isn't accessable from any menu in an iDVD created DVD.
    If you use DVD Studio Pro, you have some ability to add the kind of links you ask about.
    F Shippey

  • Working with linked video files in Flash CS5

    Hi,
    I'm working on a project that involves making decisions that affect how a short film plays out.
    The basic idea is link some video files to the flash file (don't embed because it loses a lot of quality) and have buttons appear at the end of each clip that will link to another place on the timeline where another video clip will play. Pretty simple.
    However one problem I have encountered is the only way I can make the buttons appear after the video is finished, is by dragging out the single frame of video on the timeline to whatever length in seconds it is multiplied by the number of frames per second.
    This is very tedious and not very effective despite solving the problem.
    Is there some way to maintain each linked clip in a single frame and only move to the next frame (which contains the relative buttons) after the video is finished?
    Of course if there is an even more effective way to do this please let me know as well.
    Thanks,
    Aaron

    What you really want have is this:
    Instead of using the timeline you should use Code to organize your application.
    So you will have only one frame and only one scene and only one flvComponent.
    import fl.video.FLVPlayback;
    import fl.video.VideoEvent;
    //Assuming you have 9 Videosegments to choose from
    var videoNr:uint = 9;
    // the buttons to navigate to the segments
    for (var i:uint=0; i<videoNr;i++){
       var currentButton:String = "btn_"+i;
      this[currentButton].addEventListener(MouseEvent.CLICK, playSegement);
    // the array to store the names of the videosegments
    var videoArray:Array = new Array();
    for (var i:uint=0; i<videoNr;i++){
      var currentVideo:String = "video_"+i+".flv";
      videoArray.push(currentVideo);
    //hide the buttons whenever the video plays and vice versa
    flvPlayer.addEventListener(VideoEvent.PLAYING_STATE_ENTERED, hideButtons);
    flvPlayer.addEventListener(VideoEvent.STOPPED_STATE_ENTERED, showButtons);
    flvPlayer.fullScreenTakeOver = false;
    function hideButtons(e:VideoEvent):void{
    for (var i:uint=0; i<videoNr;i++){
       var currentButton:String = "btn_"+i;
      this.getChildByName(currentButton).visible = false;
    function showButtons(e:VideoEvent):void{
    for (var i:uint=0; i<videoNr;i++){
       var currentButton:String = "btn_"+i;
      this.getChildByName(currentButton).visible = false;
    // or make a switch clause where you define which buttons are visible after which segment
    //switch(i){
    //only 1 and 2 are visible after Segmenet 0 has played
    //case 0: this.getChildByName("btn_1").visible = true;this.getChildByName("btn_2").visible = true;break;
    //only 3 and 4 are visible after Segment 1 has played
    //case 1:  this.getChildByName("btn_3").visible = true;this.getChildByName("btn_4").visible = true;break;
    //function to choose from the videos
    function playSegment(e:MouseEvent):void{
      var whichButton:String = e.currentTarget.name.substr(4,1);
      //gives the IndexNr of the Video that should play
      flvPlayer.source = videoArray[uint(whichButton)];
      flvPlayer.autoplay = true;
    // you want the actual video to stop on the last frame
       flvPlayer.autorewind = false;

  • How do I link external files (.pdf's) in the flash content please?  I'm creating a CD interface

    Hello
    I'm new to Adobe CS software and would like some advice please.
    My company uses a CD with a flash interface that opens via an .exe or .app file.  The original designer is on maternity leave at the moment but we need some content updates before she gets back and I’m deciding whether to redo the CD myself or to source a new designer.
    So far I've been able to replicate most of the CD in Catalyst using the trial version but there is one thing stopping me from buying the software.  I can't find a way to link external files (specifically pdf's) via the flash content.  The CD is for instruction manuals so once the interface has been navigated the user needs to click on a button to open the desired pdf manual.
    Is this possible in Catalyst or am I looking at the wrong software?
    I can't write code and my experience is limited so I would appreciate help from someone who knows what they're talking about please and any software recommendation would also be great
    If I need to outsource please tell me but bear in mind that I have been able to do all the design work and it's just linking the pdf's that I'm struggling with
    Thanks in advance and for any help

    Hi Bear,
    Thanks for your quick answer.
    Flash Catalyst currently prefixes all links with "http://", so you would need to save your FXP in Catalyst, open the FXP in builder, and remove the "http" so that you're just loading the local pdfs.
    I tried your suggestion but couldn't get it working so I'm probably doing something wrong since I'm not very familiar with Flash Builder.
    I created the button > on click > go to url interaction in Catalyst and saved the project (tried it using a PDF saved on our server and also my PC).
    I imported the FXP and opened to "project name / src / (default package) / main.mxml / button name"
    After deleting "http" I selected "export release build" and opened the new SWF and also tried the HTML; the new button just opened to my homepage instead of the PDF
    I also tried deleting "http:" and "http://" which deactivated the button completely (I expect some coders will laugh at that but I am a noob )
    Unfortunately linking to online files isn't an option for me so do you see what I'm doing wrong please?
    Thanks for your help

  • Buttons within Flash won't open links or files in blank windows in IE 7!

    I have a bunch of flash files on my website that I use as
    menus. Some of these menus have buttons call links and files to be
    opened in a blank window but this won't seem to work in Internet
    Explorer 7. Are there any fixes to this problem?

    this is not a globaly known issue but probably a problem with
    the code you are using and/or some
    kind of popup blocker installed in your browser or security
    setting you have made. If it is a code
    issue we would need to see your pasted code at least to take
    a stab at it.
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    rmiman wrote:
    > I have a bunch of flash files on my website that I use
    as menus. Some of these
    > menus have buttons call links and files to be opened in
    a blank window but this
    > won't seem to work in Internet Explorer 7. Are there any
    fixes to this problem?
    >

  • I cannot save pictures from facebook to "my Pictures" files on my hard drive. There is no place to indicate the type of file, such as jpg etc.

    I have been copying a picture & pasting it on my AOL email & saving photos from Facebook from email . Also, I cannot watch videos posted by my friends on Facebook.
    Firefox works fast on scrolling thru Facebook but I haven't found it to be that helpful for simple things I want to do.
    Thanks for any help you can provide.

    Hi perric,
    On the first issue about pictures.
    * You can set Firefox to ask you where to save the file rather than always using the Downloads folder. This article describes how to set that: [[Startup, home page and download settings]].
    * When you say "there is no place to indicate the type of file, such as jpg etc." is the problem that Facebook isn't including that in the file name and you need to add it? If you could explain this part a bit more.
    * Another way to save pictures is to use the Page Info dialog. While on the page with the images, you can use either:<br><br>* right-click and choose View Page Info > Media<br>* Alt+t (open the classic Tools menu) > Page Info > Media<br><br>As you scroll down the list, you can preview and use the Save As button to save those "hard to get" images.
    On the second issue about videos.
    * Do you see a gray space indicating that you need a plugin? Or does the video not play when you click it? Please explain what you're experiencing in a little more detail.
    * In case you do not have the Flash player plugin for Firefox, you can get it here: http://get.adobe.com/flashplayer/ (make sure to uncheck any unwanted extras that Adobe might offer). If you do the download from IE, you won't get the right version. In that case, use this link to choose the non-IE plugin: http://get.adobe.com/flashplayer/otherversions/
    Hope that helps a bit.

  • Linked gif in DIV w/ Flash

    I have a DIV with a placed Flash instance. Underneath that instance I want a small gif file to contain a link. This setup worked fine when the layout was in tables. Converting to DIVs the link is not recognized (doesn't show as clickable) If I place it anywhere else on the page is works as it should. If I take the Flash instance out of the DIV, it works. So what is causing the link not to work with Flash in the DIV and what can I do to solve the issue?
    Thanks.

    Paragraphs and headings are block level by nature.  I would never recommend using a <span> tag to replace a <p>, <h1>, <h2>, <h3>, etc... 
    Headings and paragraphs impart semantic meaning to content.  Span tags impart no such meaning.   Spans are mainly used as hooks for when you need a special style within a line of text.
    Example:
    <p>Some normal text... <span style="font-size: 55px">Some really big text in a span</span> and some more normal text.</p>
    <p>Some normal text... <span style="color:red">Here is some red text in a span</span> and some more normal text.</p>
    Nancy O.

  • Shockwave won't play linked Director files from server

    I created a bunch of director files for the course content of my  class. All can be accessed from a contents file. When I created an html  contents file on my desktop (in the same folder as the linked director  files), the contents pages would open in shockwave in my browser (both  Firefox and Safari) and then by clicking on a link other director files  would open and play. However, when all these files were place on our  server (in the same folder), only the contents pages would open and we  get an error message saying the dirctor files cannot be opened. I think  this means it sees them, but can't open them.
    Help!

    Hi Sean
       sorry if my e-mail was a bit whiney, but I got a bit frustrated, 
    having tried to use the Adobe website for help and then trying for 
    help over the phone. Adobe has this nice thing where they will call 
    you back instead of you sitting on hold, which I used at first, but 
    you get called back by a machine, not a person, then you subsequently 
    get a progression of robocalls with nobody on the other end! I 
    finally just sat and waited and got a person, who seemed 
    knowledgeable and nice, but couldn't help me without a payment. So, I 
    would greatly appreciate any help you could provide!
           What I have is this. I constructed a "book" in CD form for my 
    class. This is based on CDs that Mike Coleman and I published a few 
    years ago. A picture of the contents page is shown below. Each topic 
    is in a separate Director file, each with its own casts. We made a 
    lot of animations, some in Flash and some in Quicktime that appear in 
    each topic. I redid everything in Director 11.5, changing text 
    spacing because of the way things get altered when things get played 
    in Shockwave! When I click on one of these subtopics, the 
    corresponding Director file opens. I accomplished linkage this by 
    appending a behavior to the text, "Play Movie X". I then originally 
    made a projector file of the contents page and distributed the CD to 
    my class free (textbook prices are getting out of hand). Now I want 
    to put it on the web, because I'm tired of burning CDs and we're 
    getting students from other locations taking the course on-line. So 
    within the folder on my desktop that held all the Director files, I 
    made a second folder "dswMedia" into which I placed all the 
    animations. I also linked all the animation casts to the Contents 
    Director file. I then constructed a Contents.html file and 
    Contents.dcr file using the Publish commands in Director. When I 
    click on the Contents.html file within my main folder (the one 
    holding all the Director files and the dswMedia file) the page opens 
    nicely in my browser (Firefox) and I can play all the Director movies 
    by clicking on each topic. All the animations play beautifully. 
    Great , I thought, I'm in business. I then took the files to our 
    media guy who put it on the server, in the same form as on my 
    desktop. If we click on the Contents.html file through the web it 
    opens. Clicking on a topic does not open that Director Movie. The 
    error message is not that it can't find the movie, however, but that 
    it can't open it. Everything works just fine on our media guys 
    computer,  we only have a problem when we attempt to use this stuff 
    through the web. (Our web guy's computer does not have Director, so 
    that's not the issue).
          Any guidance would be greatly appreciated!
             Regards
                    Paul

  • CS3:How to link a file to a InDesign document?

    Hello all,<br /><br />I looked at in the LinkWatcher sample code to get an idea how to link a file to a document, I came up with the code below, the last line of code needs pageitemUID instead of pageUID which I  used it here:<br /><br />IDFile outFile = Utils<ImyUtils>()->getMyFile(); // it reads the file <br />InterfacePtr<IDataLinkHelper> dataLinkHelper(::CreateObject2<IDataLinkHelper>(kDataLinkHelperBoss)); <br />InterfacePtr<IDataLink>      dataLinkNew(dataLinkHelper->CreateDataLink(outFile)); <br /><br />IDocument* theFrontDoc = Utils<ILayoutUIUtils>()->GetFrontDocument();<br />IDataBase* database = ::GetDataBase(theFrontDoc); <br /><br />InterfacePtr<IDocument> piDoc(theFrontDoc, UseDefaultIID()); <br /><br />InterfacePtr<IPageList> pageList(piDoc, UseDefaultIID()); <br />     <br />UID pageUID(kInvalidUID);<br /><br />if (pageList->GetPageCount() >  0)<br /> {<br />     pageUID = pageList->GetNthPageUID(0);<br />}<br />// I try to link the file to the front document, although it say pageitemUID, as a second //parameter, but I don't want to link the file to a particular page item. is this a right thing to do?<br /><br />int32 result = dataLinkHelper->AddDataLink(database,pageUID, dataLinkNew); <br /><br />as I execute the code it doesn't add the file in  Link palette in CS3, but when I pass a UID of one page item such as text frame, it will add the name of file to link palette with a "1" comes to  end of row that shows how many times this file was included in the frame. but in case I have not a page item can I use the pageUID instead ?<br /><br />Thanks In Advance,<br />Mor

    Lee,
    Sorry I think I didn't use the right terminology, somehow I want to include/link the file (not with menu item 'place') programmatically in my current open Indesign document, then I expect to see the filename in Link palette. I can do this with linking to a page item in doc but I don't want to assign it to a particular page item, rather I want to assign it to doc. Is any approach to do it?
    Thanks again,
    Mor

  • Safari opening linked .zip files directly from DVD instead of downloading

    Dear all,
    Safari opening linked .zip files directly from DVD (via Windows explorer) instead of downloading it tru browser click - it's working just fine in FF, Chrome IE. Is this a known issue? or something can be done by modifying browser setting/pref.
    Expecting more advise on this.
    Configurations: Windows XP
    Safari: 5.1.7
    Note: ensured there is no space in the file path, just linked the .zip file using href attribute!
    Also tried with .xls, .doc insted of .zip same issue appearing.
    Thanks in advance,
    Thirilog

    Hi
    appzapper & such are pretty flaky at removing things usefully, imo.
    Use the uninstaller for speed download - http://www.yazsoft.com/products/speed-download/faqs/?how-to-un-install-speed-dow nload-properly
    or get a hold of FindAnyFile or easyfind & search for Growl & Speeddownload & yazsoft - but from all I hear, the uninstaller works fine.
    Failing that, Safari's settings plist file isn't in caches
    Home/Library/Preferences/com.apple.safari.plist
    is the place
    & if you're still stuck, test & maybe download another browser using a New User Account.

  • Evaluation RH8, problem with links to files on network

    Hello,
    We are evaluating RH8, and I am trying to build to AIR with Robohelp and all my links pointing to either Word or PDF files on network drives won't work when I create the AIR standalone, I click them and nothing happens. If I compile them in HTML or Winhelp, the links are working.
    Is there anything I'm doing wrong ? or does the AIR output won't support links to files on network shares ?
    I've spent quite some hours trying to figure it out on my own, but I'm really not used with RH8, even though I'm quite fluent in many other Adobe programs such as Photoshop and Dreamweaver.
    Any help would be appreciated,
    Thanks in advance,
    Chris

    OK I've tried again with limited success. Links to \\Server_Name\Share_Name won't work (at least for me). Links to mapped network drives as you suggested, work differently, meaning at least I get an error message (Error #2044: Unhandled error:. text=PDFError). In this thread (http://forums.adobe.com/thread/110019) I see reinstalling the Adobe Reader might do the trick, so it's what I will do next.
    The main links to documents will be on a sharepoint server, so they will be http:// links and it should work just fine.
    Thanks for your help,
    Chris

  • Download Presenter trial in your website but when I published object scorm in zip file miss some important file such as ismmanifest.xml. In fact Moodle upload is wrong! Is it a bug or what? Thank you.

    Download Presenter trial in your website but when I published object scorm in zip file miss some important file such as ismmanifest.xml. In fact Moodle upload is wrong! Is it a bug or what? Thank you.

    You can publish Adobe Presenter Projects to your Moodle LMS (this will work for many other LMS’ too.)Please follow the steps as mentioned in the blog linked below.
    https://blogs.adobe.com/presenter/2013/08/step-by-step-how-do-i-publish-my-presenter-cours e-to-my-learning-management-system.html#more-6260
    Regards,
    Rajeev.

  • Link to file hyperlinks

    How to create an InDesign document with link to file hyperlinks in InDesign to PDF and still be able to use via a USB flash drive?

    Hi Pusman,
    While setting up the links, if you choose to open the file in a new window then you won't face this issue, then you can simply switch to the previous file and bookmark view will remain as it is.
    Does that helps with your query?
    Regards,
    Rahul

Maybe you are looking for

  • MBean not found error while creating Resource Adapter

    Hi, During the post installation configuration of Oracle Identity Manager, I had to create Resource Adapter as mentioned in the steps below. In the final step, when I click OK, I’m getting an error message “An error has occurred. MBean not found” (I

  • Accordion Jumping! HELP!

    I'm having a lot of trouble with my accordion. It is a long list of panels, so you have to scroll to see the bottom. The problem is, any time you click a tab, it throws you back up to the top of the page. I want it to stay on the tab the person click

  • No audio when using headphones.

    Has anyone had issues when using headphones with the android maxx?

  • Enterprise Services without ESR and EHP - is it possible

    Hi All, I am investigating if it is possible to setup Enterprise services without having ESR in our landscape. We also do not have EHP installed in our ERP system. We have SAP ECC 6.0 and PI 7.0. I would like to install separate ES that I would like

  • How can i sync my photos from my i phone 3 to my computer

    I already tried i tunes but i cant figure it out i still cant transfer the photos to my computer