Javascript to create bookmark for page that does not exist yet

Hello all,
Is there a way to write js for a bookmark that goes to a page that does not currently exist?
For example, I have a 20 page pdf document.  We have FileMaker Pro that can 'append' to a PDF additional pages.  So when FileMaker pro appends two new pages (bringing us up to 22 pages), I'd like to have 2 'existing' bookmarks in the original 20 page pdf document that will, when clicked, go to page 21 and 22 respectfully.
Is this possible and would anyone have the JS I would put into that bookmark?
Thank you in advance!!

Here's what I posted in the other forum you posted this to, in case it might help someone here:
The JavaScript would be:
// Go to page 21
pageNum = 20;
If there are fewer than 21 pages, it will go to the last page. If you want to avoid this, you could do something like:
// Go to page 21 if there are at least 21 pages
if (numPages > 20) pageNum = 20;

Similar Messages

  • How to create an OAF page that does not need login to access

    We have a lot of Oracle users, and everyday there are some users forget there username or password and need reset. I really want to use a web page to let them reset their passwords automatically. The web page will call the API to reset password if it found the user request is legible.
    So based on the situation, the users should not need a login to get to this page, can I do this using OAF?
    And idea is welcome, thank you for your help!
    -Bill
    Edited by: billzheng2004 on Jun 18, 2009 12:12 PM

    Srini,
    Thank you for your response, I think we need to go back to my original question, is it possible to create an OAF page that does not need login, how can I do that.
    I think I said too much and led us to go to a different direction I did't want to. But I am still glad to texplain why I need a custom password reset process, that is all about business requirement, here it is:
    ----I am not sure that "company issues" (such as what you described) can be solved by software -
    I already have a solution for that. Create a custom OAF page, ask user to input his SSN / Date of Birth.... then I can figure out what his real username easily. And I can reset his password as his SSN or something which only this particular user knows. Then he can login.
    ----you may have to impart training to end users.
    As I mentioned, most of our users use only Benefit self service. They only login several times a year, even they are trained this year, most of them will forget next year, this is just human nature. And because the nature of our business, thousands of employees may change at the end of a year. It does not make any business sense for company to prepare trainers every year.
    ----In any case, the functionality you require is already built into the product.
    I guess the reason most companies hire Oracle Developers is that some functionality Oracle Applications provide is not exactly the companies needed. When there is Oracle Apps product, there is alway customization.

  • Creating a page that does not exist

    Hi everyone,
    Is it possible to create a page that does not exist based on the user input?
    By does not exist I mean that it is not stored in your computer and JSP will generate the page based on the user input. For example, in forums the user can create a new topic and based on the options selected a page will be created and stored that was not present before. The same thing happens when a message has a large number of replies, in which a new page will be created and attached to the previous page. I hope that I am not misunderstanding the concept of creating pages in forums.
    Any help is greatly appreciated.
    Regards,
    Basil Mahdi

    Hi,
    what happens in the forums is that you type in a message and that message is stored in a database. Along with your message the number of thread, forum number and message number is stored. Next time somebody wants to read your message, this message is taken from the db and shown to you by the jsp. The JSP ofcourse does more thant taht it shows also other messages and static HTML.
    http://galileo.spaceports.com/~ibidris/

  • How to redirect a page that does not exist

    Hello everyone. Thanks for the feedback so far.
    I am editing an old site and there are going to be some pages that do not exist anymore.
    Is there a way to have an automatic redirect so that if any user types in ANY page that does not exist sitewide, they can be directed to another main redirection page which displays a message and then to the main page again?
    The current site is littered with empty pages with a redirect link on each at the moment which does not look good and it's awful to maintain as these non-meaningful filenames the original developer has used are no help at all.
    Thank you in advance for all feedback
    Terry

    What is the web address of the old site?
    If it's on a Linux server then you can use .htaccess rewrites to automate much of the redirection heavy lifting
    http://kb.mediatemple.net/questions/85/Using+.htaccess+rewrite+rules#gs
    https://my.bluehost.com/cgi/help/htaccess_redirect

  • RW Cronacle : JCS-02041: cannot wait on job that does not exist (yet)

    Hi all,
    We are facing a new problem when submitting our maintaining variants scripts.
    The script failed and returns the error
    JCS-02041: cannot wait on job that does not exist (yet)
    Have you ever met this kind of error ? What kind of issue could it be ?
    Thank you very much for you answers.
    Regards,
    Scheduling team

    Anton,
    Here are the informations (I hope that will help you) :
    JCS Object Database   7.0.3.43 
    Cronacle Repository
    JCS Redwood Reports Module     7.0.2 
    Cronacle Reports Module    
    JCS Redwood Mail Module     7.0.2 
    Cronacle Mail Module  
    JCS PM4W   7.0.2 
    Cronacle Process Manager for Web   
    JCS RSI   7.0.4   SP3 production
    Cronacle for SAP solutions
    JCS Modules      7.0.4       SP3 production
    Cronacle Module Installer    
    We didn't change many things in the varedit script, we have just deleted some parameters we don't maintain :
    create or replace script "RSI"."C4_SC_POA0_J_000_00_VE_FEN4A"
    ( "INSTANCE"        in varchar2(15)     not null
                        description         'SAP instance'
                        input format        'UPPERCASE'
                        default             expr('EP1'
    , "CLIENT"          in varchar2(3)      not null
                        description         'Client'
                        default             expr('900'
    , "ABAP_PROGRAM_NAME" in varchar2(32)     not null
                        description         'Abap program name'
                        input format        'UPPERCASE'
                        default             expr('abap_program_name'
    , "ABAP_VARIANT_NAME" in varchar2(14)     not null
                        description         'Abap variant name'
                        input format        'UPPERCASE'
                        default             expr('abap_program_variant'
    , "PAR_P_NAME"      in varchar2(128)    null
                        description         'P_NAME'
                        groupname           "Option"
    , "PAR_P_PATH"      in varchar2(128)    null
                        description         'P_PATH'
                        groupname           "Option"
                        default             expr('/tmp/'
    , constraint        "VARIANT_LIST"
                        prequery            0 rows
                        message             'Please choose a valid variant combination'
                        optional
                        check               (
                        select  apv.abap_variant_name
                        into    ABAP_VARIANT_NAME
                        from    rsi_program_variants_view apv
                        where   apv.instance          = :INSTANCE
                        and     apv.client            = :CLIENT
                        and     apv.abap_program_name = :ABAP_PROGRAM_NAME
    Edited by: Architecture Architecture on Dec 7, 2009 5:59 PM

  • IMovie searching for files for project that does not exist...

    Whenever I fire up iMovie 09 on Lion, it spins, and then tells me it can't find a video file for a project that does not exist. That is, it says 'File xxx.mov from project 'Movie 1 cannot be found - without this file the movie cannot be played.' The project is one I deleted a long time ago, and does not appear in the project list. How can I force iMovie to forget about this?
    Thanks!
    PS the specific error is 'Searching for movie data in file "New Project 1 - Large.m4v". The only button is "Stop". so I press that, then a new dialogue box saying 'The movie file 'New Project Large.m4v" cannot be found. Without this file, the movie cannot play properly." It has cancel and search buttons. Obviously, searching doesn't help - it was deleted a long time ago. Cancelling makes it go away until iMovie is launched again.

    Whitecity,
    This is awesome.
    So moving forward from here, you can narrow down which event is causing the behavior but systematically trial and error. Once you determined the exact event folder, there are subfolders underneath:
    /iMovie Movie Cache/
    /iMovie Stabilization/
    /iMovie Thumbnails/
    Try removing these to see if iMovie rebuilds them.
    Calbe

  • Create a login page that does not link to database

    Hi,
    I am really new to muse and would like to seek some help....sorry if any similar questions have been asked.
    I am making a website interface for my assignment, and i need to create a login page,
    how can i make a text box for entering the login ID and the password? and how can i add a login button?
    By the way, this does not have to link to a database, it is just  a template........so the solution using codes may not help i guess

    Hi,
    check this thread Re: Can I create a login/password protection in Muse for a HTML5 page or two?

  • I would like to create a new page that does not show up in my "menu" .

    I would like to set up a new page on my website for a specific one-time use.
    I don't want the page to show up in my menu at the top.
    The new "hidden" page will have specific files that already exist on other pages but re-arranged for a specific client.
    Is there a way to do this so that I can just send someone a link to the new hidden page?
    Thanks

    Open iWeb and then create the page you want to hide. Open the Inspector and then click on Page and then click on 'do not include page in nav bar'. It is as simple as.

  • Every time I try to download the new Firefox I get this message when it relaunches, " Invalid Request You requested a page that does not exist. You may have reached this page by clicking on an invalid link or bookmark." What should I do?

    This happens with every browser I try to download that isn't the old 3.0 version of Firefox

    "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now" "Remove the Cookies" from sites that cause problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    If this doesn't help, try ending any Firefox processes and completely restart it. If none of this helps you might consider you could have Malware or something nastier. Connection issues can also cause that error message. I remember having the same issue a couple of years ago and had to completely restart my PC for some reason to get the new Firefox to install. Sorry I don't have any more in depth answer.
    Hope this helped you, have a nice day.

  • SP2013: List does not exist / The page you selected contains a list that does not exist. It may have been deleted by another user

    There are dozens of entries regarding "
    List does not exist / The page you selected
    contains a list that does not exist. It may have been deleted by another user" and none of them are really SP 2013 so i thought I would create this entry. 
    I am getting the error above after creating a simple list with 4 columns.  the list is created during a new site definition activation but when I click on my list, I get the error above.  the list works if I deactivate the feature and re-activate
    it.  but has the error whenever the new site definition is created.  
    Has anybody encountered this issue on SP 2013?

    Hi,
    For your issue, there are plenty of possible reasons offered when we search this issue online.
    Here are similar issue posts, check whether they are helpful:
    http://sharepoint.stackexchange.com/questions/98239/list-does-not-exist-error-when-opening-the-views
    http://sharepoint2u.com/?p=56https://shareyourpoint.wordpress.com/2012/04/12/list-does-not-exist-the-page-you-selected-contains-a-list-that-does-not-exist-it-may-have-been-deleted-by-another-user-sharepoint-2010-error/
    http://spnovice.blogspot.com/2012/10/list-does-not-exist-or-does-it.html
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Lisa Chen
    TechNet Community Support

  • I have lost all of my bookmarks from the drop-down menu. It says it is empty, but never have I deleted them. And when I bookmark a page it does not save it. Please help

    Question
    I have lost all of my bookmarks from the drop-down menu. It says it is empty, but never have I deleted them. And when I bookmark a page it does not save it. Please help

    Ok this is bizzare!
    Thank you for your response, I went throught each and every step without any luck, even got the recovery programme, and painstakingly tried to sift through all that mumbojumbo to find what i needed. finally found the bookmark bit, but it had been fully overwritten :(, so on reading about previous ff versions, found the sqlite thingys, and they were relatively unscathed(partly written over, but saveable apparently TG), saved them to adiff drive, amongst other possibly good folders. Then looked up how to install them, and it said to close FF, and install to profile folder.
    So i tried to close FF, and the original problem from a few days ago, where it asked me if 'i was sure i wanted to close this window as it has X tabs open', popped up again. This is where 'open blank page' selection was set, over 'open previous tabs'. Wanting to save that info on how to sort out these friggin files, I reset the Option to 'open previous tabs', and closed FF. After unsucessfully searching for the profile folder on my laptop, i opened FF intending to search online for where i could find said folder.
    AND BANG, surprise surprise, the FF I had just closed with only tabs open about finding out what the heck to do, had disappeared, and instead my original saved tabs were up, and my bookmarks are there..... I am gobsmacked! what the heck just happened there???
    I have made 3 back up in different folders now, of those friggin bookmarks. I am weary now tho of shutting it all down.... what if its back to the other pages I had with no bookmarks, tomorrow :(

  • Business Management Error: You are attempting to create a user with a domain logon that does not exist. Select another domain logon and try again.

    Hello,
    Suddenly the working CRM is being stopped for some group of users.
    I drilled down to the issue and have checked that the users from Domain in which CRM is installed are having CRM access.
    But for other domain user having problem to access CRM.
    I tried to add a user from a domain which is not of CRM domain then it gives following error.
    "Business Management Error: You are attempting to create a user with a domain logon that does not exist. Select another domain logon and try again.
    <Message>LookupAccountNameW failed with error</Message> "
    The change is made - AD group have upgraded Activer Directory server to 2012 R2
    Please help as the Production CRM is not working for other domain user.

    We have Activer Directory Structure like below.
    One Root Domain says A
    and there are multiple child domain like B,C,D etc...
    B,C and D are all in same level,they are child of A domain.
    There are two way transitive trusts between A and all the child Domain.
    But there is no trust in between B and C and so on.
    Our CRM server is in B domain and B domain's user can access CRM but users of Domain C,D and so on can not access CRM.
    If this post answers your question, please click &quot;Mark As Answer&quot; on the post and &quot;Mark as Helpful&quot;

  • Problem creating new sites. The formula refers to a column that does not exist

    Good morning,
    I have a problem creating new sites in my development environment. We have a template which works properly when we create new sites with it. However, when we add one new content type in the site created and save it as a new template, we can't create new sites
    with this template. The error log is that there are one problem in one column [The formula refers to a column that does not exist.  Check the formula for spelling mistakes or change the non-existing column to an existing column]. 
    I have opened the wsp template with visual studio but I can´t discover what column is the problem because the log only refers to the feature (ListInstances).
    Anybody knows how to find my problematic column?
    The error is:
    Feature Activation: Threw an exception, attempting to roll back.  Feature 'plantilla Llave en Mano 20141222 v2ListInstances' (ID: '6c61a3bf-3c51-4064-958b-d154729233e7').  Exception: Microsoft.SharePoint.SPException: La fórmula hace referencia a una
    columna que no existe. Compruebe que la fórmula no tiene errores ortográficos o cambie la columna que no existe por otra que exista. ---> System.Runtime.InteropServices.COMException (0x81020057): La fórmula hace referencia a una columna que no existe. Compruebe
    que la fórmula no tiene errores ortográficos o cambie la columna que no existe por otra que exista.     at Microsoft.SharePoint.Library.SPRequestInternalClass.UpdateField(String bstrUrl, String bstrListName, String bstrXML)     at Microsoft.SharePoint.Library.SPRequest.UpdateField(String
    bstrUrl, String bstrListName, String bstrXML)     --- End of inner exception stack trace ---     at Microsoft.SharePoint.Administration.SPElementDefinitionCollection.ProvisionListInstances(SPFeaturePropertyCollection props, SPSite site,
    SPWeb web, Boolean fForce)     at Microsoft.SharePoint.Administration.SPElementDefinitionCollection.ProvisionElements(SPFeaturePropertyCollection props, SPWebApplication webapp, SPSite site, SPWeb web, SPFeatureActivateFlags activateFlags, Boolean
    fForce)     at Microsoft.SharePoint.SPFeature.Activate(SPSite siteParent, SPWeb webParent, SPFeaturePropertyCollection props, SPFeatureActivateFlags activateFlags, Boolean fForce)
    Thanks in advance

    Hi Enrique,
    According to your description, after added a content type into the new site and save the site as a template, there is an issue when creating another new with the newly
    site template.
    Based on the error message “The formula refers to a column that does not exist…”, seems that it would be an issue of a Calculated column in the content type you added,
    please go through all the Calculated column in that content type to see if the formulas all work well.
    Feel free to reply if there any progress.
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • List does not exist . The page you selected contains a list that does not exists. It may have been deleted by another user

    Hi everybody!
    I have a sharepoint 2013 farm with 5 sever. I upgraded a site from sharepoint 
    2007 to sharepoint 2013. I had some problems to install and configure workflow manager and register it. but by now I found problems and I can create a workflow and run it successfully. My big problem is when I try to get a lookup field in my flow. the
    flow suspended and I got the following error:
    “List does not exist . The page you selected contains a list that does not exists. It may have been deleted by another user.”
    Any solution???
    Thanks in advance!

    Hi,
    Please make sure the source list of the lookup column and the list which consumes the content from the lookup column exists on the site collection.
    In addition, to correct this problem the following steps should be applied:
    Delete the affected Workflow association
    Go to "Central Administration" - "Application Management"
    Select the affected web application and choose "General Settings" - "Resource Throttling"
    Increase the value configured as "List View Lookup Threshold"
    Perform an iisreset to ensure that all in memory instances of the web application settings are gone
    Add the Workflow association back to the list
    More information is here:
    http://social.technet.microsoft.com/Forums/en-US/3aeeba20-07dd-4e46-941b-a3db1bb3577e/sharepoint-2013-designer-workflow-the-page-you-selected-contains-a-list-that-does-not-exist?forum=sharepointcustomization
    Best Regards
    Dennis Guo
    TechNet Community Support

  • HT2404 how do you get your money back for software that does not perform as advertised?

    how do you get your money back for software that does not perform as advertised?  I purchased the batch coverter to watch .swf video which it states it supports, but it will not open the files and I want my money back!!!!!

    tell Apple.  http://www.apple.com/feedback/
    iTunes Store Terms and Conditions specifically states: All sales and rentals of products are final.

Maybe you are looking for

  • Problem regarding accessing values from IBM Tivoli Directory Server

    hi, I am able to retrieve the values from ITDS. But the problem is when retrieving userPassword attribute value. Actually when i enter the userid and password in an html page and try to retrieve the corresponding user information from ITDS then it gi

  • XML reports show in XML format instead of Defult output PDF in R12

    I am facing a problem in XML report in oracle R12 , when I am running the report ,it through warning msg and output is coming in XML format instead of PDF . Please let me know the solution. Zulqarnain

  • Aspect Ratio is Officially Jacked Up

    Forum, I read some other threads on this similar problem, but this one seems like even more of a maze than some other stuff I've come across. So any help would be greatly appreciated! I exported my entire rendered HDV,24p, ProRes 422 sequence back to

  • FSG - How to define a 'static' period

    hello: we are using Oracle Financials FSG and i need to setup a column set that has 12 STATIC months - for each month of our fiscal year. that way we can do comparisons to the same month in the prior fiscal year. in other words, i want to define "Jan

  • System Tray application

    I am using the Java 6 feature for creating System Tray capable applications. I have used the SystemTray.java example from Sun and this works fine. What I need to know is how I hide the application in the Task Bar. The user would then need to click th