Select links within applet?

I want to be able to acually select links etc.. From inside a java applet. Up to now i have managed to get it to display the website but it doesn't allow me to select the actual links and thus progress.
private JEditorPane htmlPage;
private JScrollPane htmlScroll;
htmlPage = new JEditorPane;
getThePage("http://www.APage.net");
c.add(htmlScroll = new JScrollPane(htmlPage), BorderLayout.CENTER);
private void getThePage(String location) {
setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
try {
     htmlPage.setPage(location);
catch (IOException io) {
JOptionPane.showMessageDialog(this, "Page could not be
found," + "\nPlease check your connection",
"No connection", JOptionPane.WARNING_MESSAGE);
setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
}//End meth
Also will i still get pop-ups from sites with muliple pages or will only the main page be selected?

Make sure the page is completely loaded before clicking on anything..
Next use the zoom in feature to get a better angle at it
If these two steps fail try refreshing the page and then trying.

Similar Messages

  • Can't select links within web pages

    Just got an iPhone. Able to load web pages but once open, cannot now select any links within any web pages. Appeared to be working on Apple page initially but then stopped.

    Make sure the page is completely loaded before clicking on anything..
    Next use the zoom in feature to get a better angle at it
    If these two steps fail try refreshing the page and then trying.

  • Firefox hangs on a website won't allow me to select links within the website. when i restart firefox it won't open. i have to end the process from the task manager

    when i visit a site called clubforeplay.com it won't let me view any of my friends profiles. when i try to navigate away firefox does not respond. when i close out of firefox and try to reopen it. i get nothing. i have to physically go into the task manager and end the firefox.exe process manually before i can go back. i have tried to uninstall and then reinstall firefox with no luck. it is starting to affect my firefox in different websites

    i'm using firefox 3.6.13 and windows XP home SP3. when i visit zynga poker at facebook.com it turn slowly to open the application. when i try to navigate away, firefox does not respond. when i close the firefox and try to reopen it, i get nothing. i have to physically go into the task manager and end the firefox.exe process manually before i can go back. i have tried to uninstall and then reinstall firefox, but it didn't work, i tried also to sending the crash report from crashreporter.exe, the warning box said: "This application is run after a crash to report the problem to the application vendor. It should not be run directly", what should i do?

  • When I click on a link within a Web page, Firefox just spins until I reload the new page.

    When I enter a new URL or select a bookmark, Firefox loads the page promptly. When I click on a link within that page to go to another page, the Firefox tab green spinner often just spins and spins. It either takes a very long time to load (2 or more minutes), or never finishes loading. It's usually a greater problem when I "Open a link in a new tab". I can usually make the new page appear by reloading, either clicking the red X and the circular arrow, or Ctrl-F5, etc.

    Try the Firefox SafeMode to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    * You can open the Firefox 4/5/6/7 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • Links within a pdf won't open in Safari, but work fine on Explorer, Firefox

    I created a pdf with embedded links and posted it to my site. The links within the pdf work just fine with Internet Explorer and Mozilla Firefox, but they will not open with Safari, neither on a Mac nor on a Windows platform.
    Why is this happening and how can I fix it?

    Hi and Welcome to Apple Discussions...
    Try this. In the Safari window, click the Preferences icon right side of page.
    Then select the General tab.
    At the bottom of that window, below, "Open links from applications", choose the option you want.
    Carolyn

  • Why can't I use links within my email messages? When a link is clicked, nothing happens--it doesn't go to that specific website.

    Why can't I use links within my email messages? When a link is clicked, nothing happens--it doesn't go to that specific website.

    HI Ana ...
    I had FB working again two days ago, and yesterday in mid-serve Safari just "couldn't find the server" once more...
    That's a different issue...
    First, if you can just use English, open System Preferences > Language & Text then select the Language tab. Drag English to the top of the list then restart your Mac.
    Now for the server issue. Try using Open DNS. That shold help the "couldn't find the server" issue...
    Open System Preferences / Preferences then select the Network tab. Click the Advanced tab then click the DNS tab.
    Click +
    Enter these numbers exactly as you see them here.
    208.67.222.222
    Click +
    208.67.220.220
    Then click OK.
    Try accessing Facebook on Safari now.

  • DROP DB Link within PL/SQL proc.

    Hi,
    In a PL/SQL procedure and I have to delete and recreate a DB Link within a cursor. The DB Link has always the same name but the definition changes depending of some parameters. If I add DBMS_SESSION.CLOSE_DATABASE_LINK(my_dblink) and EXECUTE IMMEDIATE 'DROP DATABASE LINK my_dblink', I got this error message ORA-00439: feature not enabled: Enterprise User Security. If I don't use DBMS... I got ORA-02011: duplicate database link name. So, it seems I'm unable to delete and recreate a DB Link within my cursor. Any idea what's wrong?
    Thank you.

    This is the part not working :
    LOOP
    FETCH cur_modele_abc INTO v_no_centre, v_modele;
    EXIT WHEN cur_modele_abc%NOTFOUND;
    BEGIN
    --DBMS_SESSION.CLOSE_DATABASE_LINK('MY_DB_LINK');
    EXECUTE IMMEDIATE 'DROP DATABASE LINK MY_DB_LINK';
    COMMIT;
    EXCEPTION WHEN OTHERS THEN --> Si dblink était inexistant.
    v_string := 'CREATE DATABASE LINK MY_DB_LINK'
    ||' CONNECT TO '|| v_modele ||' IDENTIFIED BY '|| v_modele ||
    ' USING ''ABC_NATREL''';
    END;
    v_string := 'CREATE DATABASE LINK MY_DB_LINK'
    ||' CONNECT TO '|| v_modele ||' IDENTIFIED BY '|| v_modele ||
    ' USING ''ABC_NATREL''';
    EXECUTE IMMEDIATE v_string;
    ssdw_abc_stage_production_map.main(v_no_centre, p_job => p_jobname);
         COMMIT;
         --execute immediate 'ALTER SESSION CLOSE DATABASE LINK MY_DB_LINK';
         --DBMS_SESSION.CLOSE_DATABASE_LINK('MY_DB_LINK');
    SELECT TO_CHAR(SYSDATE, 'DD-MON-YYYY HH:MI:SS') INTO v_date FROM dual;
    abc_courriel('SSDW_STAGE Modèle ABC '||v_date, 'Modèle chargé : '||v_modele||' - '||v_no_centre);
    END LOOP;
    ...

  • Doc Links within Summ Total LMS

    I have created a couple of Captivate tutorials that feature
    links to PDF docs. Now I need to start using these tutorials
    through Summ Total LMS and I don't know how to post the PDF files
    so that I can edit the Captivate with the appropriate document
    address to make the links work.

    Hi,
    Simply make the link to the pdf document using the file name
    within captivate e.g., sales.pdf, without any filepath etc.
    Then publish the project, and select the zip function within
    captivate. Prior to uploading to SumTotal, double click the zipped
    project and drag and drop all the .pdf files you have links to into
    the zip package.
    Then upload to SumTotal as a zipped package. The links within
    captivate will open the .pdf.
    Just make sure you have set the option to 'New' to open a new
    window on click, in the click box properties within captivate when
    making the link, that way the .pdf will openin a fresh window
    allowing the project to remain.
    Webbo

  • Anchor links within a PDF?

    Is it possible to create anchor links within the body of a PDF? How?
    For example, having a list of topics at the top and then creating anchors that drop down to each topical section.
    Thank you!

    Yes. You can either used Named Destinations, or page views.
    Named Destinations need to be set up before the link is created, but can be
    used by more than one link. Page views are created ad-hoc when you select
    the action "Go to page view".

  • Need to select link twice when using Browser back button

    I see that my command_link works fine in normal scenarios.
    But when I come to that page using browser back button and then select the link within the page.... the first time, looks like its regenerating the page and only when I select the link second time it is calling the action listener associated with the link.
    Any clue as to how to fix this problem?
    Thanks

    use the following lines in your web.xml to avoid this bug of the current jsf-ri version.
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>I already tried to report this bug some time ago:
    http://forum.java.sun.com/thread.jsp?forum=427&thread=478928&tstart=180&trange=15

  • Links within .pdf

    Hello!
    I have a .pdf file that was created from a MS Publisher file.  The Publisher file has links that were thus created in the .pdf.  When I try to click on the link within the .pdf file, the hand cursor has a little 'w' on it and it actually won't let me just click on the link.  I have to right click on the link and then select open in new window in order for the link to open.
    Am I doing something wrong with the linking?
    Thanks!
    Jessica

    Within Publisher, I created the .pdf using the menubar option of Adobe.  I know when I try to print to .pdf, the links don't work at all.  The links were created within the Publisher file, not the .pdf file.  Once I created the .pdf from Publisher, the links were brought over.  The issue is that the links in the .pdf don't work appropriately.  I have to right click on the link in order to open it.  I can't just left click on it and it will open.

  • Is MacKeeper supported by Apple?  I keep getting pop-ups from it but I'm also getting them each time I click links within links? This is all new.

    Is MacKeeper supported by Apple?  I keep getting pop-ups from it but I'm also getting them each time I click links within links?

    Please post a screenshot that shows what you mean. Be careful not to include any private information.
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

  • Can't see the ESS Additional Personal Data link within Personal Information

    Hi All,
    For some reasons, I can not see the Additional Personal Data link within the ESS Personal Information iView. I have checked the Homepage framework and the existence of the iView in the PCD and everything appears to be fine.
    Do I need to assign any additional infotype to my id or give myself specific authorisations to see this link?
    I would really appreciate if you could provide an answer to my query.
    Thanks,
    Vibhu

    Hi,
    I think mostly you have maintained the data in PA30 Transaction and had data in Info type 0105.
    After this try to check with your EA-HR patch and SAP HR patch in the services. If  both are not maintained at the same patch levels such type of problems will occur.
    Regards,
    kishore.

  • Two instances of Firefox open when I click on a link within my email client. How can I stop this from happening?

    I am running on an iMac OS X 10.6.3 using Firefox 3.6.3 as my default browser and I use Postbox 1.1.5 as my email client. Anytime I click on a link within an email message two instances of Firefox open, one with my home page and one with the site the link was meant for. This happens only when Firefox is not already open. If Firefox is running and a link is clicked on it opens normally within the open instance of Firefox. I have contacted Postbox and am currently awaiting a response to see if they have any suggestions. While this is not a serious issue it is a bit annoying. I have Firefox set to open new links in tabs not new instances of windows, so it shouldn't be that. Any help in getting this to stop would be greatly appreciated.
    == This happened ==
    Every time Firefox opened
    == Not sure, it's been going on for quite awhile.

    That is a bug on Mac.
    See https://bugzilla.mozilla.org/show_bug.cgi?id=531552 - Firefox 3.6b opens two windows when opening external links
    ''(please do not comment in bug reports to avoid bug spam for the devs)''

  • In FF 34.0.5 I use to be able to click on a link within an e-mail and the link would open in a new tab; it now opens in the same tab; how can i change it back?

    I'm using FF 34.0.5 (I like it). I use to be able to right click on a link, within an e-mail, and the link would open in a new tab. Now when I click on the link it opens in the same tab replacing my e-mail.
    Example - a friend sends me an e-mail containing a link to a web site he thinks I'd like. I click on the link and go to the web site and then go back to the e-mail tab and reply to him. Now, when clicking that link, my e-mail disappears and is replaced by the new site.
    How can I fix this? When this happened once before I was told to change the 'value' for a specific 'preference name' through the about:config page.
    Can anyone help jog my memory?
    Thanks!

    Is this about clicking a link in an external program?
    You can check this pref on the about:config page for external links.
    * browser.link.open_newwindow.override.external (-1)
    If this pref has the default value -1 then browser.link.open_newwindow is used.
    * http://kb.mozillazine.org/browser.link.open_newwindow
    *1: current tab; 2:new window; 3:new tab;
    You can open the <b>about:config</b> page via the location/address bar.
    You can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config

Maybe you are looking for

  • Modify Header in XML report

    There is an example in the users manual to modify the report header by using a callback, Chapter 10-12 Adding to a Report Using Callbacks. Will this work for xml reports in TS 3.1? I don't have any experience with xml, but need to add text and possib

  • Changing all folders to List view in Finder: How to?

    I'm trying to accomplish what I assumed would be a simple task... I want the view of every folder, when opened in the Finder, to be List view. All new folders... all the existing folders... everything. I want it to forget all about any current settin

  • ITunes 7.6 and Windows Vista - Buying Ringones

    I have bought and downloaded a Song to my Itunes library. I click on the song and from the "store" menu I click on "Create a Ringtone" it prompts me to login into my account if I am not already logined in and then it tells me that I have not agreed t

  • Itunes won't open because of locked disk and is unwriteable

    I just had my mac refomatted and since then I cannot get into my itunes. I reinstalled it but it is saying "the folder is on a locked disk or I dont have write permissions." Help?

  • Extending wait times in Workflow (items that have already started)

    We have Order Mgt order line workflow that has multiple wait and loop activities. A number of these timeout in 2 minutes. We think that this is causing the WF BG process to run extremely long times because a processed item key times out before the pr