Notes interaction pauses slide that contains multiple buttons

I have several slides, each with a Notes Interaction. As advised, each of the notes is set to Rest of Project and are not resized.
On the slides with a Notes Interaction, there are multiple buttons made out of Smart Objects. When a button is clicked, an advanced action causes a certain text caption to appear.
The problem is that the buttons work UNTIL the Notes Interaction appears on the slide. As soon as the Notes Interaction appears, the slide seems to be paused and the buttons that are supposed to show text captions no longer work.
I'm hoping that someone can help with a solution to this.
By the way, this only seems to happy when previewing in HTML web browser.

Jay,
I had replied in an earlier thread that you need to have ONLY ONE notes interaction in the entire project - Not on every slide. The interaction is designed to be placed only once inside a project. So, placing it in the first slide of your project and setting 'Rest of Project' on it should cater to your need.
You can choose slide notes or project based notes in the edit panel of the interaction.
Marcellus

Similar Messages

  • How can I make one slide that contains multiple slides?

    Hi, I want to make slideshow for presentation. And I want to know how can I make this slide.
    For example in this picture, have 1 main slide and 6 sub slides. I want to make slide like this, and all slides should be in one slide. And I want to zoom in to sub slide when I click and then zoom out when I click one more. And then second slide should be zoom in when I click and zoom out when I click again. And then slide 3 etc.
    I want to know how can I do this.

    There are two ways to do this.
    1. Duplicate the main or first slide numerous times - as many as you'll need for the show, which looks like 6 including the first "overview slide".
    2. You know have two choices - either use the Magic Move transition between the first slide and the next, which has the main box centre screen and enlarged proportionally.
    3. Or enlarge the slides so that the main point is central, but use hyperlinks to move between the slides. This also gives you the liberty of changing the order spontaneously should the situation demand. Using the main first slide, place an invisible box around each element and use a link to move to that slide which is enlarged. Then you have to decide if you will come back each time to slide 1 (the overview) by having the whole slide hyperlinked to slide 1, or the whole slide linked to the next slide. That way you don't have to go looking for the hyperlink area.
    The Magic Move effect will give your presentation a "Prezi" like effect, while the hyperlinked version I've described will just use gentle dissolves between each slide.
    I will sometimes use 3 because I want to encourage audience participation and let them choose where to go next... e.g., the various elements of a 747 wing assembly, or the interior of a large cruise ship, showing state rooms, dining, pool area, ballroom, etc.
    Les

  • Creating interactive swf files that contain flash files that don't play once loaded on server

    I am creating an interactive swf file that contains a  flash movie f4v file and when I preview the page in ID it plays, but once I export the InDesign file to swf, insert that on a html page using Dreamweaver (so I can send a link and not a file out) the movie doesn't play, just the first frame of the clip.  I have uploaded the f4v file to our server and linked in the original ID file and it still doesn't play.  Any suggestions or similar issues?

    I have left the page up for quite a while to see if it is just taking longer to load that clip and that doesn't seem to be it.  I am just stumped and honestly not knowledgable on how websites and servers work - just know how to get my documents up so I can send links.

  • Okay i had to install Itunes onto my new OS because window's Vista messed up on me and i can't get any of my old purchases back from my account such as music and movies any ideas on how to get them back (i do not have the folder that contains old items)

    Okay i had to install Itunes onto my new OS because window's Vista messed up on me and i can't get any of my old purchases back from my account such as music and movies any ideas on how to get them back (i do not have the folder that contains old items from the last itunes or anything from that OS because it had a virus and i just wanted windows 7)

    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Hope this helps,
    JD

  • How do I make the slide "pause" when there are multiple buttons present?

    I'm creating a selection slide that will allow the user to click button 1, 2, 3 or 4 to jump to the first slide of a topic group or to click button 5 to exit.   The slide should just "stop" until any of the buttons are clicked.  Unfortunately, the slide ALWAYS goes to the jump for button 1 without waiting for any action.
    I've tried adding an invisible click box and an invisible text field with no success.
    What am I missing or doing incorrectly?
    Thanks in advance for any guidance.

    Hi there
    Yep, I can click the image and it scales back up.
    You need to look at the properties for your button objects. I can easily see on the timeline that you have apparently cleared the pause point for each of them. If they had a pause point, they might look like this:
    Cheers... Rick

  • Accordian interaction pauses slide.  Any way around this?

    Hi,
    I've made a slide that include an audio intro ("click each heading to learn more.")  When I add the accordian widget to the page, the slide is automatically paused and the audio doesn't play.  I worked around this by having the widget appear AFTER the audio plays.  The widget is set to display for 1 second.
    But I also have the playbar enabled.  When a user clicks the play button in the player, the slide advances for the 1 second of the widget and then stops.  User has to click play in the playbar again to advance the slide.
    Any ideas on how to work around this?  I'd like to have the widget NOT pause the slide.
    Thanks in advance for any info.
    Sherri

    Here's my timeline.  I have a click box, over a button.  This shows up after the audio.  If user clicks it, the presentation goes to the next slide.  This is not the issue.
    The issue is when the user clicks Play in the playbar at the bottom (see below).  When they click "play," the slide advances for the duration of the widget (1 second).  They have to hit play again to go to the next slide.

  • Creating Form Manually w/Process that Contains Multiple Insert Statements

    Hello,
    I've been trying to create a form manually by following the instructions in the Users Manual under "Creating Form Manually - Creating a Process that Contains One or More Insert Statements." I have not had much luck and I think that it is because I'm not sure what is ment when said:
    "Create a conditional process of type PL/SQL that executes when the user clicks the button."
    Here is the PL/SQL that I used:
    BEGIN
    UPDATE T
    SET first_name = :P1_FIRST_NAME,
    last_name = :P1_LAST_NAME
    WHERE ID = :P1_ID;
    END;
    I am not sure where to create this process,however. I've tried several areas (i.e. Processes under Page Processing, Processes under Page Rendering, Under Conditions on the Button, etc.) but will get errors or no effect at all.
    Please let me know what i am doing wrong. If you could provide me with a simple example of how to create a form manually, that would be greatly appreciated.
    Thanks.
    Linda
    Message was edited by:
    lhudak

    Hello Scott,
    I followed your instructions and the error that I get is that nothing happens at all. I submit the page and nothing gets updated, deleted or added.
    I have the table, report, processes and form in place. Here are the settings:
    Process Point: is "on-submit, after computations...(in the Page Processing Section)
    Type: PL/SQL anonymous block
    Source: BEGIN
    INSERT INTO T ( first_name, last_name )
    VALUES (:P1_FIRST_NAME, :P1_LAST_NAME);
    END;
    Conditional Processing: When Button Pressed (Create (ADD))
    For the Button:
    Database Action: SQL Insert action
    URL Redirect: No Target
    Should I have any special settings on the Page Item? (i.e. under Default: Default Value Type: PL/SQL Expression) or maybe under Conditions: Condition Type - PL/SQL?
    Please let me know.
    Thanks
    Linda

  • Visio Drawing Using Data Graphics with data that has a field that contains Multiple Values.

    I am working on creating a drawing for SMTP connectors.  I decided I would use a Data Graphic connecting to a spreadsheet.  In the spreadsheet there are a few fields that are Multi-Value fields.  For instance SmartHosts contains multiple Ip
    address.  I am trying to get this to format things so that the IPs show on the next line down instead of continuing on the same line until it wraps. 
    Does anyone know a way I could do this?
    Jeff C

    Hi Jeff,
    Arrange the IP values in spreadsheet using Alt+Enter (Use this key pair as a separator between two IP values). Now link this spread sheet to Visio. The values should appear in the same manner in data graphics as your expectation.
    Let me know if you meant something else.
    Thanks,
    Dheeraj 

  • Cfdirectory action=list not working with directories that contain an ampersand

    Our IT group just upgraded one of the our file share servers from Windows Server 2008 R2 to Windows Server 2012 R2.  We quickly noticed a problem with CFDIRECTORY listing the contents of directories that contain an ampersand (e.g. //192.168.1.10/Simon & Garfunkel/).  We are using ColdFusion 10 Update11 on Windows Sever 2012 R2 and everything worked fine prior to this upgrade.  In addition, we created the same directory locally and tried running CFDIRECTORY and the same problem occurred.  The cfm page doesn't crash or report an exception in the log, it just doesn't return any results.  Thanks in advance for help on this issue.

    Thanks Adam, I just found the problem. I think it was a
    problem in the database, though I'm not sure why it works on the
    development and not on the production. The field that I pull the
    "thename" value from is a type varchar(10) and when cfoutputted
    like this [#thename#] it would result in [O MAN], however I tried
    outputting it into a textbox field and it showed [O MAN ] (<---
    actually "O MAN" followed by 5 spaces). The value was padded to ten
    characters. I'm baffled. Varchar is supposed to be variable width
    only using the number of actual characters without padding, right?
    Of my own folly I was trimming the results of the #thename#
    #codeno# pair and not thename itself. Once I set thename to
    trim(thename) it worked, of course. I'm still very confused why
    this works in the development environment and not in production,
    and to why the padding to begin with. But, I will not borrow any
    more trouble and just be happy it is resolved!
    Thanks for all your help!

  • Group messaging not working with groups that contain non iphone users

    I have an Iphone 5 and for some reason I can't send/receive group messages with groups that contain non Iphone users.  Basically I recieve single text messages/imessage from each person who responds to the group message.  This is incredibly annoying.

    Hello, megbu36. 
    Thank you for visiting Apple Support Communities.
    Check to make sure that group messaging is enabled.  Go to Settings > Messages and turn on Group messaging.
    iOS: Understanding group messaging
    http://support.apple.com/kb/HT5760
    Cheers,
    Jason H.

  • How do I attach a folder that contains multiple documents? I try and it will only allow me to pick one document at a time.

    I'm trying to upload to my school's online blackboard (which is where I submit papers) and I cannot seem to figure out how to upload a folder I made on my desktop. I created multple folders containing more than one document and thought this would be easier then each individual document. But I cannot attach the whole folder. I have to pick each document which I could have done in the beginning!! Any thoughts? I tried to hit shift and then control to highlight all of them but that did not work. Any advice welcome:)

    Geiger,
    This is what you get when you key the word sections into the help function:
    *Creating Sections*
    +In a word processing document, a section consists of one or more pages.+
    +Each Pages template consists of one or more predefined sections. Every time you add pages to the document by using the Sections (word processing) or Pages (page layout) button in the toolbar, you add a new section.+
    +In a page layout document, each page is one section. You can use the predefined sections as they are, or you can modify or remove them one page at a time.+
    +In a word processing document, you can use the predefined sections as they are, or you can create or remove section breaks to define your own sections. To add a page to a section, add more content and pages will be automatically added, or insert a page break.+
    +Here are ways to work with section breaks in word processing documents:+
    +To insert a section break, place the pointer where you want the break to occur, and then choose Insert > Section Break or click Sections in the toolbar and choose an item from the list.+
    +When you show invisibles in your document (click View in the toolbar and then choose Show Invisibles), a section break symbol marks the location of the section break.+
    +The new section has the same formatting as the previous section until you change it. Changes you make to master objects, headers, footers, or page numbering will apply only to the section in which you make the changes. See Using Master Objects (Repeated Background Images) for information about master objects.+
    +To remove a section break, click at the beginning of the line that follows the break and press the Delete key.+
    -Dennis

  • Making a PDF that contains multiple jpegs with captions

    Hi - I am not very savvy technically and need to create a PDF document with multiple jpeg images with captions.  Is it best for me to do this online by using the "convert to PDF" service at acrobat.com?  I would like to know if it will be easy for me to upload and label 4-5 images and then make that into a PDF before I pay the monthly fee.  I appreciate any help I can get!!  Thanks.

    CreatePDF doesn't have a word processing tool but you could do this using the Acrobat.com service to do this. Acrobat.com has a word processing tool and the ability to convert your file to PDF. You can test at this capability with a free trial.

  • Creating 'Bookmarks Bar' entries that contain multiple URL's

    As a new user of Safari, I noted that the default 'bookmarks bar' contains two items ('Apple' and 'News') that have their own dropdown menus of sub-links.
    As with 'Apple' and 'News' I would like to be able to put items on the bar that offer a choice of different URL's.
    How can these be created?
    Thanks.

    Click on the book icon at the left end of the Bookmarks Bar. This opens the Bookmarks Manager.
    On the right you'll see the various collections of bookmarks, including "Bookmarks Bar". Single-click on this item.
    On the right side you'll see the two folders you mentioned in your post. Additional folders can be added by clicking on the + button at the bottom of this section. Name the folder. Then start adding the URL's. This can be accomplished by:
    Click on the Book Icon to return to the regular browser window.
    Type a URL address in the address window
    Click on the book icon to return to the Bookmarks Manager
    Drag the URL to its applicable folder.
    Or, if URL's already exist in the Bookmarks Manager collections, you can copy/paste to the applicable folder.
    If you have existing bookmarks from another browser, say Firefox, you can import them into Safari using the "import bookmarks" command in the File Menu. From there you can move them to another folder, or copy/paste them.
    Let me know if you need any further clarification.

  • Re: EJB Control not working with methods that contain arguments

    John,
    I'm not qualified to answer your EJB control question, but before you
    become too disillusioned with page flows I'd like to mention that the
    request scoped data form and and the return-to="page" issues you
    mentioned have been addressed for the next service pack. We've
    introduced the ability to specify a page flow scoped form bean which
    lives for the life of the page flow, and we've clarified the return-to
    values to include both "currentPage" and "previousPage" which should
    clarify the expected behavior.
    I hope you give it a try.
    Thomas
    John Hundley wrote:
    Oh well guess you guys gave up on this one. Thats ok, I have utilized a workaround
    that forgoes your non working controls just like I have workarounds for your dataforms
    that do not maintain their data between pages, your retrun to page that does not
    work etc.... At this rate I should have just used struts and JBoss.
    "John Hundley" <[email protected]> wrote:
    oop's attached the wrong one here is the right one.
    "John Hundley" <[email protected]> wrote:
    Ok I have attached one of my beans.
    "Anurag" <[email protected]> wrote:
    John,
    For a stateless session bean, the ejbCreate() method is called for
    every
    individual method call. This is because the bean instance is returned
    to the
    pool after every method call, it does not hold any state.
    I am still surprised about the behaviour you are seeing.
    Can you just attach your stateless session bean. You need not sendthe
    dependent files, since we only want to sniff the call made to the stateless
    EJB method, and are not concerned with the implementation.
    Regards,
    Anurag
    "John Hundley" <[email protected]> wrote in message
    news:[email protected]...
    Anurag,
    I am using the GA release. My control looks identicle toTraderEJBControl.jcx
    except of course it is extending a different home and bean interface.The
    bean
    itself does not exacly match the traderbean but it does look very
    similar
    to MusicBean.java
    in the tutorialsApp. One thing that has me a bit confused is the
    fact
    the
    create()
    method is being called every time I make a method call on the control.Shouldn't
    the bean only be created once at the first method call and persistfor the
    life
    of the session?
    John
    "Anurag" <[email protected]> wrote:
    John,
    Have you tried running the ejbControl/TraderEJBClient.jws in SamplesApp.
    It
    does involve calling methods on the stateless EJB TraderEJB through
    an
    EJB
    control, which accept parameters and run fine.
    Could you also confirm that you are using the 8.1 GA release, andnot
    the
    beta.
    Regards,
    Anurag
    "John Hundley" <[email protected]> wrote in message
    news:[email protected]...
    Raj,
    I cannot attach them here. I am not sure how you would test them
    anyway
    as I
    would have to send you my Oracle schema and you would have to
    set
    up
    a
    database
    instance. There is no way I can do that. If you could please
    send
    me an
    e-mail
    I can attach the relevant files in reply and you could take a
    look
    at them
    and
    see if you see any obvious problems.
    Thanks,
    John
    "Raj Alagumalai" <[email protected]> wrote:
    John,
    Can you attach the ejb jar, the jcx and the jws files that you
    have
    created.
    I will test and get back to you.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "John Hundley" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I have created an EJB control on a stateless session bean.
    For
    some
    reason when
    I attempt to call a method on my control that takes any number
    of
    arguments I
    get a java.lang.IllegalArgumentException yet if I call a method
    that
    takes
    no
    arguments everything works fine. I used the debugger to walk
    through
    the
    code
    and have discovered that every time I call any method on the
    control
    the
    create()
    method gets called, this is exactly where the error is occurring.It is
    almost
    like the control is trying to pass my method args to the create()
    method
    instead
    of the method I am calling. I have tested all of the methods
    in
    the
    ejb
    by manually
    coding everything (getInitialContext ejb.create etc) in a .jsp
    and
    calling
    all
    of the methods within that .jsp. There they all work fine
    so
    I
    am
    pretty
    sure
    the control is doing something funky. Any ideas as to what
    is
    going
    on
    and how
    I can fix it?
    Thanks,
    John

    Was this issue ever resolved ? We are running into the same problem.
    The last response is "I'm not qualified to answer your EJB control question."
    Can this be escalated to someone who can please ?
    Regards
    Shahriar

  • Hows this sound? Send an email that contains HTML button to update DB?

    My thought is to send an email containing a link that when clicked it calls a page with several items and their values and the page has no authorization or authentication to update a record in the DB.
    Can I send a session id or key to secure it as good as possible?
    Thanks, Bill

    We do this to confirm the email address a user has entered in a registration form. We write a unique code created with SYS_GUID() to a field in the USERS table, then send an email to the user containing a link that includes that code. When they click on the link, they are confirmed as registered and the activation code is deleted so that the link can't be used again.

Maybe you are looking for