2-times scroll option on an object?

Little Muse question,
Getting an object in the page with scroll-options (page down) goes well...but when the object must get back or return, i must use page-up..i'd like to have that with the use of page-down control..so that the animation can continue...
aaaarrgghh Bad explanation:
maybe better..
Muse,
page down - object comes in
page down - Branding name comes up
page down - object must go away
page down - the adresses getting under the branding name...
so, i'd have 2 scroll commands for 1 object...
Is that possible? or how do getting an object away, when it came in the page with scrolling??
1 possibilty is to get an object over the object, so you would'nt see it anymore...but thats not so very very nice ;-)
grt mars

You could do it with Advanced Actions (but it does get a little messy).
Place a transparent button over each menu item. Have each button pause near the start of each slide. 
Create a standard action as below (you will also need to create a variable for each menu item - mine is called Zoom1 in the example):
This will trigger the zoom (you will probably want zoom size to be 100% for the initial size, then whatever your final size needs to be).
Create an advanced action like the one below:
You can have an action for each menu item/button in the one advanced action using the tabs under the Name field. What you're doing is saying if the button for an item has been pressed, jump to the specified slide for that item.  In the slide properties, set the advanced action to run on the slide exit.
You will need to play around with the size and timings to allow the zoom to reach the end point at, or just before, the end of the slide, otherwise it jumps to the new slide as it's zooming.
There may be easier ways to do it that others here may suggest, but that's my intial idea - hope it helps.

Similar Messages

  • One finger scrolling option for mouse is GONE from preferences?

    The one finger scrolling option for mouse is apparently GONE from the mouse system preferences? Why do they move/hide this stuff every other system update? Grrrrr!
    I turned off the one finger scrolling option in mouse preferences a while back before my last system update to OSX 10.8.5 because it screwed me up in Photoshop/Illustrator. Recently using Chrome I found I couldn't scroll down windows now on some web pages because the scroll bar at the right doesn't show up very well. I usually use Safari and it works there so it's a Chrome problem. However, I want to turn the one-finger scrolling back on for some things from time to time. When I tried to check the box in mouse preferences, to my horror, that option appears to be gone. What?!? Help!
    *totally waiting for a simple answer that I overlooked. I hope.

    Did you look in the Zoom menu (press F10 to make the menu bar appear)?

  • Non-scrolling Option Missing

    I'm running RoboHelp for Word version X.5.0.1 (build 606) and
    version MS Word 2003 SP3. I currently only have the following
    options when I select RoboHelp in the Word toolbar: New Macro
    Hotspot, External Topic Hotspot, HTML Hotspot, and See Also
    Hotspot.
    I no longer have the long list that I used to have, including
    the Set Non-Scrolling option that I really need right now.
    I tried reattaching the RoboHelp.dot file under Tools |
    Templates and Add-ins, but that didn't fix it.
    Does anyone know how I can access these options?
    Thanks!

    Hi Katheryn
    Pleased to be able to help you.
    You were a little bit lucky to get a reply from me.....
    It seems that I managed to retire a few months ago - well,
    I'd been suggesting to my clients that I didn't really want to get
    mixed up in new versions at my time of life and that they should
    move on. (Oh, how right I was! What tender little things RH6/7 seem
    to be!) The forums now seem almost completely absorbed by getting
    the new versions to work and queries about X5 and RH for Word have
    virtually dried up. I was on the point of cancelling my
    subscriptions! Perhaps I'll wait a bit, after all.
    Best
    Brian
    PS Rick/Peter et al: New Tricks don't always suit Old Dogs.
    But, sometimes, New Dogs need to know how Old Tricks work. (Sings:
    "If I can help somebody....")

  • Add the property "Enable auto-scrolling" to indicators which have a scroll option

    It would be nice if controls/indicators that had a scroll option (most useful for vertical scroll) would have the ability to support automatic scrolling. This is useful for trace windows or long tables which are continually getting updates. At present we need to set the scroll position ourselves for every update.

    Ray: I think Mark is asking for a run-time feature, not an edit-time feature, such that if you have the scrollbar already visible and new text is written to the indicator that the text would automatically scroll to some position within the string.
    Myself, I'm a strong fan of the behavior that I see in Visual Studio compiler log windows -- if the user has positioned the scroll thumb at the very bottom, when new text is added, the scroll thumb continues to stick to the bottom (thus always showing the tail of the log). But if I scroll up in the log, then new text is added keeping the scroll thumb in the same relative position so that I can actually read an interesting part of the log while the log continues to be updated. It's occassionally tricky to get the thumb back to the bottom of the log if the log is being updated very quickly, but overall, it's a system that works very well.

  • Re : select-options in abap-objects program

    Dear friends,
                      I want to give select-options in abap-objects program. How to give that.
                                 Thanking You
    with regards,
    Mani

    In the transaction SE24, enter your class name, click modify.
    in the tab named "Types" you have to declare two types. By example, if you want to receive one select-options that in your program that uses this class is declared like:
    " P_SAKNR FOR SKAT-SAKNR".
    you've got to declare two types in the class:
    a- TYPES:  begin of E_S_SAKNR,
                          sign(1),
                          option(2),
                          low(10),
                          high(10),
                      end of E_S_SAKNR.
    b - TYPES E_T_SAKNR type standard table of E_S_SAKNR.
    so, in the class method that you want to receive P_SAKNR as importing parameter. You got to do this:
    method TEST importing ET_SAKNR type E_T_SAKNR.
    now, in the implementation of this method you should be able to use ET_SAKNR as the same way as you usually use a parameter or a select-option. You could use it in a select with the operator IN by example..

  • Re : select-options in abap objects

    Dear friends,
    I want to give select-options in abap-objects program. How to give that.
    Thanking You
    with regards,
    Mani

    HI Mani,
    It's common mix ABAP Procedural with ABAP Objects in the same program.
    You should use the same way used in ABAP procedural program as Marco Cerdelli sad.
    But inside ABAP OBJECTS classes you can't use is these statement type.
    Don't forget to close this thread and all yours previous when your question be answered ! In case of doubt read the [rules of engagement|https://forums.sdn.sap.com/].
    Best Regards.
    Marcelo Ramos

  • Select-option in ABAP objects

    Hi Guys,
               I need a small help from you. I want to know how to populate the value from select-option to abap object. Please help me, it is very important

    check this code
    REPORT ZSELOPT_TO_CLASS .
    TABLES: VBRK.
    SELECT-OPTIONS: S_VBELN FOR VBRK-VBELN.
    DATA: IT_VBELN TYPE RSELOPTION.
    DATA: X_VBELN TYPE RSDSSELOPT.
    CLASS C1 DEFINITION.
    PUBLIC SECTION.
    DATA: IT_VBRP TYPE VBRP_TAB,
          X_VBRP LIKE LINE OF IT_VBRP.
    METHODS: GET_DATA IMPORTING S_VBELN TYPE RSELOPTION.
    METHODS: DISP_DATA.
    ENDCLASS.
    CLASS C1 IMPLEMENTATION.
    METHOD GET_DATA.
      *SELECT * FROM VBRP*
       INTO TABLE IT_VBRP
       WHERE VBELN IN S_VBELN.
    ENDMETHOD.
    METHOD DISP_DATA.
      LOOP AT IT_VBRP INTO X_VBRP.
        WRITE:/ X_VBRP-VBELN,
                X_VBRP-POSNR.
      ENDLOOP.
    ENDMETHOD.
    ENDCLASS.
    START-OF-SELECTION.
    DATA OBJ TYPE REF TO ZCL_SELOPT.
    CREATE OBJECT OBJ.
    LOOP AT S_VBELN.
      MOVE S_VBELN-LOW TO X_VBELN-LOW.
      MOVE S_VBELN-HIGH TO X_VBELN-HIGH.
      MOVE S_VBELN-SIGN TO X_VBELN-SIGN.
      MOVE S_VBELN-OPTION TO X_VBELN-OPTION.
      APPEND X_VBELN TO IT_VBELN.
    ENDLOOP.
    CALL METHOD OBJ->GET_DATA
                        EXPORTING
                          S_VBELN = IT_VBELN.
    CALL METHOD OBJ->DISP_DATA.
    Edited by: moazam hai on May 17, 2008 6:17 AM
    Edited by: moazam hai on May 17, 2008 6:19 AM

  • How do I get date and time component from a DATE object?

    Hi All,
    I need to get date and time separately from a DATE object, does
    anyone know what function I should call? GetDate()? GetTime()?
    I need this in a SELECT statement.
    Thanks in advance and looking forward to your early reply.
    Regards.
    Gladywin
    30/11/2001

    Hello,
    See following SQL.
    select to_char(sysdate,'dd/mm/rrrr') today_date,
    to_char(sysdate,'hh24:mi') now_time
    from dual
    Adi

  • Page Scrolling Options

    Hi everyone,
    We are currently running VC on 2004s SP8. I would like to have my table be able to scroll or page through the many records. The table is being populated with data but the paging toolbar does not show up. Scroll buttons is set to 'Show' (greyed out can't change it) and the 'Number of Rows' is set to Autofit which is also greyed out. If I double-click the paging toolbar in the designer the 'Page Scrolling Options' box pops up for configuration, however it only shows the first 6 items and the 7th is cut off. The pop up can not be resized either.
    Has anyone seen this before? Is there a fix?
    Thanks,
    Pete

    Marcel,
    Thanks for your quick response. Flash looks very nice but with larege tables or wide columns, not having horizontal scroll is a big limitation. VC tool is very nice and adding these features will propel VC as a tool of choice for BPX users. 
    I also found these useful OSS notes...950492, 994827, 992872, 1021675 (not published yet as of feb 17, 2007) .
    A correction to my earlier comment ---  sap press book on VC does hint at limitations and have carefully not discussed or show screen shots to highlight scroll bar issues in their examples.. nevertheless it is a priceless book.. can't do VC without it..
    yes, WD can be used only for web services... it is also covered in the book...
    thanks and best regards,
    bala

  • Time scrolls across the screen each minute

    does iPhone have an active notification feature where the time scrolls across the screen each minute?   Or is there an app that does this?
    I saw a Motorola smartphone yesterday that had this feature.  It would be fabulous !!!!!!

    TThe feature I saw didn't require touching the phone, the time automatically scrolled across just for a few seconds, each minute.
    FAbulius for for a massage therapist who uses her hands to work on clients but wants to know the time. 
    are you suggesting that if I unlock my phone, I can see the time on my phone without touching the phone?   Is this constant and therefore a drain on my battery?  Then too my phone isn't locked. 
    IM missing something for sure. can you explain?
    thank you for your kind assistance.

  • Do we can set any scroll option in the query designer?

    Hi,
    I would like to know is there any setting for scroll option at the query designer level.
    This is because if I look at some reports so I could see little ups and down (small up and down arrows) symbol at the column level, and is enabled for only few reports.
    Need some input on the same.
    Thanks

    Hi
    I think you are right clicking on KeyFigures Heading, instaed of that can you on any Keyfigure (example KF1 and KF2 etc..). once you done that you will see the following options.
    EDIT     
    COPY    CTRL + C
    CUT       CTRL + X
    PASTE   CTRL + V
    DELETE   DEL
    WHERE USED LIST
    LEVEL DOWN         CTRL+ >
    LEVEL UP     CTRL + <
    PROPERTIES   ALT + ENTER
    please select the highlighted options on the required key figures, then execute the query.
    regards
    Pavan

  • Can we check the Objects modifiable " option for standard objects

    Dear Friends
                 In IR , we have imported SRM SERVER->SRM SERVER5.5
    Then we  have checked the option<u><b> "Objects are modifiable"</b></u> then we imported the IDOC from R/3 system under SRM SERVER 5.5 swcv.
    Then created the mapping.It is working fime.
    how ever i am not sure whether it is right process.Can we check the "Objects are modifiable" for standard compoents delivered by SAP????
    Regards
    chandra

    Hi Jai,
      <i> >>>Can we check the "Objects are modifiable" for standard compoents delivered by SAP????
    No. As best practise you are not supposed to do so.</i>
    In order to implement any changes in the mapping we can do it rite.
    Because recently i have applied one SAP note to my SRM swcv and one of the MM object was changed according to the requirements.
    Thanks,
    Prasanthi.

  • Is there a way of reinstating the scrolling options before ios9 was installed?

    is there a way of reinstating scrolling options before ios9 was installed?

    Did you format the new drive?  This can be done with the Internet Recovery Mode. Try booting holding the command option R keys to get to Disk Utility.
    JRod37  wrote:
    I cannot open in apple diagnostic mode
    You can run the Apple Hardware Test / Apple Diagnostics:
    may not be aware is that Apple dumped AHT this past June. New Macs, introduced in June 2013 or later, no longer include the software. Instead, they have an entirely new diagnostic application called, appropriately enough, Apple Diagnostics. You access Diagnostics exactly the same way as you do AHT: Hold down the D key at startup.
    http://support.apple.com/kb/HT5781
    New MacBooks can access HardWareTest by rebooting holding the D key, no disk required.
    http://support.apple.com/kb/ht1509
    or older machines Boot off your Install Disk while holding down the D key, (not c key), then run the extended Apple Hardware Test. Some disks require you to use the Option key at bootup to select AHT. Some models have a separate AHT CD.
    If any error codes are generated, post that code back here for interpretation.

  • PSE 11 Date, time & star option under photo in organizer missing

    I was watching a tutorial about PSE 11 and then noticed that under my photo in the organizer I do not see the date, time, & star option.  Do I have to turn something on to see them.  Also I do not see a place under the photos to put a caption.  I'm using a mac book pro.

    Can you see something like this in your organizer?
    And for ratings:
    Hope this helps.

  • Time Machine options are not working. I am unable to schedule automatic backups.

    Time Machine options are not working. I am unable to schedule automatic backups.  The On-Off button is grayed out. I can perform a backup manually.

    Thanks for responding.  I have an external disk with plenty of room.  It is used only for backup of my computer.  I get a backup by clicking on the Time Machine icon at the top of the page and select "Back Up Now."  When I click on Time Machine Preferences, there is a box labeled "Options" which allows me to exclude items from backup and notify after old backups are deleted.  There is no option to schedule a backup.  The "OFF/ON" box is gray.  For "Next Backup:" it says "Automatic backups off."  I would like to turn it on.

Maybe you are looking for

  • After ISE 1.2 upgrade I get "5413 RADIUS Accounting-Request dropped."

    Hello, I have a two admin node setup for ISE. I just upgraded one of my two ISE Admin nodes to Version 1.2. I still have one of my admin  nodes at 1.1.4. When I disable my Version 1.1.4 node and allow wireless authentications to be handled by the Ver

  • To insert  the date and time

    Hi I have Date 12-Feb-2007 in one string and time 12:00 in anotther string. I need to insert both that is date and time in to Date field of my table. What is java part i need to code before make a insert statement? Can anybody help me? Thank you

  • Flash10e.ocx version 10.0.45.2 or 10.0.42.34?

    First I had used the flash uninstal tool from adobe and successfully removed the older version of flash player I thought I downloaded flash player 10 version 10.0.45.2, but when I go into my browser IE7 and look at the manage add ons, I see Shockwave

  • Getting - Active Server Pages error 'ASP 0126'

    I get the following error when applying the upload function to my already made form. Active Server Pages error 'ASP 0126' Include file not found /sitename/sitepage.asp, line 2 The include file 'dwzUpload/DefineVariable.asp' was not found. The top of

  • Why my macbook air is eating up so much megabits from my internet connection?

    Is there anyone out there who can explain why my macbook air is eating up so much megabits from my internet connection, despite the fact that ı'm not using the internet?