Pull out tab - two way to scroll

Hello!
I wanted to reproduce the 'two way scroll pull out tab' I saw on the DPS tips app (Advanced Overlays).
I was able to make the the pull out tab and to include another scrolling frame inside But I have problems with the buttons. They just don't work.
I'd like to do the same as in the example with a clicable list that change a multistate object.
Is there some tips to include buttons in scrolling frame?
Thanks for your help!
Best
j.

When you paste the content frame into the container frame in the nested overlay, the buttons lose their actions. Use the Layers panel to select each button and specify the action. It helps if you give your buttons logical names like "Asparagus Button."

Similar Messages

  • Pull Out Tab interfering with vertical text scroll

    Hi, ive created a pull out tab which opens up on top of a text frame that scrolls vertically. However, if i try to scroll the text which is under the invisible area i.e. overlaps the 'empty' container area of the pull out tab, the tab opens up, instead of the text scrolling. How do i fix this?

    One possibility is to add dummy buttons to the empty scroll area of the pull tab, but I don't think that would work in your case because you basically have dueling scrollable frames.

  • Pull-out tab and layers order question

    hello
    i'm building a pull out tab like in here
    what i paste into the container is a group inluding
    - one panorama image / and (over it) a little icon to say "hey, grab me and pull me"
    the icon is over the panorama image
    but when i preview, it goes UNDER (i can see a part of it only on the left side) and not over it
    i really can't figure out why
    otherwise i tworks fine, i can pull out the tab, roll down my panorama image etc.

    okay bob got it
    gotta do both, one over one another
    1 first a two state (identical) MSO for the icon,
    2 and a transpartent button over it, linkin' t the MSO's next state,
    3 then GROUP THEM,
    3 and then group this group with the element you want to have under and it WORKS !!!
    feeling quite happy

  • Pull out tab pan and zoom option grayed out

    I've been trying to follow this great tutorial about pull out tabs, but have one issue. I've just updated InDesign 5.5 Folio Builder to v.22 and the producer tools to the most recent release on August 7. Here is what I've been doing.
    Create an unassigned box for the tab. Create an unassigned box for background. Create a text box and add text.
    Group all of them together.
    Create an image box (container frame) that is larger than my grouped content and paste the grouped content into it.
    When I select the image box (container frame) and select Pan and Zoom, all options are greyed out.
    If I clear the content from the image box and put a photo in it, I can use the Pan and Zoom options.
    Any ideas on what I'm doing incorrectly? Thanks!
    Tutorial I'm following.
    http://tv.adobe.com/watch/digital-publishing/pull-out-sliders-and-trays/

    Thanks, for the record, I updated my steps to show the correct process.
    Create an unassigned box for the tab. Create an unassigned box for background. Create a text box and add text. Create an unassigned box at the top left to "hold" the tab position to the right side of your document.
    Group all of them together.
    Create an image box (container frame) that is larger than the grouped content and paste the grouped content into it.
    Select the image box (container frame) and choose Scrollable Frame with the options - Horizontal, check Hide for Scroll Indicators, and select Upper Left for Initial Content Position.
    Thanks again Bob!

  • Pull-out tab and swipe: conflict

    hello everybody
    When you're on article X, How can you swipe horizontally to the next article Y when you have a pull out tab that take the WHOLE page X ?
    I'm stuck in navigation !

    Hi Seb
    I'm afraid you can't! its a bad limitation at the moment.
    Answer re-design the pullout.
    But just to let you know, the enterprise guys have the ability to create a "fake invisible" hot spot area that sits above the pull out that does allow the user to then swipe to navigate away from the page. Don't actually very fair. If I have that wrong, could some one please correct me :-)
    Cheers
    Alistair

  • Pull-out tab in InDesign CS6

    Hi there,
    I am struggling to create a pull-out tab in InDesign CS6. I tried the method outlined by Colin Flemming in his video, but this no longer seems to apply.
    How must I go about creating a pull-out tab (horizontal) with the new DPS tools? Scrollable frame?
    Thanks,
    Tess

    Was this the video you watched?
    http://www.youtube.com/watch?v=OmMnH5h2chw
    It was really helpful to for me and yes you do your the scrollable frame

  • Jquery Pull Out Tabs?

    Hi Guys,
    Does anyone know if its possible to have pullout tabs with content working inside edge?
    cheers

    Hey Elaine,
    Thanks for that.
    Sorry its been so long to reply i've been trying to figure out another app for ages now!
    Anyway with the slide out tab question, i'm hoping this is something i can easily do inside of animate.
    Basically when this tab is touched i want it to animate out on to the stage to reveal its content, when its done with the user simply taps it again and it animates back to its start position.
    In my composition i have an symbol which contains all the content and sits to the left of the stage just showing its tab, the picture shows this better with the symbol being on the stage.
    This seams like something pretty basic to me, simply a touch to make something animate on and animate off. But i cant find any videos or help anywhere for this hopefully simple interactivity.
    I know the next release does have something to do with sliders so maybe that will help.
    But if you can help out on this i would be eternally grateful!
    Cheers

  • Multiple tabs,sliders or pull-out trays in DPS

    Hello!
    How can I have multiple pull-out tabs in DPS on the same page.
    My screen shots show the tabs on the right and then the last tab pulled out. But it seems that this tab stops all the functionality of the other tabs, i.e. they dont pull out.
    Has anyone got a bright idea for a dull day, to make the other tabs work?
    Thanks.

    Hi Bob,
    I seem to be having a similar problem. Could you be more specific about the MSO approach, please?
    Thank-you kindly.

  • Pulling out two records at a time

    I have a TABLE with multiple records in it, of which i want to pull out two records at a time (as if they were one record), of those records that meet the WHERE criteria. Order is not important. Basically, i have a TABLE of things that wither need processing or have been processed already. I can process two at a time. (In a related search, that i am not up to yet, i can do 20 at a time.) How would i go about doing that?
    My first thought was a CTE with ROW_NUMBER() RN, using CONNECT BY RN = PRIOR RN + 2, and have a sub-query (or joined TABLE) pull out the second record:
    WITH Moo (SELECT ... ROW_NUMBER RN FROM Table WHERE ...)
    SELECT ..., (SELECT ... FROM FROM Moo Moo2 WHERE Moo2.Id = Moo.Id + 1)
    FROM Moo CONNECT BY Id = PRIOR Id + 2;
    Or a join. Is there a better way to approach it?

    Pretty much everything you just said is wrong.
    >
    I generally keep away from CURSORs, as i want the DB to handle the set processing for me, as opposed to a CURSOR which tells the DB how to do it's job.
    >
    If you do any DB queries then you are using cursors. You have the wrong idea about them. All result sets are obtained using a cursor. A cursor does NOT tell a DB how to do a job; that is what the query and execution plan do.
    >
    (And, Tom Kyt's mantra of "You should do it in a single SQL statement if at all possible") But that's just a rule of thumb.
    >
    No - that isn't a rule of thumb. That is exactly what you should do if possible which is what I said. But I also said
    >
    Well the general use is to use SQL instead of PL/SQL but since you already need to use a function you might as well make that function as efficient as possible.
    >
    If you are already using a function then you should get the most bang for the buck from it and make it as efficient as possible.
    >
    If the CURSOR is the most efficient, so be it. But as you point out, if i'm already going to use a CURSOR, i might as well do all the work in the CURSOR LOOP. Why bother switching contexts.
    >
    All queries are done using cursors. It isn't a question of whether they are more efficient; it is the only way possible. I think you are referring to a user creating an explicit cursor and performing explicit manipulation of that cursor. That isn't normally what you want to do.
    A cursor loop is the slowest way to process results especially if all you are doing is row-by-row processing to perform essentially SQL-related work. PL/SQL should be used for the transactional part of the processing. In your case that transactional use is consolidating two records together for specialized processing.
    As for context switches if you perform any PL/SQL you are going to have a context switch: functions, procedures, triggers. The function you already planned to use would have caused a context switch. What I am saying is that if you are going to perform a context switch then you want to maximize the amount of work (transactional work) done in the PL/SQL engine so that you minimize the context switching.
    You still haven't explained exactly why 2 records at a time is any more ideal than 1 or if you could also process 50, 100, or 10000 at a time. Is the limit what needs to be passed somewhere else? What is the reason for a max of two? What exactly are you doing with the data to prepare it before you have to pass it on?
    Bulk collect processing is more efficient, with fewer context switches, if you process 20, 50, or 100 records in the loop at a time.
    See Chap 13 Using Pipelined and parallel Table Functions in the Data Cartridge Dev Guide
    http://docs.oracle.com/cd/B28359_01/appdev.111/b28425/pipe_paral_tbl.htm

  • I upgraded to an iPad2 and recently pulled out my old iPad 1to re-gift to a family member. I can't remember the password I originally set up - is there a way to get beyond this?

    I upgraded to an iPad2 and recently pulled out my old iPad 1 to re-gift to a family member. I can't remember the password I originally set up - is there a way to get beyond this?  Each time I try a different password (trying any that I thought I might have originally used) it times out the tablet for up to an hour before I can try again.  Help?

    You can restore the device. That is what you have to do if you forget the passcode. You don't have to worry about syncing to your own computer either since you don't want to restore your data - you want to wipe it clean. Read these articles for more instructions
    iPad disabled -Wrong Passcode
    http://support.apple.com/kb/ht1212
    Updating or Restoring
    http://support.apple.com/kb/HT1414
    Sometimes you may not be able to bypass the passcode at all when you try to restore. You may need to restore by putting the iPad into recovery mode. I have heard from some users that they did not have to do this when they restore after forgetting the passcode - but just in case you need the information, this will help you with that procedure.
    Unable to Update or Restore
    http://support.apple.com/kb/ht1808

  • TWO WAY Sync is grayed out. Cannot two way synchronize BB.

    Outlook. BB.  
    When attempting to Configure Synchronization Settings for ASC II importer/exporter, the only options given are ONE WAY Synchronization either to or from the device. The one I want to pick:
    TWO WAY Sync is grayed out.
    How can I ungray the two way sync to be able to sync my outlook/tasks/address/tasks.
    I will synchronization with a USB port, not through a wireless connection.
    Thanks for any help.

    Hi, When using software Desktop manager to do a backup and/or restore, I have to disable the wireless syncrhonisation in the blackberry first to enable the 2 ways sync.   Usualy, you can not use wireless  and usb cable sync., so as an example, let`s say you want to sync the adress book. go into your blackberry and into your adress book application and press the "application" button, go into "Options" and change Wireless synchronisation to "No"
    After that you should see the 2 ways sync.
    When completed, do not forget to put back the wireless synchronisation to "Yes" to enable it back.
    hope that helps.
    Robert Goupil
    Bes Administrator

  • Is there any way to pull out computer Mac addresses from GPO?

    Hello!
    I was wondering if there is any way to pull out the mac address from all the computers in the organisation via the group policy?
    It would be rather difficult to pull out mac address one by one from each computer.
    Appreciate your assistance and advise on this!
    Thank you so much :)

    You can use group policy to run a startup or logon script to get the information and write it to some file/database.
    You could also get the information remotely using a script.
    You could also as your network guy for a list of IPs and MACs they see.
    Group policy is intended to make settings, not to get information. However you can
    set a startup or logonscript that reads out the information through group policy.
    A sample script surely is available in the scriptcenter, but I think help on the specific script is more something or the scripting forums.
    MCP/MCSA/MCTS/MCITP

  • Full page pull out tray, pull only object workaround

    Hi,
    Is there any way yet, when creating a pull out tray/slider using the scrollable frame, to only have a object within the container pull the content, rather then being able to pull from anywhere within the container?
    Basically what I am trying to do is have a pull out that when pulled out, covers the entire page, therefore the container needs to cover the entire page which disables the ability to navigate horizontally between articles, I can still navigate vertically, but not horizontally..
    Does anyone know of a workaround that would enable me to have a full page pull out (container) and still be able to navigate horizontally. i.e. having only an object (the pull tab) pull the content rather then anywhere within the container.
    Thanks for you help
    Quinn

    Thanks everyone for your help, however I am yet to solve this problem...
    On top of the horizontally scrolling content I have created a MSO consisting of two invisible rectangle frames. Tried to see if it would work as just a MSO, nothing, turned those into a one time Auto Play Slideshow, still nothing. No matter where I pull, the content still scrolls yet I can not navigate horizontally to the next article. (Made sure I left space for the tab area, yet I can still pull from anywhere). Any other solutions/workarounds to this problem? Or if this has worked for others, possibly tell me if I am doing something incorrectly?
    Thanks again for your help.
    Quinn
    PS. I am using V20 on ID 5.5

  • Can't I use my wireless mouse and trackpad in different ways when scrolling?

    Since I'm a Chinese user, I prefer describing my question in my mother language...I will translate it...
    在系统偏好设置里,倒是可以分别设置鼠标和触控板,但是当我打开触控板的“自然滚动”,同时取消鼠标的“滚动或导航时,使内容按手指方向移动”,之后,鼠标恢复原来的滚动 方式,郁闷的使触控板的滚动方式也跟着变化了⋯⋯
    但这时打开触控板的设置,“自然滚动”依然是选中的啊⋯⋯
    如果这时关闭“自然滚动”,再重新开启,鼠标设置界面的“滚动或导航时,使内容按手指方向移动”虽然是为选中的,但使用时滚动方向又变成反向了⋯⋯
    各位有遇到么⋯⋯我觉得是个BUG吧,期待修复⋯⋯
    我的鼠标是雷柏的6900,蓝牙无线
    本子是新的MBA 11‘
    Well, there is two setting items in system preference for "mouse" and "trackpad", and there do have the checkbox for "Move content in the direction of finger movement when scrolling or navigating" and for "Scroll direction: natural". I checked the "Natural Scroll"---- if I may call it this way ---- option and unchecked the same option in mouse setting wishing to use my mouse and trackpad in different ways...
    However, it turned out to be a confusing phenomenon like I can only use my mouse and trackpad in the way "Natural Scroll" or the way it used to be. If I double click the checkbox of "Move content in the direction of finger movement when scrolling or navigating" to refresh my settings, both my mouse and trackpad will turn into the way it used to be in scrolling while if I double click on the "Natural Scroll" checkbox, both of them will turn into the new way.
    At the same time, eventhrough the setting of my mouse has been changed by the changing of trackpad setting, the checkbox in "mouse" is still unchecked and that's where makes it seems like a BUG....
    So, is there anybody who meets the same problem? The reason I want to use this two device in different ways is I just don't like to use mouse in the new way, it's unconfortable for me.
    And, I use a new MacBook Air 11' and a wireless mouse called Rapoo 6900
    Here comes the link of my wireless mouse.
    http://en.rapoo.com/ProOverview.aspx?PID=3550

    jhawk,
    I can see the appeal of your desired setup, but is the limitation the inability to "Pair" the mouse/keyboard to more than one computer at a time? (Practically, that makes sense, you don't want to be blindly moving both cursors around at the same time, since you can only see one screen at a time)
    You CAN operate bluetooth devices on Windows without pairing-you just need to locate the device each time before using:
    http://www.oreillynet.com/pub/a/wireless/2003/09/18/winxpunwired.html
    So maybe you can pair the Mac version, and just search out the device each time you switch over? (but then you would have to "unpair" it off the Mac too) Maybe you need to write two scripts for each platform: pair/unpair devices.
    Sounds like it would be easier to buy two wireless keyboards and mice :P
    What you really want is a utility like this:
    http://www.abyssoft.com/software/teleport/
    (its only Mac to Mac though, unfortunately)
    Good luck!

  • How do I set up itunes sync with outlook to "replace information on this iphone" only? I do not want to do a two way sync.

    I am tired of fighting sync incompatibilities between Outlook 2007 and I Tunes, and no longer want to do a two-way sync.
    I still want my Outlook contacts and calendar on my iPhone and use advanced setup in iTunes to "replace information on this iPhone" only.
    iTunes only offers the ability to do this on "the next sync only". Is there a way to set up iTunes to "replace information on this iPhone" every time I connect my phone?

    Hi there Greg,
    Welcome to Apple Support Communities.
    It sounds like you want to always replace content on your iPhone 5S with content from Outlook on your PC, to do this you’ll just have to Reset the Sync History in iTunes as shown below.
    Troubleshooting Sync Services on Windows with Microsoft Outlook 2003, Outlook 2007, or Outlook 2010 - Apple Support
    To reset sync history:
    Open iTunes.
    From the Edit menu, choose Preferences.
    Click the Devices tab.
    Click the Reset Sync History button.
    If the issue continues and you know all of the data is on the computer:
    Reset the Sync History again using the steps above.
    Select the device in iTunes and click the Info tab.
    Scroll down to the Advanced section, and under "Replace information on this iPhone/iPad/iPod touch" select Contacts or Calendars.
    Click Apply.
    Cheers,
    -Jason

Maybe you are looking for

  • Mavericks won't install after accidentally deleting recovery partition on 10.6.8

    I have been searching for hours for a solution and found none. Essentially, I was running 10.8 on my MBA which originally came with 10.6. Wishing to perform a clean install of Mavericks, I accidentally deleted the recovery partition. Installing Maver

  • Does as2 support regular expressions?

    I'm coding in AS2 using CS4 if it matters.  Can I use regular expressions in this environment?

  • How do I create a secondary window?

    Does anyone know how to create secondary windows in 6.0? I was able to do this by tweaking the code in v9.2, but when I installed the eval. version, the text is missing that contains the secondary window link, and I'm not sure how to fix this. Furthe

  • What type of interface should I buy for Roland XP60, Logic iMac set up?

    Happy New Year guys! I've been having problems finding a suitable interface for my set up. The guy at gtr ctr told me to buy Uno Midi to USB cable and that's not right. I still want to record sounds from my Roland and use it to trigger sounds in Logi

  • Problem returning array of strings

    Hi, I am trying to return an array of strings from C to Java.The function I am using is char rec[20][20]; int num=0; /* incrementing num and copying into the array everytime a record is added*/ JNIEXPORT jobjectArray JNICALL Java_jnimidlet_list_1rec