PDF/URL links continues project when clicked on...

Hi all
I have put PDF and URL links into my project. What I want is for the user to click on these and read what comes up, then close either the PDF or URL link then go back into the project and click onto the next slide when ready.
At the moment, once one of the links has been clicked on either the PDF or URL opens up but the project continues onto the next slide, which is not what I want.
I'm sure there is a way to change this but I cannot see the setting.
Any help would be greatly appreciated.
Cheers

Hi there
The options you mention are for when the presentation is presented from inside a frameset. The option you are interested in is the "Continue" option. You need to clear that option to keep the slide from continuing when the object is clicked.
Cheers... Rick
Helpful and Handy Links
Captivate Wish Form/Bug Reporting Form
Adobe Certified Captivate Training
SorcerStone Blog
Captivate eBooks

Similar Messages

  • Links not working when clicking (code included)

    Ok im totally new to AS so i will do best to describe issue i am running into.....
    Have a cover photo created in PS,and on photo, there is text, which when click should open pdf file specified.....well when i hover over, and click....it doesnt go anywhere....(example below)  THX for any responses and assistance.
        EX:        this would be the cover photo
                      REPORT
      Analysis  (this should have a sub menu of PDF's which it does, but when click on the pdf's refrenced, it doesnt go anywhere)
      Link 2     (PDF)
      Link 3     (PDF)
      Link 4     (PDF)
      Link 5     (same as Analysis)
      Link 6     (PDF)
       ect ect...
    CODE BELOW....
    import flash.net.URLRequest;
    import flash.events.MouseEvent;
    import flash.events.Event;
    //init menu links
    var link_1:Object = this.getChildByName( 'MenuLinkMC_1' );
    var link_2:Object = this.getChildByName( 'MenuLinkMC_2' );
    var link_3:Object = this.getChildByName( 'MenuLinkMC_3' );
    var link_4:Object = this.getChildByName( 'MenuLinkMC_4' );
    var link_5:Object = this.getChildByName( 'MenuLinkMC_5' );
    var link_6:Object = this.getChildByName( 'MenuLinkMC_6' );
    var link_7:Object = this.getChildByName( 'MenuLinkMC_7' );
    var link_8:Object = this.getChildByName( 'MenuLinkMC_8' );
    var link_9:Object = this.getChildByName( 'MenuLinkMC_9' );
    var _close:Object = this.getChildByName( 'closeMC' );
    this._close.addEventListener( MouseEvent.CLICK, quit );
    var sub_menu_notes_slide:Object = this.getChildByName( 'SubMenu_NotesSlideMC' );
    var sub_menu_discussion_slide:Object = this.getChildByName( 'SubMenu_DiscussionSlideMC' );
    //set url addresses
    var url_link_1:URLRequest = new URLRequest( 'PDF_FILES/1.  MD&A Introduction.pdf' );
    var url_link_2:URLRequest = new URLRequest( 'PDF_FILES/9.  Independent Auditors\' Report.pdf' );
    var url_link_3:URLRequest = new URLRequest( 'PDF_FILES/10.  Balance Sheets.pdf' );
    var url_link_4:URLRequest = new URLRequest( 'PDF_FILES/11.  Statements of Revenues, Expenses and Changes in Fund Net Assets.pdf' );
    var url_link_5:URLRequest = new URLRequest( 'PDF_FILES/12.  Statements of Cash Flows.pdf' );
    var url_link_6:URLRequest = new URLRequest( 'PDF_FILES/13.  Note 1 - Summary of Significant Accounting Policies.pdf' );
    var url_link_7:URLRequest = new URLRequest( 'PDF_FILES/31.  Glossary of Terms.pdf' );
    var url_link_8:URLRequest = new URLRequest( 'PDF_FILES/EOY Audited Financials - FY2011 with blue links.pdf' );
    var url_link_9:URLRequest = new URLRequest( 'http://www.cpsenergy.com' );
    //run subroutines
    noMenu();
    set_link( link_1, url_link_1, sub_menu_discussion_slide );
    set_link( link_2, url_link_2, null );
    set_link( link_3, url_link_3, null );
    set_link( link_4, url_link_4, null );
    set_link( link_5, url_link_5, null );
    set_link( link_6, url_link_6, sub_menu_notes_slide );
    set_link( link_7, url_link_7, null );
    set_link( link_8, url_link_8, null );
    set_link( link_9, url_link_9, null );
    //subroutines
    function set_link( linkObject:Object, linkURL:URLRequest, optMenu:Object ):void {
        linkObject.addEventListener( MouseEvent.CLICK, click_link );
        linkObject.addEventListener( MouseEvent.MOUSE_OVER, mouse_over_link );
        if ( optMenu != null ){
            this.setChildIndex( MovieClip( optMenu ), 9 );
            linkObject.addEventListener( Event.ENTER_FRAME, slide_sub_menu );
        function click_link( evt:MouseEvent):void {
            navigateToURL( linkURL, 'File.browseForOpen()' );    <-----(note: should this be set to "_blank"  ?)
        function mouse_over_link( evt:MouseEvent ):void {
            linkObject.mouseChildren = false;
            linkObject.buttonMode = true;
            linkObject.useHandCursor = true;
        function slide_sub_menu( evt:Event ):void {
            if ( optMenu.hitTestPoint( mouseX, mouseY, true )) {
                optMenu.nextFrame();
            } else {
                optMenu.prevFrame();
    function quit( evt:MouseEvent ):void {
        fscommand("quit", "");
    function noMenu():void {
        var NoMenu:ContextMenu = new ContextMenu();
        NoMenu.hideBuiltInItems();
        this.contextMenu = NoMenu;
    ------------------------------------------------------------------------------------------ -------------------------------AND
    import flash.events.MouseEvent;
    //init sublinks
    var sublink_1:Object = this.getChildByName( 'SublinkMC_1' );
    var sublink_2:Object = this.getChildByName( 'SublinkMC_2' );
    var sublink_3:Object = this.getChildByName( 'SublinkMC_3' );
    var sublink_4:Object = this.getChildByName( 'SublinkMC_4' );
    var sublink_5:Object = this.getChildByName( 'SublinkMC_5' );
    var sublink_6:Object = this.getChildByName( 'SublinkMC_6' );
    var sublink_7:Object = this.getChildByName( 'SublinkMC_7' );
    var sublink_8:Object = this.getChildByName( 'SublinkMC_8' );
    var sublink_9:Object = this.getChildByName( 'SublinkMC_9' );
    var sublink_10:Object = this.getChildByName( 'SublinkMC_10' );
    var sublink_11:Object = this.getChildByName( 'SublinkMC_11' );
    var sublink_12:Object = this.getChildByName( 'SublinkMC_12' );
    var sublink_13:Object = this.getChildByName( 'SublinkMC_13' );
    var sublink_14:Object = this.getChildByName( 'SublinkMC_14' );
    var sublink_15:Object = this.getChildByName( 'SublinkMC_15' );
    var sublink_16:Object = this.getChildByName( 'SublinkMC_16' );
    var sublink_17:Object = this.getChildByName( 'SublinkMC_17' );
    var sublink_18:Object = this.getChildByName( 'SublinkMC_18' );
    //set link names dynamic text
    sublink_1.SublinkNameDT.text = 'Note 1 - Summary of Significant Accounting Policies';
    sublink_2.SublinkNameDT.text = 'Note 2 - Cash, Cash Equivalents and Investments';
    sublink_3.SublinkNameDT.text = 'Note 3 - Disaggregation of Current Receivables and Payables';
    sublink_4.SublinkNameDT.text = 'Note 4 - Capital Assets';
    sublink_5.SublinkNameDT.text = 'Note 5 - Revenue Bond and Commercial Paper Ordinances Requirements';
    sublink_6.SublinkNameDT.text = 'Note 6 - Revenue Bonds';
    sublink_7.SublinkNameDT.text = 'Note 7 - Commercial Paper and Related Revolving Credit Agreement';
    sublink_8.SublinkNameDT.text = 'Note 8 - Flexible Rate Revolving Note';
    sublink_9.SublinkNameDT.text = 'Note 9 - Employee Pension Plan';
    sublink_10.SublinkNameDT.text = 'Note 10 - Other Postemployment Benefits';
    sublink_11.SublinkNameDT.text = 'Note 11 - Other Obligations and Risk Management';
    sublink_12.SublinkNameDT.text = 'Note 12 - Other Financial Instruments';
    sublink_13.SublinkNameDT.text = 'Note 13 - Lease-Leaseback';
    sublink_14.SublinkNameDT.text = 'Note 14 - South Texas Project';
    sublink_15.SublinkNameDT.text = 'Note 15 - Commitments and Contingencies';
    sublink_16.SublinkNameDT.text = 'Note 16 - Leases';
    sublink_17.SublinkNameDT.text = 'Note 17 - Pollution Remediation Obligation';
    sublink_18.SublinkNameDT.text = 'Note 18 - Subsequent Events';
    //set url addresses
    var url_sublink_1:URLRequest = new URLRequest( 'PDF_FILES/13.  Note 1 - Summary of Significant Accounting Policies.pdf' );
    var url_sublink_2:URLRequest = new URLRequest( 'PDF_FILES/14.  Note 2 - Cash, Cash Equivalents and Investments.pdf' );
    var url_sublink_3:URLRequest = new URLRequest( 'PDF_FILES/15.  Note 3 - Disaggregation of Current Receivables and Payables.pdf' );
    var url_sublink_4:URLRequest = new URLRequest( 'PDF_FILES/16.  Note 4 - Capital Assets.pdf' );
    var url_sublink_5:URLRequest = new URLRequest( 'PDF_FILES/17.  Note 5 - Revenue Bond and Commercial Paper Ordinances Requirements.pdf' );
    var url_sublink_6:URLRequest = new URLRequest( 'PDF_FILES/18.  Note 6 - Revenue Bonds.pdf' );
    var url_sublink_7:URLRequest = new URLRequest( 'PDF_FILES/19.  Note 7 - Commercial Paper.pdf' );
    var url_sublink_8:URLRequest = new URLRequest( 'PDF_FILES/20.  Note 8 - Flexible Rate Revolving Note.pdf' );
    var url_sublink_9:URLRequest = new URLRequest( 'PDF_FILES/21.  Note 9 - Employee Pension Plan.pdf' );
    var url_sublink_10:URLRequest = new URLRequest( 'PDF_FILES/22.  Note 10 - Other Postemployment Benefits.pdf' );
    var url_sublink_11:URLRequest = new URLRequest( 'PDF_FILES/23.  Note 11 - Other Obligations and Risk Management.pdf' );
    var url_sublink_12:URLRequest = new URLRequest( 'PDF_FILES/24.  Note 12 - Other Financial Instruments.pdf' );
    var url_sublink_13:URLRequest = new URLRequest( 'PDF_FILES/25.  Note 13 - Lease-Leaseback.pdf' );
    var url_sublink_14:URLRequest = new URLRequest( 'PDF_FILES/26.  Note 14 - South Texas Project.pdf' );
    var url_sublink_15:URLRequest = new URLRequest( 'PDF_FILES/27.  Note 15 - Commitments and Contingencies.pdf' );
    var url_sublink_16:URLRequest = new URLRequest( 'PDF_FILES/28.  Note 16 - Leases.pdf' );
    var url_sublink_17:URLRequest = new URLRequest( 'PDF_FILES/29.  Note 17 - Pollution Remediation Obligation.pdf' );
    var url_sublink_18:URLRequest = new URLRequest( 'PDF_FILES/30.  Note 18 - Subsequent Events.pdf' );
    //run subroutines
    set_sublink( sublink_1, url_sublink_1 );
    set_sublink( sublink_2, url_sublink_2 );
    set_sublink( sublink_3, url_sublink_3 );
    set_sublink( sublink_4, url_sublink_4 );
    set_sublink( sublink_5, url_sublink_5 );
    set_sublink( sublink_6, url_sublink_6 );
    set_sublink( sublink_7, url_sublink_7 );
    set_sublink( sublink_8, url_sublink_8 );
    set_sublink( sublink_9, url_sublink_9 );
    set_sublink( sublink_10, url_sublink_10 );
    set_sublink( sublink_11, url_sublink_11 );
    set_sublink( sublink_12, url_sublink_12 );
    set_sublink( sublink_13, url_sublink_13 );
    set_sublink( sublink_14, url_sublink_14 );
    set_sublink( sublink_15, url_sublink_15 );
    set_sublink( sublink_16, url_sublink_16 );
    set_sublink( sublink_17, url_sublink_17 );
    set_sublink( sublink_18, url_sublink_18 );
    //subroutines
    function set_sublink( sublinkObject:Object, sublinkURL ):void {
        sublinkObject.addEventListener( MouseEvent.CLICK, click_sublink );
        sublinkObject.addEventListener( MouseEvent.MOUSE_OVER, mouse_over_sublink );
        sublinkObject.addEventListener( MouseEvent.MOUSE_OUT, mouse_out_sublink );
        function click_sublink( evt:MouseEvent):void {
            navigateToURL( sublinkURL, '_blank' );
        function mouse_over_sublink( evt:MouseEvent ):void {
            sublinkObject.mouseChildren = false;
            sublinkObject.buttonMode = true;
            sublinkObject.useHandCursor = true;
            sublinkObject.gotoAndStop( 'On' );
        function mouse_out_sublink( evt:MouseEvent ):void {
            sublinkObject.gotoAndStop( 'Off' );

    I think you need double quotes rather than single.. as in
    new URLRequest( 'PDF_FILES/1.  MD&A Introduction.pdf' );
    try
    new URLRequest( "PDF_FILES/1.  MD&A Introduction.pdf" );
    also the file names are a little odd.... there is a space after the period 1. (space here) MD...this will present problems once on server.
    And then you have an ampersand in the file name..... while that may work, sometimes servers are much more particular.... things like spaces and special characters in file names can cause problems.
    One recommended method of naming files and folders is:
    All lower case (no caps)
    No_spaces_use_underscore_instead
    No special characters
    Best wishes,
    Adninjastrator

  • I work with a web app that will not run on Firefox, so I changed my default browser back to IE but the URL link continues to open in Firefox. How can I get it to default to IE?

    After changing my default browser from Firefox back to IE, other URLs are defaulting to IE but I have one URL that continues to default to Firefox. This web app will only run in IE so the only way I can run it is to open IE first and then enter or select the URL. Is there a setting someplace that will change the default browser for this URL to be IE?

    You can make IE the default browser, that will reset some registry keys<br />
    Control Panel > Internet Options: Programs<br />
    Put a check in the box next to 'Internet Explorer should check to see whether it is the default browser'<br />
    Start IE and let IE make itself the default browser.
    Check the default settings in:<br />
    Control Panel > Add/Remove Programs > "Set Program Access And Defaults" (on the left)<br />
    Open: Custom (click arrow on the right)<br />
    Select "Internet Explorer" under "Choose a default Web Browser"<br />
    Click OK

  • Links change size when clicked

    I have a site done in Dreamweaver CS5 that the links in the navbar change size when clicked.  The bar is set to 95% but the links look like they are abound 50% when the mouse button is pressed.  All references to the size of the links in the HTML and CSS Page Properties are set to 95%. None of the other links properties; a, a:visited, a:hover, a:active, a:link, a:focus change the size.
    I've looked for several hours for solutions.  Anybody got any ideas?  BTW, this is my first site in Dreamweaver.

    I don't see any change in font-size in Firefox 3.6 on Win.  But your code is a bit confusing.
    Change this:
    a {
        font-size: 95%;
    a {
        font-size: 95%;
    a:visited {
        text-decoration: none;
        color: #960;
    a:hover {
        color: #2A3FFF;
        text-decoration: none;
    a:link {
        text-decoration: none;
        color: #626262;
    a:active {
        text-decoration: none;
        color: #626262;
        font-size: 95%;
    To this:
    a {font-size: 95%; text-decoration: none}
    a:link {color: #626262;}
    a:visited {color: #960;}
    a:hover {color: #2A3FFF;}
    a:active, a:focus {color: #626262;}
    The order in which link styles are defined matters in some browsers.  LiVHA is an easy memory device for link, visited, hover, active.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • How do I avoid the recipient of my Indesign PDF receiving a security warning when clicking on links?

    I create PDF's out of Indesign to send to new clients. They contain links to external websites. They do not contain any javascript or videos or hidden links. If the PDF is opened in Adobe Reader, when the recipient clicks on a hyperlink in my PDF they get a security warning asking if they trust the site. How can I avoid the recipient receiving this Security Warning as it would scare people into thinking I had sent them something malicious when I haven't?

    You cannot avoid it, that's part of the PDF security system to make the user aware that he is entering non-trusted area, as it is with every web page when it is opened the first time in Reader or Acrobat on this computer. ThatÄs an unchageable fact. You have to live with it.

  • How do I avoid the recipient of my PDF receiving a security warning when clicking on hyperlinks?

    I create PDF's out of Indesign to send to new clients. They contain links to external websites. They do not contain any javascript or videos or hidden links. If the PDF is opened in Adobe Reader, when the recipient clicks on a hyperlink in my PDF they get a security warning asking if they trust the site. How can I avoid the recipient receiving this Security Warning as it would scare people into thinking I had sent them something malicious when I haven't?

    There's nothing you can do as the creator of the file. If you could, that whole source of security would be worthless.
    They would need to tweak their security settings in Edit>Preferences>Security(enhanced).

  • In my received emails, how can I get Firefox to open URL links that begin with "click."?

    In my emails, how can I get Firefox to open links that begin with the word "click."? Instead of giving the me the message that says, for example, "Firefox can't find the server at click.americas.links.hp.com." This also happens when I try to open the links using Explorer.

    This link was not valid when I clicked it. Please contact the person sending these links they do not seem to work. The page takes me to a page that says it will load after 5 seconds, however there is not valid link.

  • All links change color when click 1

    HI, I've tried searching for this as many ways as I can think
    of - so forgive me if this has been covered before.
    I've made a template file and have a series of links to
    various pages (I'm in the VERY beginning stages here). On my pages
    that have this template applied, the links go to where they are
    supposed to go BUT when I click on 1, all the links change to the
    "visited" color.
    Also, the "hover over" color appears only after at least 1 of
    the links has been clicked, not before, and no color changes occur
    on the home page.
    I know this is very elementary but we all have to start
    somewhere!
    My newbie site is at
    http://pages.suddenlink.net/dancingleaf/
    p.s. If you look at the site and you notice "Web Design", I
    don't really do web designing (duh). I'm making all this up just to
    learn!

    The link to the stylesheet on the page is broken -
    <link href="file:///C|/Documents and Settings/Pam/My
    Documents/My
    Webs/css/dancingleaf.css" rel="stylesheet" type="text/css"
    />
    That usually happens when you link to a file that is OUTSIDE
    the root folder
    for the site. Is this one?
    The reason you get the visited color is here -
    <!--
    a:visited {
    color: #000099;
    -->
    </style><!-- InstanceEndEditable -->
    <style type="text/css">
    <!--
    a:link {
    color: #000099;
    -->
    </style></head>
    That's what you told it to do - in fact, the link color and
    the visited
    color are the same.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "wooconley" <[email protected]> wrote in
    message
    news:eprg0g$huq$[email protected]..
    > Me again -- I deleted my site and am going to start over
    from scratch -
    > maybe this time whatever I did won't happen again.
    Anyone know what MIGHT
    > have happened?

  • Is there any way to configure iBooks to open an external link (Spotify app) when clicking on a link like "spotify:track:78nySCOb8jDsRufLOyai8r" ?

    Surprisingly, clicking on an external link such as "spotify:track:78nySCOb8jDsRufLOyai8r" opens the Spotify app on mobile devices with iOS 7.0.3 but not on computers with Mac OS X 10.9...

    thanks for your help.
    I may have been confusing a "acrobat bookmark" and a bookmark in a word file that is converted to a pdf and ends up being a
    link of the type:
    "Go to a page in this document"
    which I do not want in my array vs
    a link of the action type:
    "Open a web link"
    Which I do want
    John
    My code, note how I have to skip pages with "Go to a page in this document" links depending on the document, I would like to use the same code for each document and skip over the "Go to a page in this document" links :
    global.ilinkindex = 1; 
    global.aLinkquads = [ [0, 1, 1, 0, 0],
           [0, 0, 0, 0, 0] ];
    function GetLinkArray()
    global.ilinkindex = 1;
    var iTotalLinks=0;
    // for ( var p = 0; p < this.numPages - 8 ; p++)                   // end before bookmarks for each page of the file x.pdf
    //  for ( var p = 0; p < this.numPages; p++)                     // for each page of the file
    for ( var p = 23; p < this.numPages; p++)                     // start after bookmarks for each page of the file y.pdf
      var cropbox = this.getPageBox("Crop", p);
      var alinksonpage = this.getLinks(p, cropbox);            // get array of links on page
      for ( var ll = 0; ll < alinksonpage.length; ll++)
       var linkquads = alinksonpage[ll].rect;     // get link Quads
       linkquads[4] = p;          // add page number to link Quads array
        global.aLinkquads[global.ilinkindex] = linkquads; // add quads to global link Quads array
        global.ilinkindex++;
    iTotalLinks = global.aLinkquads.length - 1;
    global.ilinkindex = 1;
    app.alert("Number of Links in Document is " + iTotalLinks );

  • Webpart Title URL (Change and PopUp When Clicked)

    I'm trying to take the hyperlink title of an ExcelWebpart (TitleURL), change it, and upon clicking, making the link open in a dialog OR at least another window without changing the window already open. I found an article that uses jquery,
    www+.moresharepoint.net/2014/12/web-part-url-title.html
    However, I can't get this to work. One thing is, my webpart resides on a Custom webpart page. Not sure if this makes a difference. I tried putting a Content Editor on the page, placing the code there, but nothing. I tried placing the code directly in the
    WebPart page (at the bottom):
    </tr>
    </table>
    (I placed the JS code here)
    </asp:Content>
    Actual Webpart where I changed the title URL:
    <WpNs0:ExcelWebRenderer runat="server" AllowRemove="True" ... TitleURL="pasted my page URL here" ... </WpNs0:ExcelWebRenderer>
    BUT, nothing happens.
    I tried placing a Content Editor on the page and calling the JS but nothing happens.

    Hi,
    My code above acts as appending an attribute “targe: _blank” to the <a> tag of the web part title, it will change the open behavior of an <a> link to open
    in a new tab.
    A possible reason that my code not working in your page is that the HTML structure of your page is different from what it is in my page. This is the web part in my
    page and the corresponding HTML source code:
    You can check the DOM structure of your web part title using IE Developer Tool to see if the HTML source is similar to mine.
    IE Developer Tool
    http://msdn.microsoft.com/en-us/library/dd565627(v=vs.85).aspx
    If the structure is different, it will require to modify the jQuery selector in my code to make it applied to your page.
    More information about
    jQuery selectors:
    http://api.jquery.com/category/selectors/
    Best regards
    Patrick Liang
    TechNet Community Support

  • Opening pdf appln from forms 6i when clicking on a blob field-extremely urgent please

    I was browsing through the discussion forum for my requirements and found
    the following code for opening a column value (a blob field) into an application.
    I wrote this following code in 'when-mouse-doubleclick' for the blob field
    in question, in forms 6i.
    When i compile,it does not give any error, but when i run the form and doubleclick
    on the relevant field, there opens a dos screen and then instantaneously
    closes. and nothing else happens.
    Please help me.
    thanks in advance.
    declare
    path varchar2(100);
    file varchar2(50);
    begin
    path:='C:\program files\adobe\acrobat4.0\reader\AcroRd32.exe';
    file:='C:\myfile.pdf';
    path:=path &#0124; &#0124; file;
    host(path);
    end;

    Hi Mohana,
    Your problem is probably spacing. Try this:
    declare
    path varchar2(100);
    file varchar2(50);
    begin
    path:='C:\program files\adobe\acrobat 4.0\reader\AcroRd32.exe ';
    file:='C:\myfile.pdf';
    path:=path | | file;
    host(path);
    end;
    What I've done differently is put a space between acrobat and 4.0, and a space at the end after .exe.
    null

  • PDF checkmark not showing when click in box

    Hi,
    I'm having trouble with PDF not showing check mark when clicking inside the box.  Is there a way I can setup it manually.
    Adobe Reader XI
    Version 11.0.06
    Windows 7 Professional 32Bit
    Thanks,
    Retsel07

    It's most likely a problem with the way the author of the file set up the field. You should report it to them. You can't do much about it in Reader.

  • Workflow Notification: URL Link for executing a RDF

    <p>I need to send a notification with the <u>URL link</u><br>When the user clicks this link it should call a report and fetch the details in PDF file according to the parameters passed in the URL<br>I tried using <br>http://local_host_name/reports/rwservlet?report='RDF_FIle_Path'/URLREPORT.rdf&desformat=pdf&destype=cache&userid=apps/password@xxx</p><br>
    But it is giving the error like <br><u>The requested URL /reports/rwservlet was not found on this server.</u><br><br>Note: I have loaded the RDF into server

    Hi Amit,
    The link for cProjects can be found under the service in  SICF>default_host>SAP>BC>Webdynpro>SAP>cProjects.
    For portal URL, you need to search under the business package>role>iviews or pages.
    Regards,
    Santosh.

  • Autonumber formats change after topics are linked across projects

    We are going from Robohelp HTML x5.0.2 to Robohelp HTML 8.0.2.208, so there is obviously a huge learning curve that we are working through.  We generate to WebHelp and merge 15 projects into a published master.  Our users view the output on our intranet using Internet Explorer 7.
    We loved the autonumber format feature in version 8 (particularly the additional bullet styles available and no longer needing to manually renumber steps when something was inserted or deleted), but have run into a problem.
    The autonumber items work fine in the projects and when generated and published into the merged master, but when we need to add a link from a topic in one project to a topic in another project it changes the bullets and numbering.
    Example: 
    We have a topic in Project A that references a topic in Project B (both projects are part of the merged master).
    We insert a link in the Project A topic to the topic in Project B (using Insert Hyperlink - Link To - File).  Everything in both A and B look fine at this point.
    We preview the topic Project A by clicking on "View Selected Item" (eyeglasses) and then click on the link we inserted to validate it works.  This causes the topic in project B to now have stutter-text for bullets and numbers (i.e., what used to say "1. Step" now says "1. 1. Step").  As more links are added to that topic, it adds more bullets and numbers to the linked topic:
    1.     1.     1.     Procedure
    ●       ●       ●       Bullet
    o       o       o       Bullet2
    §        §        §        Bullet3
    □       □       □       Bullet4
    This does not happen when adding links to topics that are in the same project, only when linking to topics that are in another project.
    All of our topics are created directly in RoboHelp; we do not import files from Word, FrameMaker, etc.  Each of our projects has the same style sheet (we created 1 CSS file and copied it into each project so that they were all identical).
    All of our version 8 projects were created from scratch in version 8, and we have been importing our version 5 topics one by one (and deleting the version 5 styles assigned to them), then applying the applicable version 8 style to each line.  We have attempted creating brand new topics in version 8 to make sure no old legacy version 5 code imported from an old project was causing the issue, and it still happens.  We have tried manually cleaning up the HTML code for the topic and it happens again once a cross-project link is added back to that topic.  We also tried the "Convert RoboHelp edited topics to HTML" to try to get around the XHTML restrictions and it still happened to everything that was an autonumber format, so it appears the issue is something with that one of these.  We created styles for each autonumber format we wanted to use (using the options available for Paragraph styles in the Robohelp Style editor), this is a sample of one of them:
    p.Bullet {
                    list-style: rh-list;
                    x-list-class: rl-p-Bullet;
                    x-list-level: 1;
    rh-list.rl-p-Bullet {
                    x-level-count: 1;
                    x-lvl-1-format: "<x>";
                    x-lvl-1-type: disc;
    While it would be really great to have the additional features of the autonumber format, it may not be a viable option for us since it is only available on the paragraph level and Robohelp 8 does not appear to play well with bullets and numbers in anything other than the list level.  I'm thinking I may need to abandon our current style sheet that uses autonumbering and start over with a new style sheet using only the limited bullets and numbering available on the list level (or possibly go old-school and just use the bullet and number toolbar buttons to add formatting to normal text).  We are about 8,000 topics into our conversion of 40,000.  Any suggestions are greatly appreciated.  Thanks!

    I'd love to send you the test projects I set up, but unfortunately my company has blocked that ability.  I created brand new blank projects in Robohelp 8 using the default style sheet with an autonumber bullet and numbered step added and nothing else.  I thought this bare-minimum approach would be the best way to make sure it wasn't something we had set up incorrectly that on our end.  I used the default First Topics in each project and added numbered and bullet texts using the style sheet to Project 1 and then added a link to that topic in Project 2.  I didn't even generate the projects and I still had the issue when I previewed the Project 2 topic and clicked the link.
    I've attached a copy of the info on the topic in Project 1 and the code behind the scenes for it below:
    First Topic
    1.     1.     1.     Procedure
    o       o       o       Bullet
    o       o       o       Bullet
    2.     2.     2.     Procedure
    Code before link in Project 2:
    <?rh-list_start level="1" an="1" class="rl-p-Procedure" ?><p class="Procedure">Procedure</p><?rh-list_end ?>
    <?rh-list_start level="1" an="1" class="rl-p-Bullet" ?><p class="Bullet">Bullet</p><?rh-list_end ?>
    <?rh-list_start level="1" an="1" class="rl-p-Bullet" ?><p class="Bullet">Bullet</p><?rh-list_end ?>
    <?rh-list_start level="1" an="1" class="rl-p-Procedure" ?><p class="Procedure">Procedure</p><?rh-list_end ?>
    </body>
    </html>
    Code after link in Project 2 was added and clicked:
    <?rh-list_start level="1" an="1" class="rl-p-Procedure" ?><p class="Procedure">1.<span
    style="font: 6.0pt 'Times New Roman';">&#160;&#160;&#160;&#160;&#160;</span>Procedure</p><?rh-list_end ?>
    <?rh-list_start level="1" an="1" class="rl-p-Bullet" ?><p class="Bullet"><span
    style="font-family: 'Courier New';">o</span><span style="font: 6.0pt 'Times New Roman';">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Bullet</p><?rh-list_end ?>
    <?rh-list_start level="1" an="1" class="rl-p-Bullet" ?><p class="Bullet"><span
    style="font-family: 'Courier New';">o</span><span style="font: 6.0pt 'Times New Roman';">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Bullet</p><?rh-list_end ?>
    <?rh-list_start level="1" an="1" class="rl-p-Procedure" ?><p class="Procedure">2.<span
    style="font: 6.0pt 'Times New Roman';">&#160;&#160;&#160;&#160;&#160;</span>Procedure
    Code after link in Project 2 clicked a second time:
    <?rh-list_start level="1" an="1" class="rl-p-Procedure" ?><p class="Procedure">1.<span
    style="font: 6.0pt 'Times New Roman';">&#160;&#160;&#160;&#160;&#160;</span>1.<span
    style="font: 6.0pt 'Times New Roman';">&#160;&#160;&#160;&#160;&#160;</span>Procedure</p><?rh-list_end ?>
    <?rh-list_start level="1" an="1" class="rl-p-Bullet" ?><p class="Bullet"><span
    style="font-family: 'Courier New';">o</span><span style="font: 6.0pt 'Times New Roman';">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span><span
    style="font-family: 'Courier New';">o</span><span style="font: 6.0pt 'Times New Roman';">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Bullet</p><?rh-list_end ?>
    <?rh-list_start level="1" an="1" class="rl-p-Bullet" ?><p class="Bullet"><span
    style="font-family: 'Courier New';">o</span><span style="font: 6.0pt 'Times New Roman';">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span><span
    style="font-family: 'Courier New';">o</span><span style="font: 6.0pt 'Times New Roman';">&#160;&#160;&#160;&#160;&#160;&#160;&#160;</span>Bullet</p><?rh-list_end ?>
    <?rh-list_start level="1" an="1" class="rl-p-Procedure" ?><p class="Procedure">2.<span
    style="font: 6.0pt 'Times New Roman';">&#160;&#160;&#160;&#160;&#160;</span>2.<span
    style="font: 6.0pt 'Times New Roman';">&#160;&#160;&#160;&#160;&#160;</span>Procedure
    Logically there is no reason that clicking on a link that is outside of the project should be able to recode the topic being displayed, but it is.

  • Enabling a URL link in a template

    Hi,
    I am display an HR template on my portal screen. In portal we are using standard Appraisal screen which contain tables with Tab to display our template. In a particular tab we have to enable a URL link (Eg - google, by clicking this URL should take me to the www.google.com). I tried to enhance the Standard web dynpro component (HAP_DOCUMENT_BODY) to add this link, but it gets reflected on the entire Tabu2019s of my table.
    I need that link to be displayed only on a particular tab not on the entire Tabu2019s. Can anyone help me?
    Vijay

    Atul:
    I dont know what the 'Alternate Source' is
    In the Source section set
    Source value or expression to be the name of the database column that has the URL (company_url)
    Post calculation Computation to be '<a h ref="' || :pxx_company_url || '">' || :pxx_company_url || '</a>'; where pxx_company_url is the page-item name.
    I have specified 'h ref' instead of 'href' so that the forum software doesnt mess up the post.
    Varad

Maybe you are looking for

  • Goods Receipt / Goods Issue / Transfer Posting

    Hi Scenario: A pack contains 6 materials of same type but of 3 different colors viz Red:2; Yellow:2; White:2. I purchase this pack and sell the same pack. If sales of this pack is not not much, then i do a Goods Issue to a Cost Center. And then i wan

  • A Kerberos Error Message was received: on logon session

    Hi i am getting this error in event viewer in a client machine, from where powershell sccripts collecting data from our sharepoint servers Log Name:      System Source:        Microsoft-Windows-Security-Kerberos Date:          9/16/2014 11:09:42 PM E

  • Problems with brand new LaserJet 1102w

    I've had my LaserJet 1102w for two days now, and I'm, so far, regretting the purchase and considering sending it back.  Here's why: 1.  It shuts itself off after about 10 minutes and will not print after that until someone manually pushed the power b

  • How to transfer pics from 1 library to another iPhoto

    How can I transfer pics from one iPhoto library to another iPhoto library, without having duplicated the space on the harddrive? Will the space (GB) duplicate when I copy the pics from one library into the other and delte the 1st one or will it stay

  • Photoshop CS5 Saving Issues

    Hey, So I have a drawing that I drew up in CS5.  In this drawing, the layers that I am trying to save as a .jpeg file are without a background color.  I am experiencing a problem where when I go to save the image as a .jpeg (or any file type), for so