Cp8 Is it possible to initiate a different timeline to start playing once you click a button?

A bit challenging to explain, but I'll give it a shot:
If we take a rollover slidelet for example - It has its own "timeline" so you can basically display additional objects on screen separately from the main timeline.
Is it possible to have the same effect when you click a button?
So basically i want certain object to appear one after the other after I click a button.
Thanks!

Thanks for the explanation, but that's not what I meant exactly
I'm not using any rollovers in the slide. Only buttons. The users can click on any button if they wish to. Once a button is clicked, I want certain objects to appear.
I'm using advanced actions in order to display a group and hide the others. So when a user clicks on say button 1, group one appears on screen and the rest of the groups disappear (by the advanced action).
The group that does appear, contain 5 elements that appear at once. I want them to appear one after the other in sync with an audio narration. I'm well aware about using the timeline to achieve this, however, the issue is that I don't have an individual timeline for the "group" (similar to the Gr_Vars) that you show in your pic. Even if I un-group it into objects then it consists of too many items to hide / show with advanced actions.

Similar Messages

  • I have an iPhone 4 on IOS5. I signed up for itunes match. After everything uploaded to the cloud, my songs are messed up. I'll select a song and the title will show with the right art work but a different song will start playing.  Anyone have a solution?

    I have an iPhone 4 on IOS5. I signed up for itunes match. After everything uploaded to the cloud, my songs are messed up. I'll select a song and the title will show with the right art work but a different song will start playing.  Some songs won't play at all even though they do appear in the itunes store. The artwork almost always shows u blank until you turn it to landscape then it will appear. Anyone know what's going on?

    I have found that scrolling through the album list (past albums without art) triggers the progress wheel next to the wifi symbol. You can scroll quickly through the whole collection and then wait! Artwork will appear gradually...
    However, repeat visits to the Music App might initially show no artwork again, but it might spontaneously appear more quickly this time. The bad news is that the whole Music App is now sluggish as ****...

  • Is it possible to use a different Adobe account to the one you downloaded the software with on a machine with it not screwing with another versions on that account?

    I  have 2 adobe accounts, one is my CS5 student license on my mac and one is as a CC trial on this PC.
    The trial has run out and I want to buy the CC subscription for my PC but I cant because I signed up with a wrong email address for this account so cant log in to buy it and Adobe customer services are taking over 24 hours to get back to me.
    For reference heres a better idea of my situation:
    https://forums.adobe.com/message/7480974#7480974
    Is it possible to buy the CC on my account associated with the account/software on my Mac onto this computer? (On that account I have already done the 30 day trial and also had it for under 30 days before cancelling CC and going back to CS5).
    Or is it only possible to install the software with the specific account you signed up with? As when I have access to my Mac I would like to still use my CS5 on that but CC on this PC.(I really don't want to risk somehow screwing it up so I cant use my CS5)
    Thanks a lot
    V

    In case the email is incorrect & it can not be verified then you can abandon that Adobe id, if you have purchased CC with incorrect Email, then you need to get the CC cancelled & buy a new CC with correct Email ID.
    Please personally inbox me the incorrect Email ID for further investigations.
    Regards
    Rajshree

  • Possiblity to expand / narrow / reset all drillstroughable parts of the report with one button

    Hi,
    has anyone done that bevore? Is this possible ..
    I have parts of a big Report, that are expanded (where i can see all detaildata) and parts where the detaildata is there, but arent showed by Standard (are narrowed).
    I wish i could have a button, where i can expand / narrow all expandable/narrowable parts of the reports from 1 button.
    Why?
    1) To print the Report i could press "Expand all" and then print, so i get all the detials of the Report.
    2) for a better first look i could Show all expandable reportparts narrowed. Then click expand all to see all Details.
    and maybe to reset all expandable parts to the Default (Settings when loaded) there could be a reset button to.
    Any Chance?
    THX, greets pib

    Hi Pe.bo,
    Per my understanding that you want to add an button in the report to control the Expand All and Collapse All of the drill down report, right?
    I have tested on my local environment and we can do this by creating an parameter to control the show/hide of the details, We can add two radio button image (Radio on, Radio Off)and add the "Go to Report"action on the image which
    display most similar to the button and will display the result of Expand All and Collapse All once you click on the radio button.
    Step by Step details information in below article for your reference to help you achieve the result:
    http://blogs.interfacett.com/how-to-implement-expand-allcollapse-all-for-drill-down-in-sql-ssrs
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu

  • How do you make 2 buttons that have different link in one form?

    <form name="form1" method="post" action="">
    <input name="cmdBtn" type="submit" id="cmdBtn" value="one">
    <input name="cmdBtn" type="submit" id="cmdBtn" value="two">
    </form>
    i want the link of button "one" to have different link with button "two". How can i do it using jsp?
    thanks

    i posed this question to the javascript forum but no reply, so i just post it here if in case there are jsp users here who knows the answer to my question. hope u guys understand. thanks
    I have 2 jsp files namely page1.jsp and page2.jsp.
    page1.jsp
    <%@ page contentType="text/html; charset=" language="java" import="java.sql.*" errorPage="" %>
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script language="JavaScript" type="text/JavaScript">
    function MM_openBrWindow(theURL,winName,features)
    { //v2.0
    window.open(theURL,winName,features);
    </script>
    </head>
    <body>
    <form name="form1" method="post" action="">
    <p>
    <input name="txtValue" type="text" id="txtValue" value="i want this value to be passed when i click the 'open new window' button" size="80">
    </p>
    <p>
    <input type="submit" name="Submit" onMouseDown="MM_openBrWindow('page2.jsp','','scrollbars=Yes,width=500,height=500')" style="TEXT-DECORATION:none" value="Open New Window">
    </p>
    </form>
    </body>
    </html>
    page2.jsp
    <%@ page contentType="text/html; charset=" language="java" import="java.sql.*" errorPage="" %>
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body>
    <%
    String value = request.getParameter("txtValue");
    %>
    <form name="form1" method="post" action="">
    <p> Value is <%=value%></p>
    </form>
    </body>
    </html>
    what the code does is it open a new window (page2.jsp) if you click the button in page1.jsp, my problem is, i can't pass the value of txtValue from page1.jsp to page2.jsp, How can i do it?
    thanks

  • Hi I have two questions. I am using NAS 4.1 and was wondering is it possible to set a different session timeout for different users? How is the session timeout set? Thanks, YS

     

    <i>I am using NAS 4.1 and was wondering is it possible to set a different session timeout for different users?</i>
    Um, there is no such thing as NAS4.1.
    I'm assuming that you mean NAS4.0 (maybe NAS4.0sp1?). If so, then the session timeouts are specified in the session section of the NTV configuration files.
    AFAIK, you can specify session timeouts on a per user basis.

  • In RoboHelp 11 Responsive HTML5, is it possible to have 2 different language outputs in one generated output file?

    In RoboHelp 11 Responsive HTML5, is it possible to have 2 different language outputs in one generated output file, similar to WebHelp where the use can select the language from a drop-down list? In Webhelp output you could create multiple Content categories. Is there something similar with the responsive output, or am I forced to have a completely separate set of output files for each language (for example, English, Japanese, Chinese, Korean, and Arabic)?

    As Rick, mentions, there's no default way.
    Having said that, there's nothing stopping you from doing it yourself. You can add a kind of language selector to the layout and set that for every html5 output. With some JavaScript, you can have the user switch between your outputs. It would look like content categories, but you'll have build it yourself.

  • Is it possible to sync two different iphones and an ipad on only one computer?

    Is it possible to sync two different iphones and an ipad on only one computer??
    My husband has an iphone 4 &amp; ipad. I have an iphone 4S. We both use the same  itunes account. We are having trouble w/ all of our contacts/calendars &amp; info getting all mixed up. We want to both use the same itunes account &amp; apple id so that we dont have to separatley repurchase everything. Can anyone help us w/ this issue? Are we obligated to buy another computer so that we each have one--or is there some way around it? Thanks!!

    http://support.apple.com/kb/HT1495

  • Is it possible to run two different versions of Apple operating system (for ex. 10.6.8 and 10.9) on a MacBook Pro, either on the same disk or from an external hard disk? If so, where would I find the details?

    Is it possible to run two different versions of Apple operating system (for ex. 10.6.8 and 10.9) on a MacBook Pro, either on the same disk or from an external hard disk? If so, where would I find the details? (In order to be able to use the older applications no longer supported in 10.9)

    If you want to add a second partition to the internal drive (in Disk Utility, select the drive, then open the partition tab and just click the + button), you should first be sure that you will have enough room to accommodate whatever the second volume will be. I am currently doing this for Snow and Mountain Lion.
    To get to whatever volume is not the startup disk, restart and hold down option/alt at the chime, which will bring up a selection of the two volumes. Use the left or right arrow keys to select it and then hit enter/return.

  • Is it possible to work with different languages in different applications?

    Hi,
    is it possible to work with different languages in different applications?
    To have f.e. Photoshop in English and Indesign in Dutch??
    Thanks!

    I am not sure about it that you can use different apps in different language in the same computer, however you can check the following links:
    http://helpx.adobe.com/creative-cloud/kb/change-installed-language.html
    Adjust the install language | CCM
    http://tv.adobe.com/watch/learn-creative-cloud/installing-multiple-languages-of-a-desktop- application/
    Regards
    Rajshree

  • Is it possible to put two different colors in tree parent node background and child nodes background?

    Is it possible to put two different colors in tree parent
    node background and child nodes background?
    Any help will be very helpful.
    Thanks

    Hi PanosE,
    Yes, you can set up another Standard Edition Server in child domain and then deploy pool pairing.
    You need to deploy a new Front End Pool for the new Standard Edition Server.
    A similar case for your reference.
    https://social.technet.microsoft.com/Forums/office/en-US/eca4299c-8edb-481e-b328-c7deba2a79ba/lync-2013-standard-edition-lync-fe-pools-in-multiple-domain-single-forest-senario?forum=lyncdeploy
    Best regards,
    Eric
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Is it possible to run two different version of jre simultanously ?

    My client is using two diffrent application those supports two different versions of jre(1.2 & 1.4). If he uses jre1.2 only one application works ,and if he uses jre1.4 then the other works but the 1st shows error messege And vice versa.
    Is there any solution to shortout this issue?

    Is it possible to run two different version of jre simultanously ?Yes. In different processes, of course.

  • Do it exist a FM to check possibility of convertion between different type?

    Hi all,
       We have usually met the problem of DUMP when moving or writing a data type of a variable to an other variable which haven't the same data type as data type of moved variable.
       For example:
           - var01 type char10 with content "char_test".
           - var02 type QUAN.
           - MOVE var01 TO var02 => DUMP (because program can't convert "char_test" into QUAN type).
           (we can use instruction WRITE var01 TO var02 to avoid a DUMP, but after, when we use this var02 to compute => DUMP also occurs).
    So could you please tell me if it exist a Function Module in ABAP to check the possibility of conversion between different data type?
    Thanks a lot in advance,
    Vinh Vo

    Dear Vinh,
    Field symbol should solve your problem. In case that does not work, then as per your requirement you can check for conversion using a try-catch block. The code below should give you an idea.
    DATA: var01 TYPE char10 VALUE 'char_test',       " CHAR or any other type
               var02 TYPE quan1.                                   "Field of type QUAN
    TRY.
        MOVE var01 TO var02.
      CATCH cx_sy_conversion_no_number.
        WRITE 'Steps in case conversion is not possible'.
    ENDTRY.
    WRITE / var02.
    The above code will not dump in case of conversions to QUAN. In case a conversion to any other format is required, there will be a similar errors. Please let me know if you need any further help.
    Regards,
    Nimish

  • Is it possible to run 2 different reports SEPARATELY from a single query?

    Dear All,
    The title to my previous thread seems to be inaccurate and misleading.
    To encourage people to read it, I am giving it a more appropriate Title.
    Please do not reply on this thread, but refer to the original one.
    Thanks
    Leon Lai
    Here's the link:
    Is it possible to combine 2 different reports in a single Query?

    Dear All,
    The title to my previous thread seems to be inaccurate and misleading.
    To encourage people to read it, I am giving it a more appropriate Title.
    Please do not reply on this thread, but refer to the original one.
    Thanks
    Leon Lai
    Here's the link:
    Is it possible to combine 2 different reports in a single Query?

  • Is it possible to set a different color to part of a cell?

    Hi all,
    I am have trouble setting cell-specific Renderer.
    I have followed the instructions in the UISwing tutorial
    and extended JTable definition to overload getCellRenderer()
    to return myRenderer
    final JTable tableView = new JTable(dataModel){
    public TableCellRenderer getCellRenderer(int row, int column) {
    TableCellRenderer colorRenderer = new ColorRenderer();
    return(colorRenderer);
    My class definition for ColorRenderer is as follows:
    class ColorRenderer extends JLabel implements TableCellRenderer {
    public ColorRenderer() {
    public Component getTableCellRendererComponent(
    JTable table, Object color,
    boolean isSelected, boolean hasFocus,
    int row, int column) {
    setForeground(Color.blue);
    return this;
    Is it possible to set a different color to part of a cell?
    eg. I have "TEST,CELL,COLOR" as a string in a cell.
    Can I set a different color to the substring "CELL"?
    Your suggestions will be accepted most gratefully!
    Thanks in advance
    -Kalpana

    You should inherit your table cell renderer from a container, for example JPanel, add different JLabels to the panel and color them separately.
    Kurta

Maybe you are looking for

  • Updated to Safari 4.0.2

    Did a software update today and now I can't launch Safari. When I try to launch I get the message below. Any help gratefully received. Process: Safari [261] Path: /Applications/Safari.app/Contents/MacOS/Safari Identifier: com.apple.Safari Version: 4.

  • I am unable to move app icons from one screen to the next, after 2.1

    Can any one verify this? I have restarted the phone, just in case and the behavior continues. While on the subject, it would be nice if Apple could supply a MAC interface for rearranging the iPhone screens as it is not much fun on the phone itself.

  • Help required in running SPAU and SPDD transactions for post upgrade

    Hi All, We are doing a system upgrade to EHP1. We need help in SPAU and SPDD runs and why are they required in upgrade activity. Kindly respond. Thanks in advance Regards Rashmi

  • Css editor bug in cs6

    This is a bug within the application code 1. double click on a css tag to bring up the editor window 2. in dreamweaver cs5 you could double click in a field to edit the content, such as margins or padding 3. In CS6, you have to first click in the fie

  • Need information about E-kanban

    Dear All, Pl. provide information about E-KANBAN process. Nikhil