Would like help with hyperlink

In a JEditorPane, HTML documents are displayed and when a
hyperlink is clicked, they are loaded. However, I would like to display,
in a status area, where the hyperlink points to before the mouse click
activates it (goes to that new page). I tried adding a mouse motion
listener but that didn't work. I'm not really sure why it didn't work but I
suspect it was because the editor pane was non-editable.
Any ideas on how to implement this?

Is this a bug or has someone else been able to get access to what
the hyperlink points to when the mouse is over the hyperlink and haven't
mouse clicked yet?Try the following code extracted from my program at http://www.aokabc.com (it works on 1.4):
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.text.*;
public class TPBugDemo extends JFrame{
    public TPBugDemo() throws Exception{
      this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      JEditorPane pane=new myJEditorPane();
     pane.setContentType("text/html");
     pane.setText("<A HREF='http://www.aokabc.com'>click me</A>");
      this.getContentPane().add(new JScrollPane(pane));
   public static void main(String args[]) throws Exception {
      TPBugDemo gI = new TPBugDemo();
      gI.setSize(400, 200);
      gI.setLocationRelativeTo(null);
      gI.setVisible(true);
   class myJEditorPane extends JEditorPane implements HyperlinkListener {
     public myJEditorPane() {
        super();
        setEditable(false);
        addHyperlinkListener(this);
     public void hyperlinkUpdate(HyperlinkEvent e) {
        if (e.getEventType()==HyperlinkEvent.EventType.ACTIVATED) {
          try {
             setPage(e.getURL());
          } catch (Throwable t) {
             System.out.println(t.toString());
        } else if (e.getEventType()==HyperlinkEvent.EventType.ENTERED) {          // simulate a hover effect (a CSS style not supported in 1.4.0)
          System.out.println(e.getURL());
          select(e.getSourceElement().getStartOffset(),e.getSourceElement().getEndOffset());
        } else if (e.getEventType()==HyperlinkEvent.EventType.EXITED) {
          select(e.getSourceElement().getStartOffset(),e.getSourceElement().getStartOffset());
};o)
V.V.

Similar Messages

  • Hi i would like help with:  When I draw circle and add stroke I can not see stroke  I use Photoshop CS 5

    Hi i would like help with:
    When I draw circle and add stroke I can not see stroke
    I use Photoshop CS 5

    Make sure the stroke is set to a color and not to the symbol that appears here for Fill

  • Would like help with treeset ,the codes that using for sorting, please ?

    hi every body. i faced a problem while writing this program, everything worked properly except this one. The program is related to Jframe and it asks the user to add three labels , three text field , one text area and three Jbuttons which are add sort and exit. i could deal with add and exit but sort, i couldn't do it properly because i don't know the codes that should be added in actionperfomed?
    These codes are :
    package gui;
    import javax.swing.SwingUtilities;
    import java.awt.BorderLayout;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import java.awt.Rectangle;
    import java.util.ArrayList;
    import javax.swing.JButton;
    import javax.swing.JTextField;
    import javax.swing.JTextArea;
    import sun.misc.Sort;
    import domain.Student;
    public class StudentFrame extends JFrame {
          * This method initializes btnAdd     
          * @return javax.swing.JButton     
         private JButton getBtnAdd() {
              if (btnAdd == null) {
                   btnAdd = new JButton();
                   btnAdd.setBounds(new Rectangle(13, 135, 59, 27));
                   btnAdd.setText("Add");
                   btnAdd.addActionListener(new java.awt.event.ActionListener() {
                        public void actionPerformed(java.awt.event.ActionEvent e) {
                        btnAddClicked(); // TODO Auto-generated Event stub actionPerformed()
              return btnAdd;
         protected void btnAddClicked() {
              // TODO Auto-generated method stub
         String name = txtName.getText();
         String id = txtID.getText();
         String age = txtAge.getText();
         Student s = new Student(name , id , age);
         txtArea.setText(String.valueOf(s ));
          * This method initializes btnSort     
          * @return javax.swing.JButton     
         private JButton getBtnSort() {
              if (btnSort == null) {
                   btnSort = new JButton();
                   btnSort.setBounds(new Rectangle(95, 136, 62, 25));
                   btnSort.setText("Sort");
                   btnSort.addActionListener(new java.awt.event.ActionListener() {
                        public void actionPerformed(java.awt.event.ActionEvent e) {
                             btnSortClicked(); // TODO Auto-generated Event stub actionPerformed()
              return btnSort;
         protected void btnSortClicked() {
              // TODO Auto-generated method stub
          * This method initializes btnExit     
          * @return javax.swing.JButton     
         private JButton getBtnExit() {
              if (btnExit == null) {
                   btnExit = new JButton();
                   btnExit.setBounds(new Rectangle(173, 134, 61, 23));
                   btnExit.setText("Exit");
                   btnExit.addActionListener(new java.awt.event.ActionListener() {
                        public void actionPerformed(java.awt.event.ActionEvent e) {
                             System.exit(0); // TODO Auto-generated Event stub actionPerformed()
              return btnExit;
          * This method initializes txtName     
          * @return javax.swing.JTextField     
         private JTextField getTxtName() {
              if (txtName == null) {
                   txtName = new JTextField();
                   txtName.setBounds(new Rectangle(79, 11, 60, 23));
              return txtName;
          * This method initializes txtID     
          * @return javax.swing.JTextField     
         private JTextField getTxtID() {
              if (txtID == null) {
                   txtID = new JTextField();
                   txtID.setBounds(new Rectangle(73, 55, 65, 26));
              return txtID;
          * This method initializes txtAge     
          * @return javax.swing.JTextField     
         private JTextField getTxtAge() {
              if (txtAge == null) {
                   txtAge = new JTextField();
                   txtAge.setBounds(new Rectangle(74, 96, 61, 24));
              return txtAge;
          * This method initializes txtArea     
          * @return javax.swing.JTextArea     
         private JTextArea getTxtArea() {
              if (txtArea == null) {
                   txtArea = new JTextArea();
                   txtArea.setBounds(new Rectangle(138, 5, 154, 128));
              return txtArea;
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        StudentFrame thisClass = new StudentFrame();
                        thisClass.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                        thisClass.setVisible(true);
          * This is the default constructor
         public StudentFrame() {
              super();
              initialize();
          * This method initializes this
          * @return void
         private void initialize() {
              this.setSize(300, 200);
              this.setContentPane(getJContentPane());
              this.setTitle("JFrame");
              return jContentPane;
    }Edited by: hypocrisy on Apr 26, 2009 6:51 PM

    There are three actionPerformed in that program.One for add Jbutton , Sort , and Exit
    the codes that i have added for add button after action performed are
    String name = txtName.getText();
    String id = txtID.getText();
    String age = txtAge.getText();
    Student s = new Student ( name , id , age);
    System.out.println(s);
    the codes for Exit button to make it works properly was :
    System.out.println(0);
    But when i came to Sort Button and i tried to enter many codes but it didn't sort properly so would you like to help me with the right codes :)

  • Would like help with trap command in Terminal

    I'm learning about the trap command from my bash book. I tried out the little script they gave:
    Code: 
    trap "echo 'You hit control-C!' " INTwhile true; do     sleep 60done
    But when I type control-c, the script just stops and the message is not displayed. I checked trap -l and saw that control-c is intr, but the same thing happened whet I tried that. Can anyone tell me what I'm missing?
    I'm using terminal (BSD) in OS X Snow Leopard

    I'm assuming that you are typing these commands in the terminal window and not initiating them thru a shell script. I'd like to suggest that you avoid infinite loops. Since you are bound to orphan processes. I'm going the use the external sleep command in my examples because it affords us some time to type CONTROL-C.
    [bash-4.2.8]~ $ trap "echo '......You hit control-C'" INT; sleep 15
    ^C  
    [bash-4.2.8]~ $
    [bash-4.2.8]~ $ ^C......You hit control-C
    The trap is set but Bash does not intercept the trap because sleep is running in the foreground. The interrupt signal is sent to the command sleep.
    Let's try running sleep in the background ->
    [bash-4.2.8]~ $ trap 2 #Set SIGINT to it's default
    [bash-4.2.8]~ $ trap "echo '......You hit control-C'" INT; sleep 15&
    [1] 368
    [bash-4.2.8]~ $ ^C......You hit control-C
    [bash-4.2.8]~ $ ^C......You hit control-C
    [1]+  Done                    sleep 15
    [bash-4.2.8]~ $ ^C......You hit control-C
    It works! Well, almost. You can't send the interrupt signal to a background process. In order for Bash to intercept the trap it must stay in the foreground. This happens when you initiate a sub-shell via a shell script or by rapping a command in paretheses ( ) ->
    [bash-4.2.8]~ $ trap 2  #Set SIGINT to it's default
    [bash-4.2.8]~ $ (trap "echo '......You hit control-C'" INT; sleep 15) ^C......You hit control-C
    [bash-4.2.8]~ $
    [bash-4.2.8]~ $ ^C
    The trap works and the interrupt signal was sent to sleep. Notice, the trap is only set in the sub-shell.
    Bash behaves differently when you use the built-in commands since you are working within the shell. I'll use an example similar to one of yours, except that you can break out of the loop by typing the number 10 or higher.
    [bash-4.2.8]~ $ trap "echo '.......You hit control-C'" INT ; x=0; while (( $x < 10 )); do echo "Enter a number"; read x; done
    Enter a number
    3
    Enter a number
    ^C.......You hit control-C
    3
    Enter a number
    10
    [bash-4.2.8]~ $
    [bash-4.2.8]~ $ ^C......You hit control-C
    [bash-4.2.8]~ $ trap 2  #Set SIGINT to it's default
    As you can see the trap works. I'm going to let you sort out what happens after I typed  CONTROL -C in the last example.....:-)  Hope this helps.
    Message was edited by: Mark Jalbert

  • I would need help with the following please: I need to save some of my email on a disk. I was going to Print, then Save PDF but then I am stuck. Help please. Thanks. Elisabeth

    I would need help with saving some eamil messages to a disk to unclutter my email. How can I do this please?
    Thanks.
    Elisabeth

    Open the email and then from the File menu select Save As Rich Text Format. That'll save it to open in TextEdit. If you want a pdf then open the email and do command-p (Print) and then from the PDF drop down box lower left corner select Save as PDF.

  • Would like assistance with multiple devices with multiple iTunes accounts syncing on one PC

    I have had an iPhone for some years now and have been syncing with my PC without issue (first with iPhone 3gs and now with iPhone 4s). My wife bought me an iPad 3 retina in December 2012 which syncs with the same PC as my phone and shares the same iTunes account. Apps downloaded onto one device are automatically downloaded to the other, iMessages are sent and received to both devices also.
    My Wife now has an iPad mini with retina (using her own existing iTunes account which she previously used for an iPhone she no longer uses). I synchronised her new iPad mini with my PC assuming iTunes would manage the device and related account and contents separately to my existing account and 2 devices. However this has caused an issue with the sharing of apps. Since doing so I have started seeing updates available on my devices for apps which I have never downloaded, but my wife has.  If I tell my iPad to update said apps, I am asked for my Wife's iTunes account password. 
    On doing some searching via google I now understand that I should have created a second windows profile on my PC for my wife and installed iTunes onto this profile for the purposes of syncing her device.
    I would very much like to do this, but would like some assistance on the best course of action for doing so. If I proceed and created a second profile and sync her device to this, I presume I would need to tell iTunes to treat her iPad as a new device (and wonder what would happen to her existing content)? Assuming we do this, I presume the issue of my seeing her app updates would still persist?
    Could someone advise if they have any experience with similar issues/queries?

    How to use multiple iPods, iPads, or iPhones with one computer
    http://support.apple.com/kb/HT1495
    How to Share a Family iPad
    http://www.macworld.com/article/1163347/how_to_share_a_family_ipad.html
    Using iPhone, iPad, or iPod with multiple computers
    http://support.apple.com/kb/ht1202
    iOS & iCloud Tips: Sharing an Apple ID With Your Family
    http://www.macstories.net/stories/ios-5-icloud-tips-sharing-an-apple-id-with-you r-family/
    How To Best Use and Share Apple IDs across iPhones, iPads and iPods
    http://www.nerdsonsite.com/blog/2012/06/07/help-im-appleid-confused/
     Cheers, Tom

  • Upgrade broke bluetooth - would like help diagnosing cause

    I ran two pacman -Syu cycles today and one or other (but I'm not sure which) has broken bluetooth. I would like, if possible, to figure out the most likely causes and whether there is anything which might have avoided this.
    A little background: bluetooth has always been dodgy on this machine. A BIOS upgrade helped but has not really resolved the issues under Linux. (Can't say about Windows as I don't use it.) Since the upgrade there is a reasonably certain way of restoring bluetooth but it is, frankly, a PITA. (It involves resetting BIOS to defaults which renders the machine unbootable as it wipes the EFI boot entry for grub. This is easily fixed but it is a pain to have to go through this all the time.)
    The issue is that bluetooth appears as hard blocked and nothing I've found short of the above reenables it.
    Here's pacman's log for today:
    [2012-10-28 00:01] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 00:01] synchronizing package lists
    [2012-10-28 00:17] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 00:17] synchronizing package lists
    [2012-10-28 01:01] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 01:01] synchronizing package lists
    [2012-10-28 01:05] Running 'pacman -Syu'
    [2012-10-28 01:05] synchronizing package lists
    [2012-10-28 01:05] starting full system upgrade
    [2012-10-28 01:07] upgraded firefox (16.0.1-1 -> 16.0.2-1)
    [2012-10-28 01:07] upgraded firefox-i18n-cy (16.0.1-1 -> 16.0.2-1)
    [2012-10-28 01:07] upgraded phonon (1:4.6.0-2 -> 1:4.6.0-3)
    [2012-10-28 01:07] upgraded wget (1.14-1 -> 1.14-2)
    [2012-10-28 01:07] Exited with code 0
    [2012-10-28 01:17] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 01:17] synchronizing package lists
    [2012-10-28 01:01] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 01:01] synchronizing package lists
    [2012-10-28 01:17] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 01:17] synchronizing package lists
    [2012-10-28 02:01] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 02:01] synchronizing package lists
    [2012-10-28 02:33] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 02:33] synchronizing package lists
    [2012-10-28 03:01] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 03:01] synchronizing package lists
    [2012-10-28 03:17] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 03:17] synchronizing package lists
    [2012-10-28 03:31] Running 'pacman -Syu'
    [2012-10-28 03:31] synchronizing package lists
    [2012-10-28 03:31] starting full system upgrade
    [2012-10-28 03:34] upgraded imagemagick (6.7.9.8-2 -> 6.8.0.3-1)
    [2012-10-28 03:34] upgraded calibre (0.9.4-1 -> 0.9.4-2)
    [2012-10-28 03:34] upgraded ilmbase (1.0.2-1 -> 1.0.3-1)
    [2012-10-28 03:34] upgraded openexr (1.7.1-1 -> 1.7.1-2)
    [2012-10-28 03:34] upgraded glew (1.8.0-2 -> 1.9.0-1)
    [2012-10-28 03:34] upgraded enblend-enfuse (4.0-7 -> 4.0-8)
    [2012-10-28 03:34] upgraded gambas3-runtime (3.3.3-2 -> 3.3.3-3)
    [2012-10-28 03:34] upgraded gambas3-devel (3.3.3-2 -> 3.3.3-3)
    [2012-10-28 03:34] upgraded gegl (0.2.0-4 -> 0.2.0-5)
    [2012-10-28 03:34] upgraded hugin (2011.4.0-6 -> 2011.4.0-7)
    [2012-10-28 03:34] upgraded imagemagick-doc (6.7.9.8-2 -> 6.8.0.3-1)
    [2012-10-28 03:35] upgraded inkscape (0.48.3.1-6 -> 0.48.3.1-7)
    [2012-10-28 03:35] upgraded kdelibs (4.9.2-2 -> 4.9.2-3)
    [2012-10-28 03:35] upgraded kdelibs3 (3.5.10-14 -> 3.5.10-15)
    [2012-10-28 03:35] upgraded obex-data-server (0.4.6-2 -> 0.4.6-3)
    [2012-10-28 03:35] upgraded xine-lib (1.2.2-2 -> 1.2.2-3)
    [2012-10-28 03:35] upgraded opencv (2.4.2-4 -> 2.4.2-5)
    [2012-10-28 03:35] upgraded pstoedit (3.60-2 -> 3.60-3)
    [2012-10-28 03:35] Exited with code 0
    [2012-10-28 16:01] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 16:01] synchronizing package lists
    [2012-10-28 17:01] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 17:01] synchronizing package lists
    [2012-10-28 17:17] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 17:17] synchronizing package lists
    [2012-10-28 18:01] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 18:01] synchronizing package lists
    [2012-10-28 18:17] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 18:17] synchronizing package lists
    [2012-10-28 19:01] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 19:01] synchronizing package lists
    [2012-10-28 19:17] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 19:17] synchronizing package lists
    [2012-10-28 20:01] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 20:01] synchronizing package lists
    [2012-10-28 20:17] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 20:17] synchronizing package lists
    [2012-10-28 20:32] Running 'pacman -Syu'
    [2012-10-28 20:32] synchronizing package lists
    [2012-10-28 20:33] starting full system upgrade
    [2012-10-28 20:37] upgraded linux-api-headers (3.5.5-1 -> 3.6.3-1)
    [2012-10-28 20:37] Generating locales...
    [2012-10-28 20:37] cy_GB.UTF-8... done
    [2012-10-28 20:37] cy_GB.ISO-8859-14... done
    [2012-10-28 20:37] en_GB.UTF-8... done
    [2012-10-28 20:37] en_GB.ISO-8859-1... done
    [2012-10-28 20:37] en_US.UTF-8... done
    [2012-10-28 20:37] en_US.ISO-8859-1... done
    [2012-10-28 20:37] Generation complete.
    [2012-10-28 20:37] upgraded glibc (2.16.0-4 -> 2.16.0-5)
    [2012-10-28 20:37] upgraded binutils-multilib (2.22-10 -> 2.23-1)
    [2012-10-28 20:37] upgraded colordiff (1.0.10-1 -> 1.0.12-1)
    [2012-10-28 20:37] upgraded lib32-glibc (2.16.0-4 -> 2.16.0-5)
    [2012-10-28 20:37] upgraded lib32-gcc-libs (4.7.2-1 -> 4.7.2-2)
    [2012-10-28 20:37] upgraded gcc-libs-multilib (4.7.2-1 -> 4.7.2-2)
    [2012-10-28 20:37] upgraded gcc-multilib (4.7.2-1 -> 4.7.2-2)
    [2012-10-28 20:37] upgraded monit (5.5-1 -> 5.5-2)
    [2012-10-28 20:37] upgraded powertop (2.1-1 -> 2.1.1-1)
    [2012-10-28 20:37] upgraded syslinux (4.05-7 -> 4.06-1)
    [2012-10-28 20:37] Exited with code 0
    [2012-10-28 20:46] Running 'pacman -U /home/software/packages/dropbox-cli-1-13-x86_64.pkg.tar.xz'
    [2012-10-28 20:46] upgraded dropbox-cli (1-12 -> 1-13)
    [2012-10-28 20:46] Exited with code 0
    [2012-10-28 21:01] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 21:01] synchronizing package lists
    [2012-10-28 21:17] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 21:17] synchronizing package lists
    [2012-10-28 22:01] Running 'pacman --dbpath /dev/shm/fakepacdb -Sy'
    [2012-10-28 22:01] synchronizing package lists
    I assume that obex-data-server is a plausible culprit but I'm not certain whether other things might be implicated such as glibc.
    systemctl shows this for bluetooth.service's status:
    bluetooth.service - Bluetooth service
    Loaded: loaded (/usr/lib/systemd/system/bluetooth.service; enabled)
    Active: active (running) since Sun, 2012-10-28 21:52:27 GMT; 17min ago
    Main PID: 415 (bluetoothd)
    CGroup: name=systemd:/system/bluetooth.service
    └ 415 /usr/sbin/bluetoothd -n
    Oct 28 21:52:20 <computername> bluetoothd[415]: Bluetooth daemon 4.101
    Oct 28 21:52:27 <computername> bluetoothd[415]: Starting SDP server
    Oct 28 21:52:29 <computername> bluetoothd[415]: Bluetooth Management interface initialized
    Oct 28 21:52:27 <computername> systemd[1]: Started Bluetooth service.
    Oct 28 21:52:30 <computername> bluetoothd[415]: bluetoothd[415]: Starting SDP server
    Oct 28 21:52:30 <computername> bluetoothd[415]: bluetoothd[415]: Bluetooth Management interface initialized
    errors.log includes these lines:
    Oct 28 15:36:28 localhost bluetoothd[447]: hci0: Remove UUID (0x0011) failed: Invalid Parameters (0x0d)
    Oct 28 15:36:28 localhost bluetoothd[447]: hci0: Remove UUID (0x0011) failed: Invalid Parameters (0x0d)
    journalctl includes:
    Oct 28 02:28:05 <computername> /USR/SBIN/CROND[30610]: (root) CMDOUT (run/udev/data/+bluetooth:hci0)
    Oct 28 02:28:45 <computername> /USR/SBIN/CROND[30610]: (root) CMDOUT (usr/lib/modules/3.0.48-1-lts/kernel/net/bluetooth/)
    Oct 28 02:28:45 <computername> /USR/SBIN/CROND[30610]: (root) CMDOUT (usr/lib/modules/3.0.48-1-lts/kernel/net/bluetooth/bluetooth.ko.gz)
    Oct 28 02:28:45 <computername> /USR/SBIN/CROND[30610]: (root) CMDOUT (usr/lib/modules/3.0.48-1-lts/kernel/net/bluetooth/bnep/)
    Oct 28 02:28:45 <computername> /USR/SBIN/CROND[30610]: (root) CMDOUT (usr/lib/modules/3.0.48-1-lts/kernel/net/bluetooth/bnep/bnep.ko.gz)
    Oct 28 02:28:45 <computername> /USR/SBIN/CROND[30610]: (root) CMDOUT (usr/lib/modules/3.0.48-1-lts/kernel/net/bluetooth/hidp/)
    Oct 28 02:29:06 <computername> /USR/SBIN/CROND[30610]: (root) CMDOUT (usr/lib/systemd/system/bluetooth.target)
    Oct 28 02:30:48 <computername> /USR/SBIN/CROND[30610]: (root) CMDOUT (usr/share/mime/application/vnd.kde.bluedevil-audio.xml)
    Oct 28 02:30:48 <computername> /USR/SBIN/CROND[30610]: (root) CMDOUT (usr/share/mime/application/vnd.kde.bluedevil-input.xml)
    Oct 28 02:30:48 <computername> /USR/SBIN/CROND[30610]: (root) CMDOUT (usr/share/mime/application/vnd.kde.bluedevil-network-dun.xml)
    Oct 28 02:30:48 <computername> /USR/SBIN/CROND[30610]: (root) CMDOUT (usr/share/mime/application/vnd.kde.bluedevil-network-panu.xml)
    Oct 28 02:30:48 <computername> /USR/SBIN/CROND[30610]: (root) CMDOUT (usr/share/mime/application/vnd.kde.bluedevil-sendfile.xml)
    Oct 28 02:32:29 <computername> /USR/SBIN/CROND[30610]: (root) CMDOUT (var/lib/bluetooth/***/config)
    Oct 28 15:36:24 <computername> systemd[1]: Service bluetooth.target is not needed anymore. Stopping.
    Oct 28 15:36:24 <computername> systemd[1]: Stopping Bluetooth.
    Oct 28 15:36:24 <computername> systemd[1]: Stopped target Bluetooth.
    Oct 28 15:36:24 <computername> systemd[1]: Starting Bluetooth.
    Oct 28 15:36:24 <computername> systemd[1]: Reached target Bluetooth.
    Oct 28 15:36:25 <computername> bluetoothd[447]: bluetoothd[447]: Adapter /org/bluez/447/hci0 has been disabled
    Oct 28 15:36:25 <computername> bluetoothd[447]: Adapter /org/bluez/447/hci0 has been disabled
    Oct 28 15:36:25 <computername> bluetoothd[447]: Unregister path: /org/bluez/447/hci0
    Oct 28 15:36:25 <computername> bluetoothd[447]: bluetoothd[447]: Unregister path: /org/bluez/447/hci0
    Oct 28 15:36:25 <computername> bluetoothd[447]: bluetoothd[447]: input-headset driver probe failed for device ***
    Oct 28 15:36:25 <computername> bluetoothd[447]: input-headset driver probe failed for device ***
    Oct 28 15:36:25 <computername> bluetoothd[447]: Adapter /org/bluez/447/hci0 has been enabled
    Oct 28 15:36:25 <computername> bluetoothd[447]: bluetoothd[447]: Adapter /org/bluez/447/hci0 has been enabled
    Oct 28 15:36:28 <computername> bluetoothd[447]: bluetoothd[447]: hci0: Remove UUID (0x0011) failed: Invalid Parameters (0x0d)
    Oct 28 15:36:28 <computername> bluetoothd[447]: hci0: Remove UUID (0x0011) failed: Invalid Parameters (0x0d)
    Oct 28 15:36:28 <computername> bluetoothd[447]: bluetoothd[447]: hci0: Remove UUID (0x0011) failed: Invalid Parameters (0x0d)
    Oct 28 15:36:28 <computername> bluetoothd[447]: hci0: Remove UUID (0x0011) failed: Invalid Parameters (0x0d)
    Oct 28 16:11:55 <computername> systemd[1]: Stopping Bluetooth.
    Oct 28 16:11:55 <computername> systemd[1]: Stopped target Bluetooth.
    Oct 28 16:11:55 <computername> systemd[1]: Stopping Bluetooth service...
    Oct 28 16:11:55 <computername> bluetoothd[447]: bluetoothd[447]: Terminating
    Oct 28 16:11:55 <computername> bluetoothd[447]: Terminating
    Oct 28 16:11:55 <computername> bluetoothd[447]: Stopping SDP server
    Oct 28 16:11:55 <computername> bluetoothd[447]: Exit
    Oct 28 16:11:55 <computername> bluetoothd[447]: bluetoothd[447]: Stopping SDP server
    Oct 28 16:11:55 <computername> bluetoothd[447]: bluetoothd[447]: Exit
    Oct 28 16:11:56 <computername> systemd[1]: Stopped Bluetooth service.
    Oct 28 16:58:47 <computername> kernel: Bluetooth: Core ver 2.16
    Oct 28 16:58:47 <computername> kernel: Bluetooth: HCI device and connection manager initialized
    Oct 28 16:58:47 <computername> kernel: Bluetooth: HCI socket layer initialized
    Oct 28 16:58:47 <computername> kernel: Bluetooth: L2CAP socket layer initialized
    Oct 28 16:58:47 <computername> kernel: Bluetooth: SCO socket layer initialized
    Oct 28 16:58:47 <computername> kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked
    Oct 28 16:58:54 <computername> bluetoothd[411]: Bluetooth daemon 4.101
    Oct 28 16:58:55 <computername> bluetoothd[411]: bluetoothd[411]: Bluetooth daemon 4.101
    Oct 28 16:59:00 <computername> bluetoothd[411]: Starting SDP server
    Oct 28 16:59:00 <computername> bluetoothd[411]: Bluetooth Management interface initialized
    Oct 28 16:59:09 <computername> bluetoothd[411]: bluetoothd[411]: Starting SDP server
    Oct 28 16:59:09 <computername> bluetoothd[411]: bluetoothd[411]: Bluetooth Management interface initialized
    Oct 28 16:59:00 <computername> systemd[1]: Started Bluetooth service.
    Oct 28 16:59:00 <computername> systemd[1]: Starting Bluetooth.
    Oct 28 16:59:00 <computername> systemd[1]: Reached target Bluetooth.
    Oct 28 16:59:00 <computername> systemd[1]: Service bluetooth.target is not needed anymore. Stopping.
    Oct 28 16:59:00 <computername> systemd[1]: Stopping Bluetooth.
    Oct 28 16:59:00 <computername> systemd[1]: Stopped target Bluetooth.
    Oct 28 16:59:09 <computername> kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    Oct 28 20:46:50 <computername> systemd[1]: Stopping Bluetooth service...
    Oct 28 20:46:50 <computername> bluetoothd[411]: bluetoothd[411]: Terminating
    Oct 28 20:46:50 <computername> bluetoothd[411]: Terminating
    Oct 28 20:46:50 <computername> bluetoothd[411]: Stopping SDP server
    Oct 28 20:46:50 <computername> bluetoothd[411]: Exit
    Oct 28 20:46:50 <computername> bluetoothd[411]: bluetoothd[411]: Stopping SDP server
    Oct 28 20:46:50 <computername> bluetoothd[411]: bluetoothd[411]: Exit
    Oct 28 20:46:50 <computername> systemd[1]: Stopped Bluetooth service.
    Oct 28 20:47:39 <computername> kernel: Bluetooth: Core ver 2.16
    Oct 28 20:47:39 <computername> kernel: Bluetooth: HCI device and connection manager initialized
    Oct 28 20:47:39 <computername> kernel: Bluetooth: HCI socket layer initialized
    Oct 28 20:47:39 <computername> kernel: Bluetooth: L2CAP socket layer initialized
    Oct 28 20:47:39 <computername> kernel: Bluetooth: SCO socket layer initialized
    Oct 28 20:47:39 <computername> kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked
    Oct 28 20:47:45 <computername> bluetoothd[435]: Bluetooth daemon 4.101
    Oct 28 20:47:45 <computername> bluetoothd[435]: bluetoothd[435]: Bluetooth daemon 4.101
    Oct 28 20:47:52 <computername> systemd[1]: Started Bluetooth service.
    Oct 28 20:47:52 <computername> systemd[1]: Starting Bluetooth.
    Oct 28 20:47:52 <computername> systemd[1]: Reached target Bluetooth.
    Oct 28 20:47:52 <computername> systemd[1]: Service bluetooth.target is not needed anymore. Stopping.
    Oct 28 20:47:52 <computername> systemd[1]: Stopping Bluetooth.
    Oct 28 20:47:52 <computername> systemd[1]: Stopped target Bluetooth.
    Oct 28 20:47:55 <computername> bluetoothd[435]: bluetoothd[435]: Starting SDP server
    Oct 28 20:47:55 <computername> bluetoothd[435]: bluetoothd[435]: Bluetooth Management interface initialized
    Oct 28 20:47:52 <computername> bluetoothd[435]: Starting SDP server
    Oct 28 20:47:55 <computername> bluetoothd[435]: Bluetooth Management interface initialized
    Oct 28 20:47:55 <computername> kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    Oct 28 21:51:35 <computername> systemd[1]: Stopping Bluetooth service...
    Oct 28 21:51:35 <computername> bluetoothd[435]: bluetoothd[435]: Terminating
    Oct 28 21:51:35 <computername> bluetoothd[435]: Terminating
    Oct 28 21:51:35 <computername> bluetoothd[435]: Stopping SDP server
    Oct 28 21:51:35 <computername> bluetoothd[435]: Exit
    Oct 28 21:51:35 <computername> bluetoothd[435]: bluetoothd[435]: Stopping SDP server
    Oct 28 21:51:35 <computername> bluetoothd[435]: bluetoothd[435]: Exit
    Oct 28 21:51:35 <computername> systemd[1]: Stopped Bluetooth service.
    Oct 28 21:52:03 <computername> kernel: Bluetooth: Core ver 2.16
    Oct 28 21:52:03 <computername> kernel: Bluetooth: HCI device and connection manager initialized
    Oct 28 21:52:03 <computername> kernel: Bluetooth: HCI socket layer initialized
    Oct 28 21:52:03 <computername> kernel: Bluetooth: L2CAP socket layer initialized
    Oct 28 21:52:03 <computername> kernel: Bluetooth: SCO socket layer initialized
    Oct 28 21:52:04 <computername> kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked
    Oct 28 21:52:20 <computername> bluetoothd[415]: bluetoothd[415]: Bluetooth daemon 4.101
    Oct 28 21:52:20 <computername> bluetoothd[415]: Bluetooth daemon 4.101
    Oct 28 21:52:27 <computername> bluetoothd[415]: Starting SDP server
    Oct 28 21:52:29 <computername> bluetoothd[415]: Bluetooth Management interface initialized
    Oct 28 21:52:27 <computername> systemd[1]: Started Bluetooth service.
    Oct 28 21:52:27 <computername> systemd[1]: Starting Bluetooth.
    Oct 28 21:52:27 <computername> systemd[1]: Reached target Bluetooth.
    Oct 28 21:52:27 <computername> systemd[1]: Service bluetooth.target is not needed anymore. Stopping.
    Oct 28 21:52:27 <computername> systemd[1]: Stopping Bluetooth.
    Oct 28 21:52:27 <computername> systemd[1]: Stopped target Bluetooth.
    Oct 28 21:52:30 <computername> bluetoothd[415]: bluetoothd[415]: Starting SDP server
    Oct 28 21:52:30 <computername> bluetoothd[415]: bluetoothd[415]: Bluetooth Management interface initialized
    Oct 28 21:52:30 <computername> kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    I'm not sure why "adaptor  /org/bluez/447/hci0" would be disabled? Or what would have disabled it? I guessing this is the key but is this a symptom or a cause?
    EDIT: I just realised that in the above output, CROND seems to be using the lts modules for bluetooth (not sure what cron does with bluetooth). The records show that I was not booted with the lts kernel at this point. (I had to check as I did try the lts kernel when my machine was badly overheating but it didn't seem to help.) I have no idea what those commands are trying to do, but is that expected?
    Last edited by cfr (2012-10-29 01:30:45)

    Well, what does your root crontab show?  I guess you should probably also dig around to see if you can figure out where those cronjobs are running from.  They indicate root, but I know that can also come from the set of scripts in /etc. 
    What happens if you modprobe that module.  Like maybe load it (and hope that it then loads the right one), or removing the module and reloading it.
    Also, the other day, I discovered that with UEFI, you can have a default efi program that doesn't require a boot manager entry.  Anything that is saved as \EFI\boot\bootx86.efi will automatically be booted when you select your device from the boot manager menu (like the hard drive itself, as if you were going to boot from the mbr).  I am not sure what would happen though if you were to have two efi system partitions though, but I am fairly certain you only have one. 
    So I have set my system up so that I have one boot manager entry for linux-ck, and then my hard drive is second in the boot list.  So if I selecy my hard drive, I have gummiboot set up as bootx64.efi, and from there I have all my other possible boot methods, including the shell.  Since you are a grub user, maybe you should copy grub to that position and see what happens.  I guess this is why the bios has a setting to switch whether uefi or bios should be tried first.

  • I know the password is correct, as other devices and this site have accepted the password.  I would like help in uninstalling a few of the devices where the program is no longer needed.

    I would like to use Adobe Digital Editions on a new Nook Tablet.  I believe I have gone over the limit of devices and this may be why my password is being rejected on the new device.  I would like to uninstall the program from devices where it is no longer needed.
    Obviously my password is correct, as I am logged on here. 

    On the wireless networks that your Mac has had trouble connecting to, do you know which Wireless Security type (WEP, WPA, or WPA2) is being used?
    If it is WEP, one of the problems is that the actual standard relies on a 10 character HEX key for 40bit WEP and a 26 character HEX key for 128bit WEP.   In order to make things easier, vendors use certain algorithms to convert simple alphanumeric passwords (or passphrases) into HEX keys, thus enabling the use of simple easy to remember WEP password rather than lengthy HEX keys. The problem is that different vendors use different algorithms to generate the HEX key and therefore a ASCII password on an AEBS will be hashed differently on a non-Apple client and vice versa.   You may find the following Apple Support article helpful.

  • Newby would appreciate help with List Box

    HI all,
    In the process of designing a simple form that has a list box containing multiple salary designations.
    For each of those designations eg Accountant, Accounts Payable supervisor, I have specified an item value in the Binding tab which happens to be the salary of the position
    What I would like to happen is that when a selection is made in the list box i.e. operator selects say Accountant, the item value (in this case the salary) populates another field which is used later for costing calculations.
    Help unfortunately is not all that helpfull so would appreciate any assistance you might be able to provide and thanks in anticipation  

    For example to populate a NumericField1 on the form when the selection was made in ListBox1, you need to use some thing like this.
    Place the code in the Exit event of the ListBox. Language is JavaScript.
         NumericField1.rawValue = ListBox1.rawValue;
    rawValue will give the value that was assigned in the Binding tab.
    Hope this helps.
    Thanks
    Srini

  • Help with hyperlinks from and InDesign .swf

    Hi All,
    I created an  interactive document in InDesign CS5 that I exported as a .swf and  inserted it into a html based webpage.  I would like the buttons I  created with url actions to open the url in the same broswer window and  not in a new broswer window.  Is this possible in ID CS5 and if not how  can I get it done.  I have enough knowledge in flash to be dangerous.
    Thanks in advance and if I was not speicific enought please let me know.

    You should address InDesign questions to the folks in the InDesign forums...
    http://forums.adobe.com/community/indesign
    You won't be able to do anything in Flash with the swf you created with InDesign to change how the linked pages open.  That needs to be defined in the swf's linking code and Flash cannot edit an swf.

  • I am unable to edit PDF file.  I have paid for the Adobe dc program and when I attempt to do this, I am redirected to payment screen.  Would like help?  Adobe takes my money easily, but have no way to contact them except through this setting.  I would li

    I cannot edit a PDF file.  When I try it redirects me to payment screen and I have already paid for this!  I would like to talk to someone per phone.  You have easily taken my money and I would like support.

    "Adobe dc program"???
    Such does not exist; at least not from Adobe.
    As has been asked - What, specifically, was subscribed to? It is identified on the receipt Adobe provides for each subscription account one opens.
    Be well...

  • Need help with hyperlink for jpeg

    I sound like a noob.. but i have a single jpeg with different images on it... and i want to create a hyperlink for specific areas that you point to and not the entire jpeg.... i just can't seem to figure out how to do this, any help would be greatly appreciated

    Welcome to the discussions. See here:
    http://allaboutiweb.com/index.php/2009/01/fake-an-image-map-in-iweb/
    You may find more suggestions by clicking here.

  • Help with Hyperlinks on Media Gallery Widget.

    I need to include an hyperlink on the Caption (every image) on Media Gallery widget, like this >>
    The problem is when I check the iBook on my iPad (vertical orientation) all the links appears at the end of the text, but they ARE NOT VISIBLE on iBooks Author (please chek the images below)
    SCREEN CAPTURE FROM IPAD >>
    SCREEN CAPTURE FROM IBA >>
    Is there a way to erase these on the final version?
    Thanks in advance
    Carlos Garro

    I'll bite....
    You want help to:
    - include hyperlinks
    - erase included hyperlinks
    See
    Publishing With iBooks Author
    http://shop.oreilly.com/product/0636920025597.do

  • Help with Hyperlinks...

    I've created two books with multiple chapters. Both books are the same with the exception that one book is in full color for publication to the web, with the second being black/white for printing. All of the hyperlinks that I created in the black/white version are correct. When I created the color version of the publication that has the exact same hyperlinks, that's where I'm getting the problem. I guess my question is, can I "import" the hyperlinks from the black and white publication into the color publication? Any help would be appreciated...
    ~Vince

    Did you take the b/w file and just add colour? I'm not entirely sure why the hyperlinks would go missing. (If the document was created for print, are the hyperlinks present as interactive elements?) Is there a reason to build the colour version from scratch?
    If you are in CS4 you could try using conditional text and placing the black and white images and colour images on a different layer. to keep your b/w and colour version in the same file. Thus eliminating the need to import hyperlinks.
    Someone on here is bound to have a better method, but I discovered that exporting all stories to a folder I could drag the text files to an unused master page and the greyed out links would show up in the hyperlinks panel. I don't think I'd opt for that route though.

  • Would appreciate help with applecare difficulties

    I have a 1ghz G4 14” ibook that was purchased in December of 2003 along with the extended applecare plan. Since then, I’ve sent it in, under warranty, 4 times for the same problem; this will be my fifth attempt to have the flickering lcd backlight repaired.
    This is obviously a problem and complete waste of my time, but what irritates me more is that the ibook has been returned, by applecare, every time with more problems and even damages.
    The ibook came back from the first “repair” with light scratches and deep gouges on the outer case plastics. The deep gouges are located on the underside of the ibook, where it looks like the computer was placed on a tool or improper work surface and then slide around. The case plastics are misaligned and poorly reassembled. The lcd backlight problem was unresolved.
    The second “repair” replaced the perfectly functioning combo drive for some unknown reason. Now the combo drive scratches discs, misreads discs, and sounds like my garbage disposal. The lcd backlight problem was unresolved. Beginning at this point is when adjusting the display angle can influence the backlight flickering.
    Applecare kept my ibook for almost 2 weeks on the third attempted repair. We had an apple genius observe and note the problem with the flickering lcd. Apple told us that the computer would now be fixed because a genius had witnessed and documented the problem. Applecare kept the computer in observation for 2 weeks and then sent it back, functioning improperly, because they couldn’t replicate the already documented problem.
    Upon delivery of the fourth “repair” attempt is when I was most disgusted; I found my ibook barely reassembled. It seemed that whoever had worked on my ibook was sick of having it pass through their hands repeatedly and believed that nothing was wrong with it. They decided that destroying my ibook would be a good deterrent against me sending it in again. Besides for the loose screws and open seams along the plastics, the backlight is stuck at about 50% brightness and the clicker/charging board randomly acknowledges mouse clicks and will not charge any of my batteries.
    It feels that powerbook repairs take precedence over ibook repairs, because I have had nothing but great service from applecare regarding my rev. a 12" pbg4.
    I guess I would just like to hear some suggestions about how to deal with this and have the ibook properly repaired. How do I email apple's customer service? My phone calls just lead all over to people I can't trace and "promises" that aren't documented.
    If you're still reading, I appreciate it. Thanks for your help.
    Louis

    You need to contact Apple Customer Relations. You can get to them (in the US) by dialing the AppleCare Support number, but pressing "0" instead of one of the other options to get to an operator. Ask them to connect you. Be prepared with the dates and case numbers for your previous repairs and the problems your iBook came back with. Be friendly, but firm, and request that this time your iBook is replaced rather than repaired. There's no guarantee they'll agree to it right away, but they may agree that the next time you should get a replacement.
    -Doug

Maybe you are looking for