How can I open a URL from a Custom Button in a second help window?

I have a custom button, which currently opens a URL in a web
browser, using a redirect page. How can I change this so that it
opens in a second help window instead? If I understand some of the
posts I've read, it is possible by linking the button to a related
topics function but I've no idea how this is done.
As usual, your help is most appreciated. Thanks a lot.

Hi, ecoulyn,
You need to make a topic file like the one below the target
of the Jump button.
The onLoad function on the Body start-tag causes the Related
Topics command to fire when the topic file is loaded in the topic
pane. When specifying the file name of the topic to display in the
secondary window, you must always prepend it with the name of your
.chm file, followed by "::/". Otherwise, an error message appears
when the Jump button is clicked.
Pete

Similar Messages

  • How can I open raw files from my Nikon D7100 in CS4 or CS5?

    How can I open raw files from my Nikon D7100 in CS4 or CS5?

    Andy,
    In the simple and short form, what happens with the ACR (Adobe Camera RAW) module is that it gets updated with regularity, to accommodate the camera mfgr's. changes for their newer models. That ACR works within the host program, such as Ps, PsElements, Lightroom, etc.. At a point, Adobe ceases to support older host program versions. When that happens, the user has a few options:
    Upgrade the host program version
    Use another host program, such as PsElements or Lightroom
    Use the free DNG converter, per Curt's suggestion. That is not host program dependent
    Glad that the DNG Converter works for you.
    Good luck,
    Hunt

  • How can I open RAW files from Nikon D7100 in Photoshop Elements 9?

    How can I open RAW files from my Nikon D7100 in Photoshop Elements 9

    Three choices:
    1. Upgrade to PSE11
    2. download the free Adobe DNG Converter and then convert your RAWs to DNG, which will open in PSE9
    3. Use manufacturer's software and convert to TIF (or JPG)

  • How can i open the popup from java class

    Hi,
    Please tell me how can i open the popup from java class.
    I am using jdev 11.1.1.7.0
    I have used the below code which works fine in jdev 2.1 but it will have some errors in 11.1.1.7.0.
    Please tell me some way to do this in all jdev versions.
    Bean obj = (Bean)RequestContext.getCurrentInstance.getExternalContext.getPageFlowScope(“obj”);
    Code for hide pop-up
    FacesContext context = FacesContext.getCurrentInstance();
    String popupId = obj.getPopUpBind().getClientId()
    ExtendedRenderKitService service = Service.getRenderKitService(FacesContext.getCurrentInstance(),
    ExtendedRenderKitService.class);
    String hidePopup = "var popupObj=AdfPage.PAGE.findComponent('" + popupId +
    "'); popupObj.hide();";
    service.addScript(FacesContext.getCurrentInstance(), hidePopup);
    Code to Show pop-up
    StringBuffer showPopup = new StringBuffer();
    showPopup.append("var hints = new Object();");
    showPopup.append("var popupObj=AdfPage.PAGE.findComponent('" +
    obj.getPopUpBind().getClientId() + "');popupObj.show(hints);");
    service.addScript(FacesContext.getCurrentInstance(), showPopup.toString());
    Code need to be added in jsff pop tag
    binding="#{pageFlowScope.bean.popUpBind}
    Variable need to be added in Bean.java
    private RichPopup popUpBind;

    Hari,
    Since you're using a non-public build of JDeveloper, you should be using a non-public forum.
    John

  • How can i open the plugins from the channel strip. I can't open it

    How can i open the plugins from the channel strip. I can't open it. Here's the vid detailing it www.youtube.com/watch?v=NkR04dHjUiI
    www.youtube.com/watch?v=GW9AwMITcoM
    Thanks for your help.

    From the online Help menu search on     Opening Plug
    Chose the help that starts with:   Opening, Closing, Resizing
    Read it.

  • How can I set to boot from MAC OS by default after I installed Windows?

    How can I choose to boot from MAC OS by default after I installed Windows? I have a MacBook Pro Leo 10.6.8. I used bootcamp to install Windows XP SP2, but now if I don't press the option key it will start up with Windows, and I don't want that. Thanks for any help.

    Select it in the Startup Disk pane of System Preferences.
    (61137)

  • How can I get specific URLs from outlook to open in firefox where IE is my default browser

    I require to open specific URLs from outlook to be opened in Firefox. However, IE will be my default browser.

    Try this tutorial ;)
    http://support.mozilla.com/en-US/kb/Remembering+passwords

  • How can I open shared files from laptop?

    I have connected my external hard disk to Airport extreme and configured through my laptop (Windows). Now I want to see files existing in hard disk through wireless. How can I open files and photoes?
    Regards,
    Balaji.

    Please check out the following Apple Support article for details.

  • How can I block a url from accessing my browser?

    I want to block a url from accessing my browser. The url in question, djbsaqja.co.cc, flashed a pop-up saying that my computer was infected with a dangerous virus and that "Windows Security" required that I download a program to fix it.
    I maintain realtime virus protection, but ran a manual scan anyway, which proved that I was clean.
    The url listed above would not let me out of an unending chain of popups, demanding that I download their tool.
    Instead, I opened a new Firefox session (it was the only way I could re-enter Firefox without this rogue url taking control), then cleared out my history, cache and cookies.
    I'm clean...and now I'm back in control with, I believe, no damage. But since I wrote down the url, is there a way that I can block from accessing my browser again?
    Thanks for the help.

    You can add it to your hosts file - http://allthingsmarked.com/2006/08/28/howto-block-websites-using-the-hosts-file
    Sites like that pop up on a regular basis, but will often get taken down quite quickly. I have just checked and the site appears to have been taken down.

  • How can I open an attachment from inside a PDF portfolio using flex 4.1?

    I am currently developing a portfolio and have a DataGrid which lists my sorted attachments.
    I can right click on an attachment to open it but I require it to happen on the double click event.
    My code currently looks like this (taken from an old example):
    private function itemDoubleClicked(event:ListEvent):void
                                            var itemIndex:int = event.rowIndex;
                                            var item:AttachmentImpl = AttachmentImpl(sortedCurrentItems.getItemAt(itemIndex));
                                            var command:CommandImpl = collectionManager.host.commands(acrobat.collection.CommandType.PREVIEW);
                                            Alert.show("you double clicked " + item.fileName);
                                            collectionManager.host.selection = [item];
                                            command.execute(item); 
    but i get a null pointer exception because command is null.
    Could anyone give me pointers or another solution?
    Thanks,
    Chris.
    Edit:
    I would like to extend this question as follows:
    when using 'host.commands' (as i believe is correct) I get the error that host is 'write-only' and therefore can access none of its methods.
    The example I use is from here: http://pdfdevjunkie.host.adobe.com/05_sorting.shtml
    Using this method, the host is overwritten by doing the following:
    public function set host(host:INavigatorHost):void
                                                 if(host != null) {
                                                           _host = host;
                                                           startEverything();
                                                 } else {
                                                           _host = null;
                                                           //Alert.show("Navigator Ending");
    When I try to do this I recieve the error that the method is not set for override.

    If i try to simply use the host e.g.
    host.selection = [item];
    It tells me that host is write-only. How can this be true?

  • How can I open Internet Explorer from Forms?

    I could manage to open IE with HOST giving it the correct path from IE in my computer.
    But how can I find out what directory IE is? Should I use OLE2? If yes, then how do I use it?
    Thanks,
    Ariadne

    I thinck that the path doesn't matter...
    Using Host('start http://www.oracle.com') will work no matter where IE is located

  • How can i convert a url from https to http?

    Hi,
    SSL is enabled in WLS 9.2 and its wrkng fine. And iam able to access login page in secure(https)mode. After this page i need to convert the url from https mode to http. For enabling https i added some code in web.xml. For switchinng https to http i dn't knw anythng.
    Pls gve me suggetion.
    Thanks in advance.

    Export it from iPhoto. This process will make a QuickTime movie of it. That will play on an PC that has QuickTime installed - and that's a free download for PC, and comes with iTunes for PC
    Regards
    TD

  • HT201413 2 part question:  First how can I place/transfer files from itunes to an andriod device, second, why is it that EVERYtime I install an upgrade or reinstall old files saved on an external drive, the files get corrupted or songs shortened/ or don't

    Dear Apple Corps;
    I have an issue with your software on my PC and iPad, iPod, and shuffle!  Everytime I download and update or try to reinstall files after having my computer "scrubbed"  they either won't open, can't be found or work poorly.   WHY????  I have been through alot of this over the last 3 years, and I am tired of files safely and securely transferred becoming corrupted or unusable or just plain deleted.   Please come back with and answer.  I also have invested heavy into iTunes files downloaded from the iTunes store, so how can I safely store a remote copy(s), to reload onto my cleaned hard drive or to a new device Apple or PC????????????????????????????????????????????????????????????????????????????? ?????????????????????????????????????!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!
    Tired of wasted time manually loading files I should be able to use off a stored copy.
    Richard Dreyer
    [email protected]

    "Den B" wrote in message news:9528356a-7e8f-45bf-9eee-30b40b5df4aa...
    Some strange glitch has erased every single unlocked & unprotected file on my C: drive. It wasn't a virus because I checked autorun records and running processes using the respective Sysinternals utilities and didn't find anything suspicious.
    I restored all data except for some system files and files that had "too long" of a path using shadow copies, which luckily for me were just a few hours old. Then, I decided to reboot into Recovery Environment and run System Restore from there. For even
    more strange reason, the available restore points in RE were dated November 2010 (it's May 2012 right now) and the recent save dates are nowhere to be found.
    To make matters worse, SFC doesn't work and Safe Mode shows BSOD after loading CLASSPNP.SYS.
    Error messages so far:
    RE's startup repair tool: System files integrity check and repair error code 0x2
    SFC: Windows Resource Protection could not perform the requested operation
    BSOD: 0x7B (0xFFFFF880009A9928, 0XFFFFFFFFC0000034, 0x0, 0x0), but the HDD is perfectly fine - it's a dual-boot machine
    CBS.log: Failed to get CSI store. [HRESULT = 0x80073712 - ERROR_SXS_COMPONENT_STORE_CORRUPT]
    What I need is a way to perform either an in-place upgrade without booting into Windows, or a way to fix the SXS Component Store, or rebuild the Safe Mode so that I could initiate upgrade install from there. A clean install isn't an option because I don't
    have the luxury of time to run through the reboot cycles when re-installing and updating other software (I'm using Windows 8 CP for now as my work tools are mostly in the cloud).
    It is not possible to do a repair install of a system unless you can boot to the system.
    Have you checked the hard drive for problems? - download the manufacturer's test utility, create the disk, and run the extended checks.
    Noel Paton | Nil Carborundum Illegitemi |
    CrashFixPC | The Three-toed Sloth

  • How can I call RFC FM from webdynpro application for ABAP? Please help!

    Hi Experts,
              I have a requirement where I have to make a call to RFC enabled function module passing some data from webdynpro for ABAP application. How can I achieve this? Any tutorial or links or docs will be very helpfull.
    I have seen some tutorial on Adaptive RFC but it talks about webdynpro for Java.
    Can I use "Call function XYZ destination A10" statement in webdynpro for ABAP application?
    Thanks
    Gopal

    am doing same thing for my current SRM implementation.I am taking data to SRM server from another R/3 server .
    This is solution I have used
    1) First of all I have made ABAP connection in SM59 .
    Go to SM59 .In ABAP Connection creat ABAP connection with system with which u want communicate .
    Eg I am connection with Systems PB1.
    So i developed Connection call PB1CLNT800.
    2) In my requirement I have taken data in my context from another r/3,
    I have give called RFC in my supply function of node.
    Call to RFC is as usual.
    In my case,
    CALL FUNCTION 'RFC_MATNR'
    DESTINATION 'PB1CLNT800'
    TABLES
    IT_MATNR = IT_MATNR.
    Onwards I have read my itab IT_MATNR and populated data to context.
    Hope solution will serve your purpose.
    Give point if it works .If any problem i have other ways.
    Cheers
    Parag Bhise

  • How can I open an app from an e-mail link that is associated with link.

    I get e-mails with links in them all the time (from forms, online shopping, etc).  Some of those links are for websites that have an iphone app associated with them (especially forums).  When I click on the link it tells me as much, and if I click "ok" to that dialog, it takes me to the App Store and to that specific App, where I can download it.  Even when I have that app installed, rather than taking me to that app when I click on the link, I get the dialog again telling me that there is an app associated with their website (which I already know because I have the app).  Is there any way to get these links to open in the associated App, rather than trying to open them up in the browser?

    This question has been answered before, see the page linked below:
    https://discussions.apple.com/message/15123175#15123175

Maybe you are looking for

  • Where did my iTunes go?

    Where did my iTunes go? I upgraded my iphone4 and it removed my iTunes and other apps too. What happend and how can I get iTunes back on my iphone4..? Also a photo album from my iPhoto on my computer sync with my iPhone and I cant figure out how to d

  • Recovering files from a dead HD?

    Hey all... Yesterday I tried burning an Audio CD with cdrecord, and since it was a 90min CD-R I had a lot of songs there. cdrecord failed the burning and said I could use -ignsize if I'm sure my drive is capable to burn this kind of CD. I guess it wa

  • External USB Sound Cards

    Hello! Im thinking of switching to a mac but one thing stumps me - would i be able to use an external sound card (creative sound blaster x fi, USB based) From what it seems, Creative does not directly support the operating system but was wondering if

  • GUI, NullPointerException and WTK

    Hi There, i wrote this simple application: import javax.microedition.midlet.*; import javax.microedition.lcdui.*; public class HighUI extends MIDlet {      private Display display;      private Form form;      private TextField name;      private Tex

  • Unable to open the xclock in RHEL even after setting the display

    Hi All, I''ve install the oracle on linux before that i need to se the diplay in order to launch OUI however I couldnt make it. and the showstopper is shown below. [root@Machine1 Desktop]# DISPLAY=192.168.0.129:1.0 [root@Machine1 Desktop]# export DIS