Buttons to change to next/previous state not working

Hi guys
Apologies if you consider this an acrobat issue but I thought it was more indesign.
I am trying to add in a slide show to my interactive pdf and I just can't get it to work.
I've followed a couple of tutorials to the letter and when I preview in indesign the buttons work fine and the picture changes the next/previous state.  When I export to SWF, again, it works beautifully.  But as soon as I export to interactive PDF, the buttons dont work.
I can only think this is either something in the export settings or something with my acrobat not letting it be interactive.
I use CS5 and Acrobat X pro.
Any ideas?  Literally nothing happens when I click on the buttons in the PDF.
Thank you

MSO….multi state object.
Unsupported in PDF. Never has been.
The only possible workaround is to create it in a different file, export as SWF and place the SWF into a PDF.
Bob

Similar Messages

  • Next-Previous Do not work Properly for lengthly dynamic Where Clause

    I have created a View object using Expert Query mode
    with following Query:
    SELECT LIC_SYS_ID,
    LIC_NAME,
    TERRITORIES,
    LANGUAGES,
    MEDIA,
    SEGMENT_NAME,
    CHANNELS,
    ACTIVITY_CD,
    LS.LIC_SHORT_NAME,
    LS.LIC_AKA_NAME
    FROM V_LICENSEE_SEARCH LS
    ORDER BY LIC_NAME
    Then at run time the following Where Clause staments get added by in JSP based on the users criteria
    wClause = "(ACTIVITY_CD = '" + activityStatus + "')"
    + " AND " +
    "(LIC_NAME like '" + licenseeName + "%' OR " +
    " LIC_SHORT_NAME like '" + licenseeName + "%' OR " +
    " LIC_AKA_NAME like '" + licenseeName + "%' ) "
    In this case the DataScroller does not work properly It DataTable traves only one setp when I click the "Next" link, But if I use the Drop down list of the Scroller its works fine.
    Secondly the "Next" "Previous" links of the DataScroller work fine if I use only one stmt in the WhereClause ex: "ACTIVITY_CD LIKE 'A%'".
    Can anybody help me with this, Is this a limitation of DataScroller/DataTable/DataSource tags why does it not work??
    Please help me its urgent.
    Thanks a ton !!

    Thx for the reply, I did try your suggestion It did not throw any exception. Here is the log messages after enabling jbo Debug.
    [391] Reusing a cached session application module instance
    [392] Getting a connection for internal use...
    [393] Creating internal connection...
    [394] Oracle SQLBuilder: Registered driver: oracle.jdbc.driver.OracleDriver
    wClause : (ACTIVITY_CD = 'A') AND (LIC_NAME like 'A%' OR LIC_SHORT_NAME like 'A%' OR LIC_AKA_NAME like 'A%' )
    [395] Column count: 10
    [396] ViewObject : Reusing defined prepared Statement
    [397] $$added root$$ id=-2
    [398] Application Module failover is enabled
    [399] Getting a connection for internal use...
    [400] Creating internal connection...
    [401] Oracle SQLBuilder: Registered driver: oracle.jdbc.driver.OracleDriver
    [402] <AM MomVer="0">
    <cd/>
    <VO>
    <VO Sz="8" St="8" Def="com.sophoi.ipls.media.tv.businessentities.licensee.LicenseeView" Name="licenseeView">
    <Wh>
    <![CDATA[(ACTIVITY_CD = 'A') AND (LIC_NAME like 'A%' OR  LIC_SHORT_NAME like 'A%' OR  LIC_AKA_NAME  like 'A%' )]]>
    </Wh>
    <Or>
    <![CDATA[LIC_NAME ASC]]>
    </Or>
    </VO>
    </VO>
    </AM>Long postings are being truncated to ~1 kB at this time.

  • Case when statement not working

    hi there, I am trying to work out how to get my case statement to work.
    I have got the following code. 
    select pthproto.pthdbo.cnarole.tpkcnarole, pthproto.pthdbo.cnaidta.formataddr as formataddr, cnaidta.dateeffect as maxdate, isnull(cast (pthproto.pthdbo.cnaaddr.prefix1key as varchar (50)),'') + ' ' + isnull(cast (pthproto.pthdbo.cnaaddr.prefix2key
    as varchar (50)),'')+ ' ' + isnull(cast (pthproto.pthdbo.cnaaddr.prefix3key as varchar (50)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.houseidkey as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component1
    as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component2 as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component3 as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component4
    as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component5 as varchar (100)),'') as mailaddress, row_number() over(partition by pthproto.pthdbo.cnarole.tpkcnarole order by cnaidta.dateeffect desc) as rn into #address from pthproto.pthdbo.cnarole
    inner join pthproto.pthdbo.cnaidty on cnarole.tfkcnaidty =cnaidty.tpkcnaidty inner join pthproto.pthdbo.cnaidta on cnaidty.tpkcnaidty = cnaidta.tfkcnaidty inner join pthproto.pthdbo.cnaaddr on cnaidta.tfkcnaaddr = cnaaddr.tpkcnaaddr order by cnaidta.dateeffect
    select *, case when mailaddress is not null then mailaddress else formataddr end as test from #address where tpkcnarole = '18306695'
    The case when statement is struggling with how i have created the column mailaddress.  As it does seem to understand when it is null.  In the example I have got there is no value in any of the columns to create
    the mailaddress.  Hence why I am referencing it from elsewhere.  Due to having a way on the system where it picks up data from 2 different places.    The mailaddress is always correct if there is one, hence why
    trying to reference that one first.  So how do i change this case when statement to work ?            

    It's ok I have fixed my own problem
    when
    (mailaddress
    is
    null 
    or mailaddress

    then formataddr
    else mailaddress
    end
    as test
    case

  • Select statement not working

    hi to all,
    I am trying to write use inner joining . here is code
    DATA:tabname LIKE dd02L-tabname,
         table_disc LIKE dd02t-ddtext.
      SELECT  dd02ltabname dd02tddtext INTO (tabname,table_disc)
        FROM dd02l INNER JOIN dd02t on dd02ltabname = dd02ttabname
              WHERE dd02tddlanguage = 'E' AND dd02ltabclass = 'TRANSP'
                                AND dd02L~tabname = 'ZANKI*'.
        endselect.
          write : tabname.
    I also checked in tables dd02t and dd02l for the table zanki* and data available in both table . but here select statement not working .do u have any idea about this. thank you

    Hi,
    I executed the ur inner join conditin by commenting 'z*' it's working fine.
    I think  where condition is not getting satisfied so u r not getting any data.
    Please conform in where condition you need * 'AND'* or OR
    I change decalration as below.
    DATA:tabname    type TABNAME,
          table_disc type AS4TEXT.
    SELECT dd02l~tabname
           dd02t~ddtext  INTO (tabname, table_disc)
    FROM dd02l  INNER JOIN dd02t on dd02l~tabname = dd02t~tabname
    WHERE dd02t~ddlanguage = 'E' AND
          dd02l~tabclass = 'TRANSP'AND
        dd02L~tabname = 'ZANKI*'.
    endselect.
    write : tabname.
    Regards,
    Pravin

  • I got locked out and changed the password. it did not work and now its disabled for 60 minutes. I dont use itunes, or icloud. how can I get in and why wont it work.

    I am locked out of my iphone. I changed the password and it still wont work. I changed it again and it is now disabled. I do not use itunes, icloud. How can I get into my iphone? I have changed my password and its not working. how can I start over?

    Follow the instructions in this support document. http://support.apple.com/kb/ht1212
    Without a backup, the use of iTunes or the use of iCloud, your only choice is to restore the device as new to remove the passcode.

  • My Center button on my Ipod 3rd generation is not working? What do i do it still goes up and down just doesnt select anything.

    My Center button on my Ipod 3rd generation is not working? What do i do it still goes up and down just doesnt select anything.

    What I had to was backup my device's data to either iCloud or iTunes. Once it was backed up I erased all of my settings as if my iPad just came out of the box. You set it up again and it will asked you to either start as new, back up from iTunes, or back up from ICloud. If you want to see if everything works you can set up as new, otherwise just pick the choice depending on where you backed up your information. Eventually it will restore all of your information and your iMessage and FaceTime should be working. It worked for me, if you'd like more/better instructions let me know!!

  • My iphone 4 3g is completely frozen.  I took a picture and it's frozen on the picture.  Holding down the button on top to restart it does not work.

    my iphone 4 3g is completely frozen.  I took a picture and it's frozen on the picture.  Holding down the button on top to restart it does not work.

    Keep Pressing and Holding the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear..
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    http://support.apple.com/kb/ht1430

  • How do I change default Next/Previous buttons?

    When I automatically create multiple Submenus using the 'Create Chapter Index' command, Encore generates Next and Previous buttons.
    These are rather plain - they seem to be the same style regardless of the style of menu selected - and I'd like to set another default style.
    Can someone tell me how to do this, please?
    Many thanks
    John

    You can build the next/previous buttons any way you like. Just put them on the menu and then specify them as "Next" or "Previous" under the type field in the properties box. There's more information about this in the help files under chapter menu automation.

  • Cursor keys do not properly change to next/previous image

    Since a few days, one of my two Lightroom-computers shows a permanent, quite annoying bug, regarding the curser left/right key:
    It happens in loupe view:
    When I press the cursor-right key, Lightroom doesn't change to the next image
    Instead, it doesn't stop changing to the next image before it reaches the end of the folder .
    Correspondingly with cursor-left, which takes me always to the first image in of the folder...
    Browsing in loupe view is nearly impossible, just the mousewheel still allows to change to the next/previous image.
    This happens for all sets, catalogues, folders, etc. If I have selection, then it takes me to the first/last image of the selection, nothing in between possible.
    Any advice, what went wrong with my system? Everything was smooth a few weeks ago, and everything works fine on my other computer, which should just behave the same...
    Thanks for any hints!
    Harald

    After hours of testing, I identified the reason:
    The problem was raised by the service "skdaemon.exe".
    It's meant to be a keyboard enhancing utility, which was preinstalled (und later updated) on this computer.
    After deactivation (from autostart), LR works fine again, and I didn't notice any missing keyboard functions yet.
    Maybe, this helps someone else in getting around that problem, and thanks for the support.
    Harald

  • Why would menu button's active state not work? Regardless if I import PSD button or use menu widget from the widget library.

    I am using Adobe Muse CC (up-to-date) and tried to troubleshoot the following: Menu button's active state is not working, both on preview and after publishing. I tried many ways to place menu-designed buttons myself using photoshop and used widgets library (buttons, compositions, menus,etc.). Lastly, in regards to buttons, one of my menu buttons appear clear and crisp (psd button) and all others are blurry (though designed,saved and imported the same way);what could be the problem? Can anyone help?Thanks.

    That line is for pop up message?You would typically use a tool tip for that.
    The "Accessibility" features are different and I believe you need additional software to take advantage of them:
    http://java.sun.com/j2se/1.5.0/docs/guide/access/index.html

  • Button hit state not working

    Hi, I made a few buttons for my .fla and all the states are working but the hit state.
    So just to see what the problem was I made a new button, which is only text at each stage, so for up i wrote up, down down etc,
    all the states work but hit, what gives???
    hit is after someone clicks it it should be at the hit state correct?

    Nope. Hit is the shape that will trigger a rollover/click area.
    Normally the hit state is determined by the artwork in the up state and then the over state once you've rolled over, but sometimes you need to override that with an area different area. That is the hit state. But you don't need to put anything there.
    Test it out. Make a circle on the other states and then put a larger square in the hit. Then check out how it works.

  • Active state not working in scrolling site (with anchor links)

    I'm design a scrolling site with anchor links and an horizontal menu on the top.
    when i publish the site and click on the menu buttons the site scrolling to the place of the anchor but the active state in the menu is not working.
    now... when i leave the main page (were the scrolling site is) and then return back to it all active states are working perfectly
    anyone have this bug? or any one know how to fix it ?

    Hmmm...I've just been playing around, and I think I got the Active State to work correctly.  I think my problem was not understand what Active State means.
    To answer your question, I was changing the Font Color and Box Fill Color of the Active State.
    I did not understand that Active State means the look of the Menu Item when the PAGE is active.  I thought it meant the look of the Menu item when the cursor is scrolling down the Menu (i.e. when the MENU is Active, not the page).
    Look at this page for an example of what I'm trying to achieve...
    http://www.pgavdestinations.com
    When you hover over the "Work" menu item, and move the cursor down the menu, the state of "Work" remains changed until you move the cursor off of that menu column. It does NOT return back to it's Normal state until you are off of that menu column.
    Is there a way to achieve this with the menu states in Muse?
    Thanks for the replies!
    Dave.

  • User Login - go to previous URL not working

    Hi
    I have a user login set up using the DW server behaviour.
    The problem I have is that the redirect to the previous url doesnt work and always directs a successful login to the default successful login page.
    The problem seems to revolve around this part of the code:
                    if (isset($_SESSION['PrevUrl']) && FALSE) {
                        $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
                    header("Location: " . $MM_redirectLoginSuccess);
    and in particular the use of the && FALSE check.  I can see from my debugger that the value of $_SESSION['PrevUrl'] is properly set to the previous url.  If I remove the && FALSE check the login works as I would expect and redirects to the previous URL.  However, as this is 'out of the box' DW code I am concerned in case removing the && FALSE check may be doing some harm.  I have to admit I dont understand the logic of what the && FALSE part of the IF statement is actually checking for.
    Any advice and/or reassurance that by removing the && FALSE is not doing any harm or exposing me to any risks would be appreciated.
    Thanks

    session_start() is set
    As I step through the code and watch the variables I can see that the value of $_SESSION['PrevUrl'] is equal to the previous url but $MM_redirectLoginSuccess remains as the default success page.
    If I remove the && FALSE element from the IF statement, the value of MM_redirectLoginSuccess is changed to the the value of $_SESSION['PrevUrl'], which is what I want.
    So my question is, what is the && FALSE bit doing and why is it there and do I need it?

  • Display/Change/Delete of planning object not working in BPS

    Hi Guys
    While displaying or changing object in planning workbench, system is taking too long to process the request and request doesn't completes even in hours. The following operations are not working
    1. Delete Planning Area/Level.
    2. Display/Change planning Level.
    3. Display/Change Planning Layout.
    4. When clicking on Variable Tab of infoarea.
    5. When clicking on Set variable button.
    In all of the above mentioned cases System displays a message "Generating Environment" and it runs for indefinite time.All this is ha0
    We are on Suppport Pack 12 of BI NetWeaver(2004S)and we are using BPS for our planning application.
    Thanks
    Tripple k

    Hi Dear
    Thanks for info. i know that it will take some time to regenerate the BPS classes after making changes in cube but in my system its taking at least half an hour which i think is too much.....i don't think that its normal behaviour of system...
    Thanks
    Kamal

  • UPDATE statement not working

    Hi,
    I want to modify the record of PA0009 .I want to change the enddate of personnel No.
    UPDATE PA0009 SET ENDDA = '30.10.2009'
                  WHERE PERNR = '1'
                  AND BEGDA =  '01.09.2008'.
    The above statement is not working. How to modify the enddate which is part of key table.
    Please guide.
    Thanks and Regards
    K Srinivas

    Hello,
    Set the data format to the internal date format (YYYYMMDD), so in the set and the where clause pass '20091030' as ENDA which is to be changed and BEGDA in the where clause as 20080901. Also if the after the changes if the key combination results in dupicate records then the update will faiil. Just make sure that the combination of PERNR,SUBTY,OBJPS,SPRPS,ENDDA, BEGDA and SEQNR remains unique, if a record exists with this combination then sy-subrc will be 4 and the record will not be updated.
    Regards,
    Sachin

Maybe you are looking for

  • How can i get mp3 music in a sd card from itunes

    how can i get mp3 music in a sd card from itunes

  • How debug a routine created in InfoPackage for Data selection ?

    Hi everybody, I decide to debug a routine create in InfoPackage. Here, the name of my ABAP routine: program conversion_routine form compute_TREATMENT_DATE When i execute the "/h" command to launch debugger, i don't see this routine in Call Stack... H

  • Idea Tab A8-50 (A5500)- PAID apps won't install

    Good Afternoon, I purchased an A5500 (A8-50) tablet in May in Austria/Europe. I noticed an issue concerning the use of PAID apps purchased from Google Play Store. I do not experience these problems with any other devices or Android-versions. I receiv

  • Multicast ASM & SSM

    hi just need to ask if we have both ssm and asm range defined in a mpls multicast domain, which would be used to establishing the tunnel incase both ssm and asm ranges are similar. is there any preference to use ssm first and then ssm or vice-versa.

  • Trouble Updating iMovie 3.0 to 4.0

    I cannot find an upgrade for iMovie 3.0.3. The only update available that I can find is 4.0.1. which I downloaded and tried to install. This version requires that you have 4.0 installed but after numerous searches I could not find it. Any help would