Navigating between two movie clips

Within my animation I have two movie clips, one movie clip "clipA" runs to a certain point then a series of buttons appear when you hit the button it loads another movie clip "clipB" into the first movie clip "clipA".
Whith in the second movie clip "clipB" I would like to be able to, at a certain frame navigate to a different frame within "clipA" is this possible to do with actionscript 2.0

In clipB's main timeline you can use _parent.gotoAndPlay.... the _parent targets clipA

Similar Messages

  • How to define the dynamic navigation between two component in web ui

    Hi All,
    I have a requirement to create a new assignment block in accounts overview screen .
    1.Created new view(Table view) in the BP_HEAD component.
    2.Created new button on the table view toolbar .
    3.If the user clicks the new button it should navigate to interaction log component(BT126H_CALL).
    Please hekp me step 3 how to do .
    I have checked planned activity assignment block in the account but is dynamic navigation.
    Please explain me how to define the dynamic navigation between two components.
    What is window delegate .
    Thanks,
    Venkyy

    Hi ,
    Kindly follow the link , this will be helpful for your issue :
    http://wiki.sdn.sap.com/wiki/display/CRM/CRM-NavigatingtoyourcustomBSP+component

  • Use more than one transition in the same time between two video clips?

    Dear Premiere Pro programmers,
    Could you please create a way to use more than one transition in the same time between two video clips without exporting to media, or creating new sequence, or using another layer (adjustment or transparent)?
    Message was edited by: Kevin Monahan
    Reason: Next time, create a more descriptive title.

    Hi Aqsa Nori,
    I'm not sure what you are imagining, but it might be possible to achieve by key framing effects. Can you tell us what you want to do? Also, please feel free to file a feature request: http://adobe.ly/feature_request
    Thanks,
    Kevin

  • Transition between two movies

    I would like to add a transition between two movies in the
    following AS3 script that otherwise works fine. Any help is
    appreciated:
    package {
    import flash.display.MovieClip;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import fl.controls.listClasses.CellRenderer;
    import fl.controls.ScrollBarDirection;
    import fl.video.VideoEvent;
    public class VideoPlaylistSeq extends MovieClip {
    private var xmlLoader:URLLoader;
    public function VideoPlaylistSeq():void {
    // Load the playlist file, then initialize the media player.
    xmlLoader = new URLLoader();
    xmlLoader.addEventListener(Event.COMPLETE, initMediaPlayer);
    xmlLoader.load(new URLRequest("playlist.xml"));
    // Format the tileList, specify its cellRenderer class.
    //Width and length of bigger thumb box
    tileList.setSize(300, 515);
    //Width for text box where thumb text is placed
    tileList.columnWidth = 230;
    tileList.rowHeight = 60;
    tileList.direction = ScrollBarDirection.VERTICAL;
    tileList.setStyle("cellRenderer", Thumb);
    public function initMediaPlayer(event:Event):void {
    var myXML:XML = new XML(xmlLoader.data);
    var item:XML;
    for each(item in myXML.vid) { // populate playlist.
    // Get thumbnail value and assign to cellrenderer.
    var thumb:String;
    if(item.hasOwnProperty("@thumb")>0) thumb = item.@thumb;
    // Send data to tileList.
    tileList.addItem({
    label:item.attribute("desc1").toXMLString(),
    label:item.attribute("desc2").toXMLString(),
    data:item.attribute("src").toXMLString(),
    source:thumb});;
    // listen for complete event; play next video
    function vidComplete(eventObject:VideoEvent):void {
    if(tileList.selectedIndex < tileList.length-1){
    tileList.selectedIndex = tileList.selectedIndex+1;
    } else {
    tileList.selectedIndex=0;
    tileList.scrollToIndex(tileList.selectedIndex);
    myVid.play(tileList.selectedItem.data);
    // Select the first video.
    tileList.selectedIndex = 0;
    // Listen for item selection.
    tileList.addEventListener(Event.CHANGE, listListener);
    // And automatically load it into myVid.
    myVid.source = tileList.selectedItem.data;
    // Pause video until selected or played.
    //myVid.pause();
    // Listen for end of current video, then play the next
    myVid.addEventListener(VideoEvent.COMPLETE, vidComplete);
    // Detect when new video is selected, and play it
    function listListener(event:Event):void {
    myVid.play(event.target.selectedItem.data);
    // listen for complete event; play next video
    function vidComplete(eventObject:VideoEvent):void {
    if(tileList.selectedIndex < tileList.length-1){
    tileList.selectedIndex = tileList.selectedIndex+1;
    tileList.scrollToIndex(tileList.selectedIndex);
    myVid.play(tileList.selectedItem.data);
    }

    Let us know.
    There are bluray menu limitations; they don't come up often, and I do not understand some of them. For example, there is a limit in Encore of 32 buttons per menu. (That does not appear to be a problem for you.) There is a limit to the size of all interactive graphics in each title (which includes a menu as a title). I don't understand that one.
    I would do a test project, starting over, and building a less complex project that still has the essential features.
    I have found Total Media Theater 5 to perform very much like a bluray player. But, yes, ultimately you've got to burn to a disk and test it on a bluray player.

  • Navigating Out Of Movie Clips

    Hi, i have a presentation set up whereby I have 2 scenes,
    Intro Movie and Introduction. I have a Movie Clip in Introduction
    with a number of navigation buttons in it for within this
    movieclip, but i need one button to replay the Intro Movie in the
    other scene. Can someone help me out with some actionscript for
    this? Any help would be greatly appreciated

    it goes like this - the main timeline is the _root of the
    movie. Anything on that timeline has a . after it. So if you have a
    movieclip called "clip1" and inside of that another movieclip
    called "subclip" then the full path to that movie is:
    _root.clip1.subclip
    From the subclip movie if you want to control the main
    timeline you just write something like this:
    button1.onRelease = function(){
    _root.gotoAndPlay(1);
    No matter where that button is located (inside a clip inside
    a clip inside....) it will still control the main timeline.
    Hope that makes sense.

  • How to Compare colors of two Movie Clip?

    Hello every one,
    I have a movie clip which is a line. This movieclip is rotating 90 degree on mouseclick I have taken 3 movie clips and  i want to change their color on some condition.
    if 1_mc hit 2_mc then color of both will change into red and if not then color of both will remains Black.
    if 2_mc hit 3_mc and color of 2_mc is red then color of 3_mc will change into red. otherwise color of both 2_mc and 3_mc will remains black.

    Well i got success in that...this is the another problem.
    > when 1_mc is connected with 2_mc that time color will be red.
    > when 1_mc is connected with 2_mc and 2_mc is connected with 3_mc then color of 3_mc will be red.
    > if 1_mc is not connected with 2_mc then color of 2_mc will be black. hence color of 3_mc will also be black.
    here on 3_mc i want that if it is connected with 2_mc and color of 2_mc is red then and only then color of 3_mc will change into red. otherwise it remains black.

  • Navigation between  two applications under a single webdynpro project

    Hi All,
    Here i needs to work with a webdynpro project which has two application which needs navigation one view form the first application to one view in the next application. I have already tried with "EXIT URL" concept and its working fine. Is there any alternative way to accomplish that task. I am looking for valuable reply from you.
    Regards
    Ravi

    Hi Ravi..
    Try this link..
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/library/webdynpro/wd%20java/wd%20tutorials/inter-application-navigation%20in%20web%20dynpro.pdf">Application Navigation</a>
    Urs GS

  • Stopping Navigation Between two items

    Dear All,
    i have two items in JSF Page and first contains contains validation (with auto submit),
    if i am trying to navigate from first two second with false data , first item will be read , but navigation still going second one, i need to stop this navigation.
    Please Advise

    I believe that in general you should not design web application like that.
    In general you cannot prevent user to navigate away from web pages and components.
    He can allways close explorer or type a diferent url.
    For specific cases though you can do it by java scripts and there is an example at Andrejus blog:
    [http://andrejusb.blogspot.com/2008/04/adf-faces-rich-client-complex.html]
    Yet this would require a lot of effort to do it in all validations.

  • Navigation between two webdynpro applications

    Hi Colleagues,
    Please let me know some workaround for the below requirement
    here i have two webdynpro application, where i have to call the second application from a button of first application by passing a parameter
    please let me know hoe to proceed here
    i have some information attached below....Is it the right way to do it? or am i missing somethinng here
    String deployableObjectName =  wdComponentAPI.getDeployableObjectPart().getDeployableObjectName();
      Map urlParameters = new HashMap();
      try {
          urlParameters.put("A",CVNR);
    WDDeployableObjectPart deployableObjectPart =WDDeployableObject.getDeployableObjectPart(
    "a1s~cc~checkprerequisites","Preq",WDDeployableObjectPartType.APPLICATION);
    String urlToTargetApp =WDURLGenerator.getApplicationURL(deployableObjectPart, urlParameters);
      IWDWindow window = wdComponentAPI.getWindowManager().createNonModalExternalWindow(urlToTargetApp);
    window.show();
    catch (WDURLException e) {
                wdComponentAPI.getMessageManager().reportException(e.getLocalizedMessage(), false);
                } catch (WDDeploymentException ex) {
                     wdComponentAPI.getMessageManager().reportException(ex.getLocalizedMessage(), false);
    Thanks & Regards
    Swetha

    Hi Swetha,
    Please try this code in the application which is now launched from the 1st application. You can write this code in the wdDoinit() method OR the firstTime loop of the wdDoModify function:
    String applicationParam = WDWebContextAdapter.getWebContextAdapter().getRequestParameter("A");
    Here "A" is the name of the attribute in which you are setting the parameter value CVNR.
    You will get the URL parameter you have passed to this application from the first application. I hope this solves your problem, if yu have any issues please contact back.
    Thanks and Regards,
    Pravesh

  • Navigating between two topics in TOC

    I use RoboHelp X5. I am creating a WebHelp project.
    There are two topics and both are linked to the TOC. Topic1
    in under book1 and topic2 is under book2.
    There is a hyperlink from topic1 to topic2.
    When I click on the hyperlink to navigate to topic2, book2
    does not open in the TOC. It only opens topic2.
    I want book2 to expand and highlight topic2
    How do I enable this? Please help!

    Welcome to the forum.
    You don't say whether or not you have AutoSyn enabled. That
    is essential for what you want.
    You also don't say which browser you are using. If it is
    Firefox, it is a known problem. See Browsers on my site.
    In Adobe RH7 it is fixed. At least it is on my machine and on
    others that I have had some tests run on. However, there are a
    couple of reports of people still encountering the issue.

  • Screen navigation between two components

    Hi,
    I have created 2 web dynpro component 1 and component 2.
    Component 1 has 1 view for ex: ABC and Component 2 has 2 views(XYZ1 and XYZ2, XYZ1 being the main view.)
    We have a requirement where we need to navigate from Component A iview ABC to component B Iview XYZ2.
    But after doing the component usage though I am able to navigate from Component 1 to Component 2 but it opens the main view which is XYZ1.
    Is it possible can I directly move to view XYZ2 of component 2 from view ABC of component1.
    Regards
    Shakti

    Shakti Parwanda wrote:
    Hi,
    >
    > I have created 2 web dynpro component 1 and component 2.
    > Component 1 has 1 view for ex: ABC and Component 2 has 2 views(XYZ1 and XYZ2, XYZ1 being the main view.)
    >
    > We have a requirement where we need to navigate from Component A iview ABC to component B Iview XYZ2.
    >
    > But after doing the component usage though I am able to navigate from Component 1 to Component 2 but it opens the main view which is XYZ1.
    >
    > Is it possible can I directly move to view XYZ2 of component 2 from view ABC of component1.
    >

    > Regards
    > Shakti
    I can think of 2 possible solutions.
    1. Create 2 windows in comp-2  - Window1 has XYZ1 as default and window2 has XYZ2 as default.  Navigate to the appropriate interface view according to your requirement.
    2. You can introduce a Channel view , in this view you create 2 plugs ( to_view1, view 2), use this view as default view.
        create a plug parameter to identify which view (say iv_view type string ).
        create a event in component controller with parameter iv_view, create a method to fire this event and make it public.
        fire this event by calling this method from window inbound plug.
        You should subscribe this event in channel view by creating event handler method .
        Fire outbound plugs according to the event parameter iv_view.

  • FPM : Navigation Between two Application

    Hi All,
    I am developing an FPM application where, i need to navigate my control to another FPM application.
    I have created navigation using Launchpad (LPD_CUST), it is perfectly working fine while testing but when we attached these component on portal Navigation is not working instead it is giving error "
    Page not found. Refresh the page or try again later. If the problem persists, contact your Portal administrator for assistance.
    Please guide me on this.
    Thanks In Advance.
    P$G.

    Hi,
    Refer this link -
    https://wiki.sdn.sap.com/wiki/display/WDABAP/ExampleforpassingvaluesfromoneApplicationtoanotherApplicationinWebDynproABAP.
    Regards,
    Lekha.

  • I am trying to put a transition between two clips and it's not going.

    I am working in FInal Cut Pro X and until now have had no problem putting trasitions into my timeline. Now I'm trying to put it between two video clips and it's not even moving there. Is there something I might have turned off that's not allowing me to do this

    You mean red like this
    That's the end of the media. No handles for an overlap. You can still do a full overlap transition, but it will shorten the project and shift the content.

  • Making Button links within a movie clip

    I am attempting to learn more Flash in general and
    actionscript in particular. I have created a flash piece that
    consists of 4 buttons within a movie clip that is being masked by
    another movie clip. One movie is the set of 4 buttons. The other
    movie is a "spotlight" that moves with the cursor. As the spotlight
    shines on each button, the button's text changes color and is "lit
    up".The Over state of each button is set to cause the button to
    change color. When I put a keyframe in the Down state of each
    button in order to add actionscript to create the action that makes
    the button clickable to take the viewer to a web page, it tells me
    that no actions can be given to this Down state. If I try using
    Behaviors to accomplish the same thing, it tells me that Behaviors
    are not supported. If I put actionscript into the actions layer of
    the timeline, it does not do the required action, i.e. clicking on
    the buttons leads nowhere. I have tried moving the actionscript
    before, between, and after the setInterval and setMasker
    actionscript that controls the interaction between the two movie
    clips (which work perfectly). I have tried inserting an actions
    layer into the button movie clip--same result--nothing. I have
    tried putting the actionscript in the second frame of the actions
    layer (both in the main timeline and in the movie clip), all to no
    avail. I did give each button an instance name and used them in the
    actionscript.
    Here is the actionscript I am using for one of the buttons:
    book.onPress = function(){
    book.getURL("http.//www.bainbridge.wednet.edu");
    I do not get an error message with this actionscript. I just
    don't get sent to the web page. I am using Flash 8.
    What else I should be doing? Is this a problem because the
    cursor is already attached to an action? I am sure that this must
    be possible, if only I knew more.
    Thanks for helping.

    do you have the actual mc identified as ( book ) on the root
    as well as the code i posted above? if so, are the code and the mc
    on the same frame? also you should note that the code posted above
    is meant to be placed on your root time line, not directly on the
    mc identified as ( book ). one more thing: you must target your mc
    ( book ) correctly.
    target like this:
    IF YOU ARE ON THE MAIN TIME LINE ( _root ):
    // if ( book ) is setting on the _root already then your
    target path is simply book.onRelease.
    // if ( book ) is setting inside another movieclip on the
    _root, find out what movieclip ( book )
    // resides in. that will now be the first part of your target
    path.
    // next find out if ( book ) resides in yet another
    movieclip. if so, that will be the next part of
    // your target path.
    // continue this until you reach ( book ). the entire path
    you took to reach ( book ) is your
    // target path.
    // you can also click on the target icon in your actionscript
    pane to insert a target path for
    // your movieclip.
    here is an example in which ( book ) resides inside another
    movie clip ( yourMovieClip ) on your _root:
    yourMovieClip.book.onRelease = function () {
    getURL("
    http://www.cnn.com/");

  • Adding Slo Mo to a clip that's between 2 other clips? Not working Correctly

    Hi,
    I have a timeline full of clips.
    I inseet a clip that is 4 seconds long between 2 clips that are already on the timeline.
    I want to make the inserted clip 8 seconds long,
    I highlight that clip in the timeline, go to my "Speed/Duration", the dialog box opens and I change the time to 8 seconds or 50%.
    On the timeline, the top of the clip turns red, like it needs to be rendered, the clip now says it's 8 seconds, but it is still only 4 seconds.
    Why?
    When I take that same clip and put it on the end of the timeline where there is no clip in front or behind it and I change the speed, it works correctly.
    Why?
    Can you insert a clip between two other clips on the timeline and perform a "slow motion?" The clip should get bigger and all rest of the clips should all move down to the right.
    Why does this not work in Premiere Pro CS 5.5?
    Thanks in advance.

    Thanks everyone,
    I come from Final Cut 7 and when I do a slo mo it just moves everything down to the right on the timeline. That is what I am used to.
    I just did it in Premiere and checked the Ripple Edit check box in the Speed Duration Dialog box and then add slo motion, , and it did move everything to the right, but I had to render all of the stuff that needs rendering all over again. Don't want to do that everyime I change speed on a clip.
    Thanks again.

Maybe you are looking for

  • How can I delete all email in mail app?

    Now I have 10,000 mails in mail app that I want to delete.  I try to use this method "Edit, Mark all as read, Edit, select first message, hold down Move, deselect message, unpress Move" but no luck.  All mail will return to inbox after a second.  PS:

  • Portege 3440 CT - need driver for external CD-ROM

    Hello I have installed windows xp + sp2 on Portege 3440ct and PCMCIA card where is connect CD-rom is not recognized. I can't find driver here, anyone can help me? Thanks

  • English to Arabic Text

    Hi, How do you simply display Arabic text in ILL CS3. I'm Using a Mac 10.5.6. The text has been supplied correctly as outlines in Arabic, but I want to reflow the sentences, and would like to make these changes. When I open the file that hasn't been

  • Number Format Model (Percent Sign)

    Hi all, I am hoping that someone will be able to assist me with a Number Formatting issue I'm experiencing using APEX 3.0.1. I have a report display a financial amount and a percentage column and I want to display totals for both these columns with a

  • Where to install ARD Admin?

    Here at my college we purchased a G4 Xserve and Apple Remote Desktop. The server will be tied in to a Windows Active Directory for authentication and our distribution install packages for the Macs will be kept on the server. My questions to everyone