2 actions in one symbol

Hello,
I woulf like to have 2 actions in 1 symbol. (onClick)
The first one is doing a play.reverse  (it is inside "texte_Intro_Anim")
The 2nd is playing a another symbol (it is "Fleur_multicouleur_anim_aller" inside ""texte_Intro_Anim")
To be more clear I need : playReverse "texte_Intro_Anim"  and Play "Fleur_multicouleur_anim_aller" at the same time
Thanks in advance
Steph
the file : http://adobe.ly/IcYHct

Dear Stéph
i fixed your project, you had too many stop() action, i removed all of them be cause all of them was unnecessary, download your project and look over it to see how simple was this actions you wanted to achive !
note : dont use stop() actions at first start of your timeline, if you want prevent from autoplaying your timeline just go inside your symbol and uncheck Autoplay Option
Link to your Project : http://www.mediafire.com/download/mj1zww91bq7cjcu/Scene_anim_01.rar
if you had any question feel free to ask
Zaxist

Similar Messages

  • From one symbol to another....

    Hi There..
    Can i control one symbol from another symbol via Get Symbol?
    So far i have not been succesful.
    If one hold a button and anoher hold a light that has a on and off animation..
    How would the button action look?
    Thanks
    //Poul

    Paul-
    I've been working on this myself with a lot of help here!
    I think I know what you are trying to do:
    Create a symbol that has the on and off animation.  At the end of the animation add a "stop"  (<command T or control T in windows?). and click on stop.
    At the beginning of the symbol animation, add a label (command L) and give it a name, like "in" without the quotes.
    In the main timeline, add your symbol to the stage by clicking it in the library and dragging to where you want it to play.  Add a trigger and chose "stop" in the timeline.
    Now chose an action (click) by clicking on hte {} symbol to the left of the animation in the timeline, chose "+" then chose "click".  Then add the following line:
    sym.getSymbol("the name of your symbol you used in the timeline").play("in");
    That should do it :-)
    ps - This is the same as chosing "GetSymbol" and adding the  ".play (labelname"); at the end...
    James

  • OSB : How can we copy  actions from one project folder to other projects?

    How can we copy actions from one project folder to other projects in OSB?
    For eg:
    I have a service call out action in Project1/proxySer1
    I want to copy this to Project2/proxySer2.
    Espicially, in our case error handling callout is common to all of our projects and we should be able to copy from one to another.
    Edited by: user10367892 on Aug 20, 2009 12:28 PM

    Thank you for the reply.
    It was my fault. I was on two different servers, while i was doing this and so didn't work. But copy /past action works as you suggested.
    Can I select multiple actions from one stage and paste to different proxy service? I have too many options to copy/paste and hence I have this question.
    Is there any other way of copying all selected actions in one stage to another, but not the complete stage itselft?

  • How to do more than one action per one request ?

    1. I have taskflow with several actions. For example Page1 (action1) -> Page2, Page2 (action2) -> Page3. How can I move from the Page1 to Page3 without creating additional actions per one request?
    2. I have 1 unbounded taskflow, and 2 bounded. Unbounded (action1) -> Bounded1, Unbounded (action2) -> Bounded2. How can I return from Bounded1 taskflow and enter to Bounded2 taskflow via "action2" per one request?
    Can I flow through tasks virtually from the java code? Sweeping generalization: how to flow through taskflows like graph from some node to other using some path which contains several nodes.

    John Stegeman wrote:
    inooni,
    Unless I am misunderstanding you, you can create a control flow from Page 1 to Page 3. You could also do this with a global control flow case so as to avoid having to create one for each pair of navigations you want to do.
    JohnJonh, I have a lot of bounded tasks (tasks and pages generates automatically). It involves to create a lot of actions to navigate between pairs of them. I'm searching way to navigate without destroying bounded tasks structure.

  • In Windows 7 Professional, Firefox suddenly started using more than one symbol on the taskbar... Why?

    After installing Firefox it placed a symbol in the taskbar from which to launch it. When moving the mouse above this symbol it would then also display the various tabs that were open in the browser. So, the program was launched from and operating inside this ONE Firefox symbol on the taskbar... there was never (at any given point), more than one symbol.
    Now suddenly it started opening a second Firefox symbol in the taskbar in which the browser actually runs and displays the open tabs. In other words I now have one Firefox symbol in the taskbar to launch the browser, and another, second symbol in which the browser runs. I don't want this because it takes up too much space on the taskbar. How can I get back to keeping Firefox limited to one symbol on the taskbar at all times?

    Is the first icon "pinned" to the Windows 7 Task Bar in an earlier version? Could you try unpinning and repinning Firefox and see whether that helps?
    (I think someone posted this same question yesterday, but I can't find that thread at the moment.)

  • Can we perform two actions with one button with two clicks one after other?

    Sir,
    can we perform two actions with one button with two clicks one after other?
    I want that when I click an Add Button first time it add data to the database and when I click again this button it clear the form data to empty fields.
    Regards
    Tanvir

    In code it should be easy.
    The following code adds a button called butman with a text "ADD".
    It then registers a listener that will be called if the button is clicked.
    This listener then calls the runAddData method if you clicked on butman while it contained the "ADD" text and it will call the runClearData method otherwise.
    Therefore it will swap the button's functionality between ADD and CLEAR on every click.
    final Button butman = new Button("ADD");
    butman.setOnAction(new EventHandler<ActionEvent>() {
              @Override
              public void handle(ActionEvent t) {
                        if (butman.getText().equals("ADD")) {
                                  butman.setText("CLEAR");
                                  runAddData();
                        } else {
                                  butman.setText("ADD");
                                  runClearData();
                        } // END IF-THEN
              }});I hope this is what you wanted.
    Some extra food for thought.
    You might want to run the ADD and CLEAR methods in their own threads so that it can run in the back ground, without slowing down your user interface.
    I also like to rather reuse one button for multiple functionality in stead of making an application with hundreds of nodes only used rarely with masses of code to show and hide them if needed.

  • Use two actions in one form

    I want to use two actions in one form in struts,and without using javascript,is it possible?

    I want to use two submit:
    one is for adding message;
    another is for editing message.
    they must be in one form,but i dont know how to use
    two actions in one formHi,
    Hope this helps.
    cheers,
    jeric
    <html>
    <head>
    <title>decision</title>
    </head>
    <body>
    <br><br><br>
    <center><h3><u>Two submits, one form</u></h3></center>
    <%
    String userChoice = request.getParameter("decision");
    if( userChoice != null && userChoice.equals("add") == true)
        // forward to addMessage.jsp, for example, or whatever
    else
    if( userChoice != null && userChoice.equals("edit") == true)
         // forward to EditMessage.jsp, for example, or whatever
    out.println( "<br><center> the value of userChoice after selection is ... " + userChoice + "</center><br>");
    %>
    <center>
    <form method="post" action ="decision.jsp"> <!-- name of this page -->
        <table width = "50%" align="center">
             <tr><td width = "100%"><hr color ="red" ></td></tr>
              <tr><td height = "10"></td></tr>
             <tr><td align = "center">Do you want to <b>add</b> a message or <b>edit</b> a message?</td></tr>
             <tr><td height = "10"></td></tr>
             <tr><td align = "center">
                  <input name = "decision" type = "radio"  value = add checked>?add a message??
                  <input name = "decision" type = "radio" value = edit>?edit a message?
             </td></tr>
        </table>
        <br>
        <input type="submit"  value = " make your selection " >
    </form>
    <hr color ="red" width = "50%">
    </center>
    </body>
    </html>

  • How to replace one symbol with another?

    I have a symbol with some very basic animations. I would like to set conditions upon which one symbol is swapped out for a symbol in a library. Each symbol is the same size, but so far I can't seem to get this right. I've attempted createChildSymbol but nothing really works.  I've got it set up as:
    My Stage:
    container0container (rectangle)
    container1container (rectangle)
    container2container (rectangle)
    button1
    button2
    My library symbols:
    Symbol_1
    Symbol_2
    Symbol_3
    Symbol_4
    Symbol_5
    I want to be able to click button 1, and replace the container1>container with container1>Symbol2 and then play the animation associated with container1
    Can anyone advise me on this?

    Not sure if it is what you want but try this:
    sym.$('down_btn').click(function(){
    var firstS = sym.createChildSymbol("Symbol_1", "container1");
    sym.play('down1');
    sym.$('up_btn').click(function(){
    var firstS = sym.createChildSymbol("Symbol_2", "container1");
    sym.play('up1');

  • More than one symbol linked to class

    hey,
    how do i get more than one symbol linked to my class in my SoundClass.as file?
    thanks

    after playing around i ended up getting it after all but thanks for effort in answering ill mark as correct answer

  • Possible to transfer 'actions' from one computer to another/ and earlier CS3 actions to CC actions?

    Is it possible to transfer 'actions' from one computer to another/ and earlier CS3 actions to CC actions?

    you are allowed two installations and activations with each single user license.
    just use your installation cds and your serial number to install on your new computer.
    if you no longer need cs6 on your old computer or that old computer has your 2nd installation/activation, open one of the adobe programs and click help>deactivate.  you can then uninstall from your old computer.

  • Adding One Event (Touch) at Different Times to One Symbol?

    Hi,
    I've searched to see if this has been answered. However, nothing seems to solve it fully.
    The Problem:
    I have a tablet design with multiple pages (three pages) and only one arrow button to move between pages in the lower right corner of the screen.
    In theory, a user could press the button and the first page would deconstruct off and the next page would build on.
    I would like this to happen for every page so a user can tap through the entire experience without swiping, looping back to the first page. I've been able to easily set up getting from the first page
    onto the second (this uses the symbol for one touch event using triggers to start and stop).
    The Question:
    How to I make a button (symbol) do the same action at different times? For instance, from 1-2 seconds, the button action moves from page 1 to page 2. At 2-3 seconds, the button would then switch to be an entirely different click event for transitioning
    between pages 2 to 3?
    I just don't want to have to build multiple buttons and would rather solve this through code.
    Thanks for any help!
    Best,
    -S

    Hi,
    So, your arrow will have a click event with a conditional statement:
    if (sym.getDuration() == 1000) { sym.play() } //page 1 displayed
    else if (sym.getDuration() == 2000) { sym.play() }  //page 2 displayed
    else if (sym.getDuration() == 3000) { sym.play() } ;  //page 3 displayed
    I assumed you put triggers at 1000, 2000 and 3000 with sym.stop();

  • I can't delete just one symbol in Pages

    When I place a marker on the right of a symbol I want to delete and then press Delete an entire word is being deleted. Also when I want to mark just one or several symbols an entire word is being marked as well. I'm using the template "Storyboards". I feel it's going to occupy a big portion of my time trying to figure out on my own how to make this to act as I want it to, so I'd be grateful if you told how to delete characters one by one.
    Pages 9.1
    Thanks,
    I.S. 

    It might be worth checking the User Guide section on Placeholder Text which begins:
    Using Placeholder Text
    Templates contain placeholder text, which shows you what text will look like and where it will be placed in the finished document. Most placeholder text appears in Latin (for example, lorem ipsum) in the document body, text boxes, headers, and elsewhere. Other predefined text, such as the title of a newsletter, appears in the language you’re using.
    You click to select the placeholder text and then type your own text to replace it. The text you type keeps the same style and formatting as the placeholder text. If you don’t want to use the style and size of fonts the placeholder text uses, you can change the selected text by clicking the font family and font size controls in the format bar.
    Here are ways to work with placeholder text:

  • Is there a way to transform multiple individual «symbol instances» into one «symbol set»?

    I have an artboard filled with «symbol instances» which I'd like to transform into one single «symbol set», in order to use the «symbolism tools».

    merdesigner,
    Are you looking for something like dragging some symbols out and arrange them, then select all and crate a new Symbol out of them?

  • Actionscript code can be seen in a search, but not seen in Actions Panel nor symbol

    I purchased a template which has flash menu buttons.  The current button url's go to index.html, index-2.html, index-3.html, and so on.  I want to change these.  In Flash, I searched for index-3.html and it finds it at the location:  Symbol 'Button2 copy 3' -> Layer 'Layer 4' -> Frame '1'   and the actionscript command is:  getURL("index-3.html");
    Everything is fine so far.  However, when I double-click the symbol and go to the location (or double-click the search result), the actionscript command cannot be found at all.  I tried pressing F9 to open the Actions Panel, and I see the button symbol but I don't see any actionscript commands associated with it.  It seems to be very unusual - the search picks up the actionscript command but it can't be seen in the symbol's location where it says it is nor can it be seen in the Actions Panel.  The script does work but it just cannot be seen!  Does anyone know how to see the actionscript code in the Actions Panel or in the button symbol?

    show a screenshot of movie explorer after searching for getURL("index-3.html")

  • Can I combine more transform actions into one?

    I am doing sometimes 5 different transform actions on 1 group of notes, it would be nice to could put them all together into one. Is this possible?

    In iPhoto? Afraid not.
    If you export them they will be QuickTime movies and they you can join these with QuickTime or iMovie
    Regards
    TD

Maybe you are looking for