Speed up adding URL hyperlinks to bullets/selected text

Hi, I'm doing a presentation that requires linking a huge amount of the bullet text to different sites. I was hoping to create some sort of macro that told Keynote to add the URL of the current active window in Safari to the selected text, but Automator can't do it and I don't know of any other way to create a macro (I'm new to the Mac world).
At the moment, after go to the site I want to link to, switch to Keynote, highlight the desired text and open the Hyperlink inspector window:
1) Hyperlink inspector window defaults to Slide (vs. Webpage)
2) After I click Enable Hyperlink and choose Webpage from the pulldown menu, the URL defaults to my home page URL.
This means I have to go to Safari, highlight and copy the URL, switch back to Keynote, highlight the homepage URL, paste the correct URL (from the active Safari window), click Apple-end to get to the end of the URL and hit Enter in order to hyperlink the selected text.
I know there has to be an easier way.
At one point, I accidentally did something that dynamically changed the URL in Hyperlink inspector to the active URL on Safari, but I can't re-create it. That, at least, would be some help.
Any suggestions for how to simplify/speed up/automate this cumbersome process would be GREATLY APPRECIATED, as I am slogging along using this inefficient approach while trying to meet a looming deadline.
Thanks in advance!
Maggie
iBook G4   Mac OS X (10.4.6)  

Maggie, how desperate are you for a quick solution? One approach might be to edit the Keynote XML text file directly, adding the bullets and hyperlinks as elements in that file rather than through Keynote proper. This approach is relatively straightforward, and it is very fast, but it does involve getting down-and-dirty with the XML, which might not be everyone's cup of tea. It's honestly not that daunting, though, and just involved doing very minor editing to a text file within TextEdit. I don't know if it would work well for your specific needs, and it involves a completely different workflow than working in Keynote directly, but it might be worth a shot. Here's how you would add a list of hyperlinked bullets to a single slide:
- First, create a single slide with a bulleted list with a single item that has a hyperlink to a website. This will allow you to see what the XML looks like when we open the XML file. Use an unusual word or string of letters for the bullet item to make it easier to find in the XML code. Save this one slide presentation, and close it.
- In the Finder, hold down the Control key while clicking once on the presentation file. This will bring up the contextual menu. Choose "Show Package Contents". This will open a new Finder window that shows you the "guts" of the Keynote presentation, which is actually a collection of files.
- Double click on the "index.apxl.gz" file. This is the file that holds the XML markup for the presentation. It is stored in compressed form, but when you double-click it, a new file, "index.apxl", will be created. This is a plain text file, editable with TextEdit, and it is the file you will modify. Delete the "index.apxl.gz" file, as it isn't needed now, and Keynote will automagically re-compress the "index.apxl" file when we open the presentation.
- Open the "index.apxl" file in TextEdit (or whatever other text editor you like). You will see a mess of XML, without any real formatting. That's OK though, because you only need to edit a small bit of this file, and you will use the unusual word in the bullets you created as a search guide.
- Find the unusual word in the text. This word is embedded in the XML code that specifies the bullet on the slide. This is the code that you will need to edit.
The code that specifies a hyperlinked bullet will look something like this:
<sf:p sf:style="SFWPParagraphStyle-263" sf:list-level="1"><sf:link href="http://www.apple.com/"><sf:span sf:style="SFWPCharacterStyle-38">Test1</sf:span></sf:link><sf:br/></sf:p>
(The numbers of the "ParagraphStyle" and "CharacterStyle" may be different depending on the theme you used.)
If you look at this snippet, you can see that there is a URL in the <sf:link> tag -- that's the hyperlink for the bullet text. You can also see that there is some text (in this case, "Test1") wedged between the <sf:span> and </sf:span> tags -- that's the text that appears on the slide, and in your file it will be the unusual text that you searched for in the file.
Now, the cool thing is that, if you change this URL and this bullet text in the XML file and save it (having previously deleted the "index.apxl.gz" file), you will have changed the bullet text and hyperlink in the actual presentation. The much cooler thing is that you can add bullets to a slide by simply pasting multiple copies of the above code template into the XML file -- just make sure that you copy the entire bullet template (from <sf:p to </sf:p>), and that you paste it directly after another </sf:p> tag. (Be sure to use the template from your XML file, since the ParagraphStyle and CharacterStyle numbers will be different.)
What this means is that the task that formerly involved going back and forth in the Keynote interface now just involves editing a text file. In the case of your task, for example, what you could do is create a second TextEdit window, paste the bullet code template into it several times, and then just drag and drop the URLs you want into the various address spots of the templates. You can also edit the bullet text directly in the templates. Once you're done, you can simply copy the whole batch of text and paste it into the appropriate spot in the "index.apxl" XML file, and you're done.
Also, because this is now a text editing task rather than a Keynote task, you can potentially take advantage of applications that automate text editing to generate the bullet XML for you. For example, you could just create a list of the URLs, and then use the macro capabilities of Word, or (my favourite) NisusWriter, to go through the list and populate the addresses in the bullet templates. The possibilities are quite wide open with this approach.
This is just how to do one slide, but multiple slides are just as straightforward -- simply start by creating a presention where each slide has one bullet point, with unique text in each bullet. Then you can easily find the section of XML code for the bullet of each slide, and edit accordingly.
This may seem like a hugely involved and roundabout way of doing this task, but it works, and by making it a text editing task, it can make it far easier.
PowerMac G5   Mac OS X (10.4.4)  

Similar Messages

  • Applescript to copy selected text plus page URL in Safari

    I do a lot of online research. I would like to be able to select text then run an applescript to add the selected text plus the page URL to the clipboard. I have found a couple scripts that come close to what I want to do, but they don't work. They get the URL and usually some other information, but instead of the slected text, I get "missing value". Does anyone know how I can make this work?
    The scripts I found that do kind of what I want, but don't work are:
    http://allancraig.net/index.php?option=com_content&view=article&id=113:saving-se lected-text-and-url-from-safari-to-a-file&catid=40:applescript&Itemid=91
    http://hints.macworld.com/article.php?story=20080207080505152
    This script works, but it copies URL and page title rather than URL and selected text:
    https://gist.github.com/70565
    I would be so grateful for some help on this.

    After looking around a bit more –
    first here: https://discussions.apple.com/message/9643814#9643814
    then here: https://discussions.apple.com/thread/3197130?start=0&tstart=0
    – I was able to cobble together this script:
    tell application "Safari"
      activate
              set theURL to URL of front document
              set selectedText to (do JavaScript "(''+getSelection())" in document 1)
              set theDate to do shell script "date +'%d-%m-%Y'"
      set the clipboard to theURL & return & selectedText & return & theDate as string
    end tell
    which does the trick very nicely. (I added the date to make it easier to do my references in college assignments.) I used Automator to save it as a Service and assigned a a keyboard shortcut (option + c). I believe this will speed up my workflow tremendously.

  • JS to add url hyperlink to a rectangle shape?

    Hi there,
    Any JS script to add a url hyperlink to a shape object ?
    Thanks a million....

    Hi,
    here's a script that might help you. I made it and tested it only for InDesign CS5.5.
    How to use it: select any object in InDesign then run the script. At first, the script will try to see in the clipboard has valid URL (well, a text startiong with http…) and if so, the clipboard will be take as a good URL for the new created button. If no valid URL in the clipboard, the script will ask for the URL to be entered manually. If the ibject is a text frame, the script will try to take the text from inside the frame as a URL – if not valid, then the dialog pops up.
    // -------------------------------------------- BEGIN SCRIPT ----------------------------------------------
    if (app.selection.length==1) {
    //get the selected object (only one object)
    var xOBJECT = app.selection[0];
    var xPAGE = xOBJECT.parentPage;
    var xBOUNDS = xOBJECT.geometricBounds;
    //create the button
    var xBUTT = xPAGE.buttons.add({geometricBounds:xBOUNDS});
    //add selected object to the normal state
    xBUTT.states.item(0).addItemsToState(xOBJECT);
    //create the gotoURL behavior
    var xGOTOURL = xBUTT.gotoURLBehaviors.add({behaviorEvent:BehaviorEvents.mouseUp});
    //get the clipboard
    var xTEMP = app.documents[0].textFrames.add(); xTEMP.insertionPoints[-1].select(); app.paste(); var xCLIP = xTEMP.parentStory.contents; xTEMP.remove();
    //check the clipboard or text frame's text; if it does not starts with "http" then it's not good and a dialog asking a good URL will popup
    if (xOBJECT.constructor.name!="Rectangle")
        var xURL = xOBJECT.parentStory.contents;
    } else {
        var xURL = xCLIP;
    if (xURL.substring(0, 6)!="http://") {
    // do the dialog here
    var xDIAG = app.dialogs.add();
    with (xDIAG.dialogColumns.add().dialogRows.add()){staticTexts.add({staticLabel:"Enter URL:"}); var xURLTEXT = textEditboxes.add({editContents:xCLIP, minWidth:160});}
    var xRESULT = xDIAG.show({name:"Button creation"});
    if (xRESULT == true){xURL = xURLTEXT.editContents; xDIAG.destroy();} else { xURL="http://"; xDIAG.destroy();}   
    // set the URL to the behavior
    xGOTOURL.url=xURL;
    // -------------------------------------------- END SCRIPT ----------------------------------------------
    Have fun!

  • URL hyperlink to workbook?

    Hi all,
    I am wondering if there is a way to directly go into a workbook via URL hyperlink? I am trying to set up a webpage that automatically links to the report without using the log-in name or password. Is there a way to do this? Also, is there a way to pre-select the parameter to be passed through the workbook?
    Thanks!!
    -Mark

    Hi Mark
    Yes this will work. How about that for a change? An answer in the affirmative! :-)
    You need to execute the workbook in Viewer first, running it with whatever parameters you need. Then you copy the URL from the address bar and store this a link. When the user clicks on it, unless you are using public connections, the user will be prompted for a username and password, and then the result will display. If you are good with editing URL links you can dynamically build the URL based on selections provided by your user.
    I hope this helps
    Regards
    Michael Armstrong-Smith
    URL: http://learndiscoverer.com
    Blog: http://learndiscoverer.blogspot.com

  • Hyperlink tags inserted improperly when selected text contains bold

    This problem showed up in RoboHelp HTML Version 6 and
    continues to happen in RH7 so I thought I'd mention it here. Should
    I file a "bug report" of some kind?
    If you attempt to make a link out of text that includes both
    bold and non-bold characters, the <a href> tag is improperly
    inserted after the opening bold tag <b> and causes the rest
    of the current paragraph to be bolded in the [FlashHelp] output.
    (Note that the extra bolding does not show up in the WYSIWYG
    editor). For example:
    Here is my code prior to adding a hyperlink to "Status tab":
    <p>You can filter the list of schedules that appears on
    the <b>Status</b>
    tab and the list of clients that appears within an expanded
    schedule.
    </p>
    Here's what it looks like after I select the words "Status
    tab" in the WYSIWYG editor, click the Insert Hyperlink button on
    the toolbar, and link this text to another topic:
    <p>You can filter the list of schedules that appears on
    the <b><a
    href="SsVcbHelpGUI_StatusTab.htm">Status</b>
    tab</a> and the list of clients that appears within an
    expanded schedule.
    </p>
    Because the <b> and </b> tags are now improperly
    separated, all text from the word "Status" to the end of the
    paragraph now appears as bold in my FlashHelp output. But I don't
    notice it right away because it oddly looks fine in WYSIWYG (by
    "fine, I mean the word Status is bold, the rest of the text is not,
    and both Status and tab are blue to show that they are a hyperlink.
    This is not a style issue. It appears to be a bug and did not
    occur in previous versions. I always bold the title of a window or
    dialog box but not the words "window" or "dialog box" and they are
    frequently hyperlinked to other topics.
    The workaround is to go in and manually update the HTML code
    to mode the <b> tag back in front of the word Status.
    Corrected code looks like this:
    <p>You can filter the list of schedules that appears on
    the <a
    href="SsVcbHelpGUI_StatusTab.htm"><b>Status</b>
    tab</a> and the list of clients that appears within an
    expanded schedule.
    </p>
    kc

    Seems logical that one would avoid repeating the same
    detrimental actions.
    In your initial example, why couldn't you use "list of
    schedules" as your link text, avoiding the HTML/RH issue
    altogether?
    <p>You can filter the
    list of schedules that appears on the
    <b>Status</b> tab and the list of clients that appears
    within an expanded schedule.</p>
    Good luck,
    Leon

  • Adding a new field to selection screen -Effect on variant

    Hello,
      If we add a new (non obligatory) field to a slection screen, is there any impact on existing variants? Does SAP regenerate each variant when the screen change transport get applied? We had a DB lock jam situation in our PRD system for VARI table and the previous day some program changes with a added selection screen parameter ( a check box) had moved).
    Regards,
    Hari.

    Adding a field to the selection screen shouldn't affect existing variants (but the field will be blank for all variants). However, if there is a problem, you should be able to retrieve variants with program RSVARDOC_610.
    Rob

  • Linking to a page with a URL hyperlink

    Is it possible to create a hyperlink that links to another page in the same document using the "Link To: URL" option in the New Hyperlink window?
    Normally I'd just use the "Link to: Page" option but I want to upload a bunch of documents to Issuu and the only interactive object that seems to survive the conversion process is a URL hyperlink. I've also tried creating a button with a "Go To Destination" action attached but it isn't recognised by Issuu either.
    I can add buttons in Issuu after I've uploaded the documents but I was hoping there would be a way to do it in InDesign that works for both normal PDFs and uploaded Issuu files.
    I hope this makes sense. Let me know if it needs clarification.
    InDesign version: CS6 - 8.0.1
    OS: Win 7 SP1

    Issuu is an online digital publishing platform. Here's an example (not mine!). You upload PDF files to the Issuu website and they are converted to a proprietary format for viewing.
    The problem I'm having is that these converted files support URL hyperlinks but not any other kind of interactivity. I was hoping I would be able to use URL hyperlinks to other pages within the document if this was even possible.
    I'm trying to get some assistance from the Issuu help staff but I'm not really getting anywhere. Hence the post!

  • Adding Selection Texts to the transport request

    Dear All,
    1) I want to transport only "text elements" ( SE38->Text Elements) of an ABAP program. I am unable find how can I include this in a transport number. ( The other objects went safely to my quality system except this selection texts.)
    Thanks for your time.
    Regards,
    Kiran

    Rich Heilman,
    Unfortunately it did not ask me any request number.
    My previous 1st transport failed in quality system and I created another request which went success to Quality system. As I thought I included all objects in the second request I directly used to transport to production. Transport was success but is is lack of texts ans selection screen texts.
    Today is not very good day so far..
    Gagan,
    Thanks for the info. I had added manually "Report Texts". I hope this includes both "Text Symbos" and "Selection Texts".
    Do you see any problem here by adding manually?
    Message was edited by: Hari Kiran

  • ITunes 9.2 stops adding multiple artwork in multiple selection mode. Help?

    Hi everybody,
    Since 2003 I've been using iTunes and adding multiple artwork in several tracks at once.
    Lets say: I added 10 tracks of a CD to iTunes library, then selected all of them and then right click to choose "Get Info > Multiple Item Information". Then I just dragged and dropped as many artwork pieces as I wanted onto the artwork window, one by one. Clicked OK and voilá.
    Now it will only accept one artwork. Following the procedure I used to do, now it will only take the last artwork I place onto the artwork window.
    Now the only way to get multiple artwork in a CD is adding all the artwork (lets say the 20 pages of the booklet) one by one in "each track" separately!, which is a pain in the neck.
    So now I have to add artwork one by one to each track one at a time.
    Is there a NEW way to add multiple artwork on multiple tracks at once in iTunes 9.2?
    Screen shot: http://grab.by/51UT
    Thank you for your help.

    Hi- you might've already figured this out on your own, but:
    A) add the first artwork picture (what you want for your cover artwork) using "Get Info > Multiple Item Information" - and close the Multiple Item Information window
    B) with the multiple tracks still selected, drag your additional artwork picture items into the artwork panel in the lower left corner of the iTunes window (this is the artwork panel titled "selected item").
    C) your additional artwork will be added to all of the selected items. You can click through the artworks using the left/right arrows above the artwork panel.
    Obviously you can also use this same method to add that same additional artwork to any other tracks, from other albums, etc. simply by selecting them as well.
    Side note, the easiest way to select all tracks from a single album: select the starting track, then use ctrl-shift and select the ending track- all tracks between those two will be selected.
    Aaaaaand you're done! Hope this helps!

  • Modifying multiple url hyperlinks.

    Hi all.
    I've been working with InDesign CS3 to convert a catalogue into iPDF format for web distribution. This involves me going through the document page by page hyperlinking each program in the catalogue to the corresponding url. Recently I've been informed that all these hyperlinks need to be amended by addition of a few characters to the end of every url. This wouldn't be a problem, but there is a couple thousand hyperlinks that would need to be updated.
    This brings me to my question: Is there an easy way to modify/amend multiple hyperlinks within an InDesign document or alternatively a way I could do this same task using Adobe Acrobat Professional 7.10?
    Thanks in advance.

    My url hyperlinks currently look something like this:
    Eg.
    http://www.websitename.com.au/Product.aspx?id=PRODUCTG
    http://www.websitename.com.au/Product.aspx?id=PRODUCTQ
    and what I need to to is add another short code to the end of each hyperlink:
    Eg.
    http://www.websitename.com.au/Product.aspx?id=PRODUCTG  + '-22058'
    http://www.websitename.com.au/Product.aspx?id=PRODUCTQ  + '-22058'
    so they look like:
    Eg.
    http://www.websitename.com.au/Product.aspx?id=PRODUCTG-22058
    http://www.websitename.com.au/Product.aspx?id=PRODUCTQ-22058

  • Adding URLs in Content Areas

    I have added some URLs to the NavBar on the left hand side of Content Area page and would like them to open as new window. I was wondering if someone could let me know how to do this? Been looking around, but can't find any information. Since adding URL items is done with a form, I was curious if there was something that could be typed in ahead of URL to cause to open in new window. Thank you.

    Not sure if I understand your question, but this is how I cheat with opening new windows from the nav bar...
    When you filling in a URL in the nav bar properties, you can add a closing quote to the end of your URL and then insert the target attributes, but leave off the close quote for the target.
    so if you want to open yahoo in a new window, instead of putting [http://yahoo.com] in the form field, put [http://yahoo.com" target="_blank] sans-brackets. Don't forget to leave off the last close quotes. Portal adds that for you.

  • Adding URL to a 3D object

    Hello,
    I have 3d model from Microstation saved in format u3d. I create 3D pdf from this model. Now my problem is:
    - I need insert URL to this model
    (This should go with JavaScript, but I don't now how)
    Second question is:
    - is possible default disable some layers of the model?
    (All the layers are by default activated)
    Thanks

    Hello,
    thank you for your answer, but is not much helpful for me..
    "- I need insert URL to this model
    http://forums.adobe.com/thread/850845 " -
    I know the HyperlinkExample.pdf, but is it only example,..I don't know how.
    If I uncompress this PDF , I saw javascript like this: (parts of javascript)
    function PDF3DSDK_LaunchURLWrapper(url)
        try{
            app.launchURL(url);
        }catch(ex)
            console.println("HostScript: error during launchURL; url = " + url);
    endstream
    endobj
    //& this
    var pdf3dsdk_linkTypes     = new Array( PDF3DSDK_MESH_LINK_COUNT );
    // possible values are:
    // launchURL - opens a URL at new (external) browser window
    var pdf3dsdk_linkParams1   = new Array( PDF3DSDK_MESH_LINK_COUNT );
    pdf3dsdk_linkMeshNames[0]  = "PDF3DLabel_launch_url";
    pdf3dsdk_linkCompareType[0] = "like";
    pdf3dsdk_verboseModes[0] = 0;
    pdf3dsdk_linkTypes[0]  = "launchURL";
    pdf3dsdk_linkParams1[0] = "http://www.pdf3d.co.uk";
    function pdf3dsdk_DoLaunchURLActionForIndex(index,node)
        try
            host.PDF3DSDK_LaunchURLWrapper(pdf3dsdk_linkParams1[index]);
        }catch(ex)
            console.println("3DScript: error during launchURL; url = " + pdf3dsdk_linkParams1[index]);
    I think that these functions should provide operations Adding URLs into a 3D object,
    isn´t it ?  Thank you
    "- is possible default disable some layers of the model?
    I do not know what the layers are. Some Microstation term?
    But nodes in 3D PDF model can be switched on and off -
    interactively, via annotation properties (node dictionaries) or JavaScript." -
    Yes, layers are "nodes" in Acrobat. I know how switch on and off this nodes interactively, but I need some nodes deafult switch off. When I open my model, every nodes are switch on...
    JavaScript is maybe solution, but I don't know how to do it.

  • Help with adding a hyperlink to a button?

    We have a simple little site we built in Catalyst and everything works great. The only problem is that we cannot figure out how to add a hyperlink to one of the buttons in the animation. We simply want to be able to click on the button and go to another site (the client's Facebook page specifically). Can anyone provide some insight? Thanks!

    The message you sent requires that you verify that you
    are a real live human being and not a spam source.
    To complete this verification, simply reply to this message and leave
    the subject line intact.
    The headers of the message sent from your address are shown below:
    From [email protected] Tue Nov 03 19:08:07 2009
    Received: from mail.sgaur.hosted.jivesoftware.com (209.46.39.252:45105)
    by host.pdgcreative.com with esmtp (Exim 4.69)
    (envelope-from <[email protected]>)
    id 1N5TPy-0001Sp-J1
    for [email protected]; Tue, 03 Nov 2009 19:08:07 -0500
    Received: from sgaurwa43p (unknown 10.137.24.44)
         by mail.sgaur.hosted.jivesoftware.com (Postfix) with ESMTP id 946C5E3018D
         for <[email protected]>; Tue,  3 Nov 2009 17:08:03 -0700 (MST)
    Date: Tue, 03 Nov 2009 17:07:49 -0700
    From: Tvoliter <[email protected]>
    Reply-To: [email protected]
    To: Matthew Pendergraff <[email protected]>
    Message-ID: <299830586.358941257293283616.JavaMail.jive@sgaurwa43p>
    Subject: Help with adding a hyperlink to a button?
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
         boundary="----=_Part_36702_1132901390.1257293269030"
    Content-Disposition: inline
    X-Spam-Status: No, score=-3.4
    X-Spam-Score: -33
    X-Spam-Bar: ---
    X-Spam-Flag: NO

  • Adding a hyperlink to a Dynpro in screen painter

    Is it possible to add a hyperlink to a screen in R/3 version 46C.
    We have an on-line form for RTPs which contains a lot of information which isn't available in the SAP RTP screen. The easiest way for us to get this information to the purchasers would be to add a hyperlink from the RTP screen ( SAPLXM02 screen 0111 ) to the on-line form.
    Many thanks
    Karen

    HI Karen
    When an Internet user requests an ITS service by clicking on a URL hyperlink or keying in a URL address in a Web browser to run a IACEWT, the request is processed as follows: 
    1. The Web browser passes the request to the Web server.
    2. The Web server calls the server-specific ITS extension WGate - WGate is the link between the ITS and the Web server. WGate is a Web server extension that encapsulates the various supported HTTP server interfaces such as: CGI (Common Gateway Interface), NSAPI (Netscape Server Application Programming Interface), ISAPI (Internet Server Application Programming Interface) in a transparent manner that passes the requested data to the ITS AGate component.
    3. WGate forwards the request to the ITS server process called AGate (which may or may not reside on the same machine.)
    4. AGate is the link between the ITS and the SAP R3 application server. AGate is the core processing component of the ITS. It receives Web browser request from WGate and communicates with the SAP R3 application server via the DIAG or RFC protocol.
    5. AGate then processes the requests, and sends all relevant details (including logon information) to the SAP R3 system, which either starts the first dialog step of a new transaction of submits further data for the next dialog step of a transaction already started. 
    6. SAP R3 starts the transaction for the service requested and sends the screen output to AGate. 
    7. When the dialog step has finished, AGate retrieves the result from SAP R3, and is responsible for session management, including mapping of SAP R3 screen or function modules to HTML, web session timeout handling, SAP R3 connection management and generation of HTML documents that are sent back to the Web browser client.
    8. AGate forwards the formatted HTML page to WGate. 
    9. WGate forwards the formatted HTML page to the Web server.
    10. The Web server sends the formatted HTML page to the Web browser, where it can be viewed by the user.
    The ITS is downward compatible, therefore the ITS release must be the same or higher than the SAP R/3 kernel release. 
    The above info is from the link: http://www.sap-img.com/bc047.htm
    Check it out for more info
    If you find it useful, please reward me for the same.
    Good luck
    Karthik Potharaju

  • How to make a url hyperlink in interaction center alert

    Hello,
    We would like to have a hyperlink to a url in the alert in the interaction center of CRM 7.0.
    We have tried to make the hyperlink in the alert text, by writing this html code <a href="http://www.google.com">GLOOGLE</a>
    but we think the alert editor does not accept that code.
    Does anyone know how to insert a url hyperlink in an alert ??
    Thank you very much in advance.
    Luis Angel Fiel

    Hello Luis,
    In order to insert a hyperlink into an alert, you actually need to use the Navigation Object Type/Action field and choose an existing navigation object type/action (launch transaction) that has been mapped to your desired URL. This is the same technique that you would use if you want to call the URL from anywhere else, like the NavBar. You can't simply add a URL directly to the alert.
    Best regards,
    John

Maybe you are looking for

  • How to create Purchase Order using  sub-ordinate Purchase order number?

    Hi, I m in ETL product have to extract SAP datas into Access. I noticed that in the Demo DataBase of OEC Computers,the Purchase Order is created with sub-ordinate purchase order number.But i am trying to create the same in SAP B1 manually,but i can't

  • User exit for sale order

    Hi Friends, I am now working on Sale order User exit. I need to find out wheather the batch management indicator (XCHEF) is checked ('X') if BSTEL(shipping point) changes. Can anyone help in which include the the batch management indicator comes and

  • Logic Board for 500 in 600 machine?

    Have an ibook 600 mhz with dying logic board. Can I replace with a 500mhz logic board? Actually, I already tried and it doesn't boot, altho the hard drive whirs. Any ideas on whether i've messed up the installation or if it is just incompatible? Than

  • IPhone SIM in iPad?

    Is it possible to use the SIM card from my iPhone in my iPad? It would be kind of neat if I could use my iPhone data plan on my iPad.

  • Stock display with Alternate unit of measure

    Hi All, is there any report in SAP, which displays the warehouse stock with Alternate Unit of measure. I did try in MB52. It was showing only in BUM. Please help ASAP. Ayesha