Linking to a point on the timeline from a separate html page

Hi,
I'm using Edge Animate 1.0 in windows Vista.
I want to link from an html page to within a point (label) on the timeline. What code would I need to put on the button?
John

worked a few months on an js file, to make this kind of stuff alot easyer for beginners and a timesaver for an experts (simplify and less coding for edge animate)
will be released over a few days

Similar Messages

  • External Link to a point on the timeline

    I would like to find a way to link to a specific frame in the
    _root time line from an external link. Is that possible?
    Thanks,
    Mike

    The way to do that would be to retrieve the target -frame as
    as URL-variable (the stuff behind the ? in some URLs) and then
    transmit it to flash via server-side logic or java-script as a
    flash var.
    Then your flash can check for the existence an/or value of
    the target-frame variable and jump to the desired frame or
    not!

  • Navigate to point on Edge Timeline from a menu outside of edge

    Is it possible to navigate to a point on the timeline from a menu that is outside of the edge animation?
    I have a file set up that has about six screens on it.  Each screen represents a different navigation tab.  The actual file has left and right buttons that create a scroll effect either right to left, or in reverse.  This works fine.  Each transition is marked with a label, such as "Slide01", "Slide02" etc and I am using  | sym.Play("Slide01") | to good effect.
    What I need to do though is create a menu on a web page that takes a user straight to the correct point on the animation.  For example, the second navigation option would take them to the second screen of the edge file.
    Any help would be greatly appreciated.

    We ended up using the following code
    $('#test').click(function(){
    var Comp = AdobeEdge.getComposition('EDGE-XXXXXXXX');
            Comp.getStage().getSymbol("SYMBOLNAME").stop("FRAMELABEL");
    You can replace .stop() with .play() depending on what you want the movie to do.
    We're currently working on parsing a URL to the movie so that you can navigate to a specific part of the animatio when you land on it from another page.  This may prove interesting for pre-loaders though.

  • How do I find a previously passcode to link a wireless keyboard (Model A101urs6) to a Mac Power Book G4 running 10.5.8.  The keyboard was linked at one point in the past, but then not used.  When I am trying to hook it up now, it requires the passcode.

    How do I find a previously passcode to link a wireless keyboard (Model A101urs6) to a Mac Power Book G4 running 10.5.8.  The keyboard was linked at one point in the past, but then not used.  When I am trying to hook it up now, it requires the passcode.  Where can I find this, or is there a general number I can use?

    Hello, and welcome to Apple Support Communities!
    Try entering four zeroes.

  • Moving the timeline from a loaded swf file

    Hi,
    I have been at this problem for awhile now.
    I have a two swf files, whic are loaded using ths code as an example:
    stop();
    var req:URLRequest = new URLRequest("Enchilada_A.swf");
    var loader:Loader = new Loader();
    function imageLoaded(event:Event):void {
        ldContainerB.addChild(loader);
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
    loader.load(req);
    The first one is triggerrd by a MC button that is on the timeline.
    That first swf loads fine.
    At the end of that file(which is short animation)
    I have code that says:
    MovieClip(parent).gotoAndStop("frameThree");
    I have also tried:
    MovieClip(root) and
    if (movie Clip is parent) {
    MovieClip(parent).gotoAndStop("frameThree");
    and/MovieClip(parent).nextFrame();
    I have also tried placing this. or root. into the code.
    I am not talking to the timeline from this swf file.
    Once the timeline moves to the next Frame the new swf file can load.
    My solution was to combine both swf files into one, which loads from the timeline button.
    It works and I can gt by but I really woud like to learn how to load a swf and talk to the timeline fro more flexibilty.
    I'm out of strategies.
    Is my code in the wrong place(at the last frame of the animation?
    Should it be written on the timeline by creating a new var that has a function once the animation is completed.
    Any suggestions and/or commens would be greatly appreciated.
    Thanks.

    Thanks,
    I finally had a chance to get back to this project and used your suggestions, whichare definitiley helpful. I also, created a new and very basic version of the project so I could easily see what was happening.
    This is the code that works:
    stop();
    MovieClip(parent.parent).nextFrame();
    trace(container_mc);
    I'm still trying to understand how the child parent relationship is working but this will get me going in the right direction.

  • "jump" points on the timeline

    I'm kind of new to iMovie, and I'm working on a project where I'd like to set points on the Timeline where the movie will automatically jump to on a certain keystroke during playback. I'd like to be able set up several within the same file. Does anyone know of a way to do this, with iMovie or any other Mac application?
    I'm trying to sync prerecorded film to live music (with fluctuating tempo) as closely as possible, so I need to set up several points where a significant event in the music will be matched exactly to a complementary event onscreen.
    Thanks very much!

    Hi Martin
    this could help you starting. For the case you can't open LV 8.2- VIs, i attach the BD- picture.
    greets, Dave
    Message Edited by daveTW on 06-14-2007 10:26 AM
    Greets, Dave
    Attachments:
    play sound part_FP.png ‏10 KB
    play sound part.vi ‏50 KB

  • How to stop the Browser from caching my web pages

    Hi There
    Can anyone tell how to stop the browser from caching my jsp pages
    I am using
    <%response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", 0);
    %>
    but this does not work anduser is able to go back to the previous page
    which i dont want and i want the browser to display the message the page has expired
    Help appreciated
    Thanks
    Mumtaz

    response.setHeader("Cache-Control", "no-cache");
    response.setHeader("Pragma", "no-cache");
    response.setDateHeader("max-age", 0);
    response.setDateHeader("Expires", 0);
    I have cut paste the code from my jsp which is working. There is one additional line. I do not know if that is the cause but there is no harm in trying that out.
    Srinivasan Ranganathan

  • How to get the source code of an HTML page in Text file Through J2EE

    How to get the source code of an HTML page in Text file Through J2EE?

    Huh? If you want something like your browser's "view source" command, simply use a URLConnection and read in the data from the URL in question. If the HTML page is instead locally on your machine, use a FileInputStream. There's no magic invovled either way.
    - Saish

  • How do I see the source code of a html page?

    In previous versions it was possible to read the source code on a html page from "view" menu. It is not longer there. How do I read code now?

    You're welcome

  • How to get the source code of an HTML page in Text file Through java?

    How to get the source code of an HTML page in Text file Through java?
    I am coding an application.one module of that application is given below:
    The first part of the application is to connect our application to the existing HTML form.
    This module would make a connection with the HTML page. The HTML page contains the coding for the Form with various elements. The form may be a simple form with one or two fields or a complex one like the form for registering for a new Bank Account or new email account.
    The module will first connect through the HTML page and will fetch the HTML code into a Text File so that the code can be further processed.
    Could any body provide coding hint for that

    You're welcome. How about awarding them duke stars?
    edit: cheers!

  • To know the Status code of a HTML page using Javascript

    To know the Status code of a HTML page using Javascript

    Hello,
    I am not sure to understand, which status are you talking about? The HTTP Status?
    If your javscript is executed it is more or less sure that the HTTP Status is 200 since the request is back to the browser.
    or are you talking about this is in the context of a XMLHTTPRequest call ?
    Regards
    Tugdual Grall

  • How to start from a specific point on the timeline

    I have a horizontal list of image thumbnails, there are 21 thumbnails and only 7 are visible at one time and scrolls back and forth. It works fine.
    However, when I choose an image that is not in the first seven, say the 8th image, the page loads and the thumbnails goes back to the beginning images (undesirable). When the 8th image page is shown I would like the thumbnails to start at the eigth image, NOT from the beginning again.
    I had the animation positioned to the eight image for the start, with the first 7 off to the left and the second 7 off to the right. But when I saved and loaded it into the page, it just starts from the begining.
    How can I start the thumbnails from a specific desired position, such as the 8th image or the 15th image depending on the page?
    Thank you for any help.
    Anthony

    Hi Anthony,
    Thank you for your post.
    It would be better if you share any link or actual composition with us.
    Regards,
    Devendra

  • Can Archive Link be used to store the docs from SAP R/3 to KM Repository

    Hi All,
    Could you please advice whether archive link can be used to store documents from SAP R/3 enviroment to KM Repository. I have verified the storage types that archive link can support (Like HTTP Content Server) . But i couldn't see any storage type out there which is compatible with KM Content storage.
    If it is not possible, Could you please advice is there any way to store the documents from SAP R/3 environment to KM Repository.  
    Thanks,
    Sudheer.

    Hi Vivek,
    until now I haven't found a solution in detail, but some ways to verify the connection.
    I wrote about a tool that export the pdf to the filesystem, this wont be able at this time, it must developed, because a function will place the data in a sap table and from this point there we can export it on the filesystem after we've develop some abap code.
    I thought that was already available, but that what i found was the Report RSTXPDFT4 in the sap system, with this you can transfer spool to pdf and store the file in dialog on a filesystem, there will webdav be able to use, but it must be batch.
    So I search to a new way, I try to set the repository for rooms from persitence from db to fsdb, this works, but with our patch sp9 there are some errors, so i must patch it to sp 15/16 first.
    I'm able to make the netshare on windows, so the repository is reachable with an unc Path. If the report, that must be written can access such unc path (normaly thats works in the same domain) we can store the Files in the room workspace document folder an the portal synch job can make the rest. >IN the sap system there must be a table to map the rooms to the responsable folder.
    This way should be work, but it isn't fine for productive, I heard from a way to transfer the data with  java. In CRm System there should be a fnction from sap CRM_ISA_ORDER_CONVERT_TO_PDF and the isa use the java-stream to transform it in pdf, but this is nothing for me, that must be checked from a java developer, a colleague of my will check this.
    Best regards
    Thorsten

  • Looking for some help with the Timeline from SIMILE

    Remember this widget... An interesting widget for displaying timelines
    Well I am trying to use is and have now got it working. I what to have a hyperlink to the page in my application that is the detail of the pice of the row in the timeline.
    Any ideas.
    Edited by: Chris Wendell on Nov 17, 2008 4:41 PM

    I got a link to a 2nd Apex page working some time back. I included my link by appending something like this to the main chunk of text:
    -- 2nd page is "2"
    htf.escape_sc('&lt;BR&gt;&lt;A HREF="f?p='||v('APP_ID')||':2:'||v('SESSION')||'::'||v('DEBUG')||'::P2_ID:'||id||':" target="_blank"&gt;Edit&lt;/A&gt;')
    I think you could just use the documented "link" attribute though ( htp.p('link="' ||' http://www.yahoo.co.uk"'); )
    The final step I needed was to close the pop-up edit form after submit. Solution also came from this forum. On the page #2, Optional URL Redirect > URL > URL Target "javascript:{doSubmit('SAVE');window.opener.location.reload();window.close();}"
    Also - the 2nd page has an unconditional branch back to the main timeline page, so it refreshes after submitting the detail page.
    Edited by: maceyah on Jan 8, 2009 11:23 AM

  • Navigating the Timeline from Movieclip

    Hi there
    I'm hoping someone can help me with this. I have created a
    scrolling image gallery in Flash which works fine from the Timeline
    (Scene 1). Now I am using it inside a movie clip called gallery I
    need to know how to get it to load the images into the main loading
    area now that it is within a movie clip. The code that makes the
    images load into the loading area at the moment is this
    on(press){
    _root.the_entire_gallery.gotoAndPlay("pic5");
    I'm assuming that now it is inside a movie clip I need to add
    something other than _root. to get it to access the images but I
    don't know what. I've tried _parent but to be honest I'm clutching
    at straws as I don't really understand what it does.
    Hope someone can help.
    Thanks

    Hi there
    I have tried both the solutions you suggested without any
    luck. Is there a way I can send you a copy of the fla and you will
    be able to see how it is set up?
    Perhaps a simpler example is the button inside the gallery
    movieclip, this doesn't work from inside here either it has the
    following code on it ...
    on (press) {
    _root.gotoAndStop("sketchbook");
    ...that let's it work from the main timeline but now that the
    frame label "sketchbook" is inside the gallery movieclip how do I
    get it to reference that because nothing is happening as I take it
    _root. is pointing it to the main timeline?
    I have tried on (press) { gallery.gotoAndStop("sketchbook");
    I know it all works if I don't put it into a movieclip but I
    want to have everything neat and tidy on the timeline. It would
    really help to be able to send you the fla.
    Thanks, Jo

Maybe you are looking for

  • Collective invoice not working through VF04

    Dear All, Good Day!!! Please share your suggestions on the below issue, Our user has created two sales orders with reference to a contract and created two deliveries. All partners and other header data and item data is same except goods issue date. I

  • How do I insert a blank page if my group ends on an odd-numbered page

    I have a report that prints out information for 10 regions. We print this report double-sided and put it into a 3-ring binder with 10 divider tabs, one for each region. If the last page for a particular region is an even-numbered page, then everythin

  • Unable to install Reader X

    On installing reader X got error message download timeout

  • How do i move ipod songs to my mac?

    I have my classic 80GB iPod that is about 90% full of music, most of which is from my old Mac G4. I just purchased a new late 2012 Mac mini and am trying to backup/copy the songs from my iPod to my Mac mini's iTunes Media folder. I do not see any thi

  • Contact problem while creating account Web UI

    Hi everyone, I have a problem when I want to create a new account, starting from the detail view of an existing account. When I press the new button, the contact, marketing attributes and relationship are copied from the existing account. Those field