Get bookmark id for use in JavaScript

Hi guys
I'm saving bookmark on a web template and I would like to
open it from JavaSciprt with variables.
When I'm copying the bookmark manualy and add the variables it works perfect.
I would like to know how to catch the bookmark id in JavaScript in order to create the new URL.
Thanks
Shlomi

Thanks for the reply, H., but that script doesn't do anything in Safari apart from showing an alert popup that Safari users should press Cmd + D to store the page in Bookmarks.
The site I'm working on would need a possibility to store URLs that are different from the URL that is shown in the address bar (something like this: 'www.domain.com/direclink.php?p=contact.html' while the address bar shows 'www.domain.com').
But I appreciate the effort.
- Frank

Similar Messages

  • Can i buy an iPhone at a pawn shop and get it unlocked for use with Straight Talk wireless?

    Just wondering if I can buy a used iphone at a pawn shop or on ebay and get it unlocked for use with the prepaid Straight Talk wireless service? If so, how much would it cost to get it unlocked?

    PHones can only be unlocked from the carrier; if you're looking for an unlocked device I'd recommand buying it directly from Apple as that is the only way to promise it is, if you buy it second hand you may find it is locked to a carrier who doesn't support unlocking, or worst yet activation lock

  • Get pdf creation by using pdf javascript

    Hello all,
    Can I ask how can I get the pdf creation/ last modify date by using pdf javascript?
    Many Thanks
    Sunny

    this.creationDate and this.modDate have both been superseded by this.info property. These commands have not been eliminated but they are candidates for a future dropping.
    I would use
    this.info.CreationDate
    and
    this.info.ModDate
    Unless the user is using Acrobat 3 or 4.
    A universal approach for all versions could be:
    CreationDate = "";
    ModDate = "";
    if(app.viewerVersion < 5) {
    // versions below version 5
    CreationDate = this.creationDate;
    ModDate = this.modDate;
    } else {
    // versions 5 and above;
    CreationDate = this.info.CreationDate;
    ModDate = this.info.ModDate;
    app.alert("Viewer version: " + app.viewerVersion +
    "\nCreation date: " + CreationDate +
    "\nModification date: " + ModDate, 3, 0);

  • HT201359 Do you get a receipt for using a gift card?

    Hi! I got receipts from the iTunes Store even though I had a gift card. Do they always give out receipts or is it possible that I overspent?

    I use gift cards for my purchases and I always get emailed receipts for them (though they sometimes don't arrive the same day).

  • Get a license for using craxdrt.dll and crpe.dll

    Hello,
    I posted a question about the difference between the .Net Runtime and Crystal Report print engines :
    Print in text mode to detect escape sequences
    The response was : the .Net Runtime print engine can't print in text mode and you're not licensed to use the craxdrt.dll.
    We need to print in text mode.
    So, is there a way to get a license for the use of craxdrt.dll and crpe.dll ?
    Or any suggestion ?

    Hello Philippe,
    The RDC COM components (craxdrt.dll is one part) were retired after CR XI R2 (v11.5). Unfortunately, you can't get a license for the CRAXDDRT.dll that is part of CR2008. The CRAXDDRT.dll is used for report previewing from with the Visual Studio IDE.
    The CRPE is the underlying engine, and there's no public API for making direct print engine calls.
    As for your underlying question - printing in "text mode" with the CR.NET SDK - I don't have any suggestions. Maybe others can respond to that on your original thread.
    Sincerely,
    Dan Kelleher

  • Get table ID for drill down (javascript functions)

    I want to implement some custom drill downs. When you click on a column to drill down, it uses the following javascript function: RTDr(saw_5_6,0,0) where in this case, "saw_5_6" is my current table. Since this is dynamically set and the table name can change, is there a property that i can get this table name from?
    I see where the object is created....(dynamically I might add)
    window.saw_5_6 = new Object();
    saw_5_6.sJSObjName = 'saw_5_6';
    Just wondering if there is a way / property that gives me this information so I can call RTDr() and supply it the correct table name.
    Thanks.
    Edited by: Derek on Nov 9, 2010 2:28 PM

    If there is only one table on the page then you can use my function as it is. I wrote it to implement custom writeback. Of course you can modify it to get all table objects.
    function getSawTableObject(){
         var ptrSawTableObjectName = /saw_.\d/;
         var obj = null;
         for (var propertyName in window){
              if ((ptrSawTableObjectName).exec(propertyName) && String(propertyName).charAt(0) == 's'){
                   obj = window[propertyName];
                   break;
         return obj
    }

  • FM for getting select-options for use in ALV header

    Hi All,
    Our customer wants the choosen selection options in the report header (ALV). I'm looking for a FM that gets all select-options and puts them in  (end-user) readable form.
    Anyone experience with this? Or has created such functionality before?
    Any help would be appriciated,
    Kind regards from a cloude Holland,
    Bert Hokojoku

    Use the fm: PRINT_SELECTIONS
    you can also use this:
        CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
          EXPORTING
            CURR_REPORT     = sy-repid
          TABLES
            SELECTION_TABLE = IT_VARI_TAB
          EXCEPTIONS
            NOT_FOUND       = 1
            NO_REPORT       = 2
            OTHERS          = 3.
    Regards,
    ravi
    Message was edited by:
            Ravi Kanth Talagana

  • Does anyone know where I can get some images for use with Titler Pro 3?

    I am really just trying to get some effects like honeycomb or different color washes for reflections.  Maybe explosions.  They are all put to use from a image if I am not mistaken, new to Titler Pro 3.

    That is not an Adobe program... ask the company that sells that program... NewBlueFX | Best-selling, easy-to-use video editing plugins

  • How do I set bookmarks to bookmark a book so that I can read it offline, my school e-text book says to bookmark it for use offline ?

    I am going to college online and my e-text book said to bookmark my book to be used offline and it could be read offline. this is all the information it gave me or that I could find. I have WIN 7 and use Mozilla as my browser, I have Vipre as my antivirus, internet security, etc.

    hello, a site won't be stored for offline reading just by bookmarking it...
    however you could try a third-party extension like scrapbook to archive certain pages for later use in case you'll be offline: https://addons.mozilla.org/firefox/addon/scrapbook/

  • Getting Bookmark destination information using IAC application

    Hi,
    we are developing an application in that we are opening pdf file in an user application window(not in acrobat or reader)but we want to use acrobat sdk only, and in the opened file when the user clicks on a bookmark or link, we need to get the destination information.
    Actualy from IAC samples we got sample code (ActiveViewVC) we are able to open the pdf file in an external window, now we want to get destination information when the user clicks on a bookmark or link. Is it possible to do using IAC(using either C++ or C# ), if so, how to do it?
    Any help would be highly appreciated.
    thank you

    Rosenthol:
    Can i use a mouse hook to get the user click message on Adobe Reader window and pop up my menu?
    After user selected the menu I will do my operation.
    I don't know whether Adobe would permit this operation?

  • Bought Iphone 4s with O2-UK, Going to India next week. How can I get it unlocked for using it with Indian networks?

    Hi,
    I bought ipone 4s frm O2-UK a month ago, and I tried to unlock my phone with O2. But they told me they cant'
    they told me " To make sure our iPhone 4 8GB and iPhone 4S stock is reserved exclusively for genuine O2 customers during launch, we aren't unlocking these phones at this time "
    I am gong to india and want to to use witht the Indian networks, Can anyone please help me.
    Cheers
    Vinay

    garethfrommanchester wrote:
    ... have confirmed its a hardware problem but they can not honour the warrenty. ...
    The warranty is only good in the country of original purchase...
    Apple Warranty
    http://www.apple.com/legal/warranty/
    Contacting Apple World Wide for Support and Service
    http://support.apple.com/kb/HE57

  • Here Is How To Get FCE Icons For Use In Projects etc.

    A few months ago RyanManUtd wanted an FCE icon to use in a project.
    I managed to provide one after much fiddling but it was not perfect.
    I have now discovered how to save an icon in seconds which is near-perfect and can be superimposed easily.
    To get the icons simply ctrl-click the FCE icon in the Applications folder (not the Dock) and select "Show Contents".
    Open the Contents folder and you will find several FCE icons. Double-click them to open them in Preview and select the largest.
    Then choose File>Save As, and make sure you save it as a PNG file with transparency.
    You can then superimpose it over anything in your projects or in Photoshop like this:-
    Most other apps have similar icons.

    But I don't know how to get the BlueTooth cursor to stay put and not move! I tried clicking the right side of my BlueTooth mouse and that makes the cursor stay still, but it is hard to click that right click without also pushing the left side of the mouse to make a left click.
    Never in my life have I ever used any click buttons on my mouse.
    Anyhow, when I did the clumsy right click on my mouse and went to Edit there was NO OPTION TO CREATE A STILL FRAME! ¿Qué pasa here?
    Lorna
    Message was edited by: Host

  • How to get iphone unlocked for using in other countries

    Can someone please advice how I can unlock iphone 3gs when I can aboard and use another sim

    Contact the carrier it is locked to, only they can unlock it.

  • Get location/coordinates for a field using JavaScript in Acrobat Professional

    Good day,
    I am looking for a way to get the coordinates of a text field.
    I would like to create a listbox and set the location of the listbox top left to the text fields bottom left coordinates, I have had a look at the scripting guides ... could not turn up anything.
    I know how to create and populate this listbox using the JavaScript code, only problem is, to get the coordinates of the text box.

    Try this:
    1. Move or change the dimensions of the text boxes on the extracted page in the configuration that you want.
    2. When you are satisfied with the new configuration, modify the following JavaScript to use the names of the text boxes that you want to include on the page.
    //find_rect //find coordinates of text boxes whose names are included in the var rct,ary = ["fld_1","fld_2","fld_3","fld_4"]; //...etc.
    for (j = 0; j<ary.length; j++){
    console.println(ary[j]);
    rct = this.getField(ary[j]).rect;
    for (i= 0; i< rct.length; i++) console.println(rct[i]);
    3. Add the modified code to the document level of form. (as a doc level javascript but with no function name or brackets included.
    4. When you run the code, the coordinates for the fields that you have included in the array will be printed in the console window:
    Example:
    fld_1
    21
    777
    296
    717
    fld_2
    30
    769
    65
    729

  • Any prerequisites for using javascripts (JS) in SAP BPC 7.5NW (SP5)

    Hi,
    I keep getting evalution and parsing errors, every time I use a JS in my conversion files. It simple standard JS, like:
    js:parseInt(%external%)
    js:%external%.substring(2,5)
    etc
    Are there any prerequisites for using javascripts ??
    Is there anywhere I can debug these JS withing SAP BW ?
    Thank you,
    Joergen

    Gersh,
    It works now. I have implemented the below code (ENTITY needed to contain the variable as well). The relationship profitcenter and entity is very important as it derives the relevant profitcenters from the profit center hierarchy (e.g. all profitcenters under the legalentity node).
    //ALLOCATION PROCEDURE CONVERSION RATE
    //=====================================
    *FOR %ENT% = %ENTITY_SET%
    *RUNALLOCATION
    *FACTOR=1
    *DIM SEBACCOUNT WHAT=CONV_RATE; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *DIM PROFCENT WHAT=DUMPC; WHERE=BAS(BPC_%ENT%);USING=<<<; TOTAL=<<<
    *DIM CATEGORY WHAT=FCSTCUR; WHERE=<<<; USING=<<< ; TOTAL=<<<
    *DIM ENTITY WHAT=%ENT%; WHERE=<<<; USING=<<<; TOTAL=<<<
    *ENDALLOCATION
    *NEXT
    Thanks
    Nico

Maybe you are looking for

  • Help to develop if then else in select statement.

    Dear all, I have a table named receipt_coll. I want to create a case construct using 2 columns in this table. I have columns like in this table named ac_cat and drcr_flag. My requirement comes as follows, select    if(ac_cat=234556)and drcr_flag='R'

  • Windows 8.1 apps exit and minimize buttons

    The close and minimize buttons disappear after 3 seconds in windows 8.1 apps and don't come back i used alt+tab to exit the app  does anyone know how to fix this

  • I am connected to wifi, but can't open webpages or collect mail

    I am connected to wifi, but can't open webpages or collect mail. I have tried to reconnect; to forget the network, all those things that should hepl. My phone and my computer recognize the network, the ipad doesn't.  I mean I am connected  and have a

  • Contract determination in service order for PPR items

    Hi Experts, Contract data is not being determined for some items in service order. All these items are assigned to product list in service contract using product range or PPR. 1) PPR is created with the type "sales contract" 2) In the categories sect

  • SONY PVM 14L4 not recognised via firewire

    Hi to all, I've rented a sony PVM 14L4 monitor for color correction that i'm trying to hook up to my dual G4 via firewire. FCP 5 doesn't seem to recognise it. I don't have the manual and am wondering if it is possible to hook it up directly through o