JSplitPane divider (One touch expandable)

Hi all,
I am having some problems with the JSplitPane divider. I am using onetouch expandable.
I want to stop the divider moving all the way up to the top of the window when the up arrow is clicked on. When you drag the divider up it stops near the top but doesn't go all the way up. but click on the up arrow on the divider bar and it rises completely to the top. How can I stop this from happening.
I have managed to add an action listener to the buttons on the divider bar, In the action listener I do the following - splitPane.setDividerLocation(0.1);
splitPane.updateUI();
This works but then an exception is thrown -
Exception occurred during event dispatching:
java.lang.NullPointerException
     at javax.swing.plaf.basic.BasicSplitPaneDivider$OneTouchActionHandler.actionPerformed(BasicSplitPaneDivider.java:916)
     at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1450)
     at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1504)
     at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:378)
     at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250)
     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:216)
     at java.awt.Component.processMouseEvent(Component.java:3717)
     at java.awt.Component.processEvent(Component.java:3546)
     at java.awt.Container.processEvent(Container.java:1167)
     at java.awt.Component.dispatchEventImpl(Component.java:2595)
     at java.awt.Container.dispatchEventImpl(Container.java:1216)
     at java.awt.Component.dispatchEvent(Component.java:2499)
     at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2458)
     at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2223)
     at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2132)
     at java.awt.Container.dispatchEventImpl(Container.java:1203)
     at java.awt.Window.dispatchEventImpl(Window.java:918)
     at java.awt.Component.dispatchEvent(Component.java:2499)
     at java.awt.EventQueue.dispatchEvent(EventQueue.java:336)
     at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:134)
     at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:101)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:96)
     at java.awt.EventDispatchThread.run(EventDispatchThread.java:88)
Can anyone help me out?
thanks,
Paul.

I have partial solution to the above problem but in doing so have encountered another problem that I can see no solution to. Can anyone help?
I have a calss that extends BasicSplitPaneDivider and in this calss i overide the OneTouchActionHandler with a version that sets the top value to be the top of the frame + the height of the component I want left shown. My problem is that this code never runs. The origional OneTouchActionHandler in the BasicSplitPaneDivider runs not my version. How can I get my version to run.
The version in BasicSplitPaneDivider is protected.
This code never runs.
<pre>
* Listeners installed on the one touch expandable buttons.
public class OneTouchActionHandlernew implements ActionListener {
     /** True indicates the resize should go the minimum (top or left)
     * vs false which indicates the resize should go to the maximum.
     private boolean toMinimum;
     OneTouchActionHandlernew(boolean toMinimum) {
     this.toMinimum = toMinimum;
public void actionPerformed(ActionEvent e) {
Insets insets = splitPane.getInsets();
     int lastLoc = splitPane.getLastDividerLocation();
int currentLoc = splitPaneUI.getDividerLocation(splitPane);
     int newLoc;
     // We use the location from the UI directly, as the location the
     // JSplitPane itself maintains is not necessarly correct.
System.out.println("The action listener is being used ");
     if (toMinimum) {
          if (orientation == JSplitPane.VERTICAL_SPLIT) {
          if (currentLoc >= (splitPane.getHeight() -
                    insets.bottom - getDividerSize()))
               newLoc = lastLoc;
          else
               newLoc = insets.top + 40;
          else {
          if (currentLoc >= (splitPane.getWidth() -
                    insets.right - getDividerSize()))
               newLoc = lastLoc;
          else
               newLoc = insets.left;
     else {
          if (orientation == JSplitPane.VERTICAL_SPLIT) {
          if (currentLoc == insets.top)
               newLoc = lastLoc;
          else
               newLoc = splitPane.getHeight() - getHeight() -
               insets.top;
          else {
          if (currentLoc == insets.left)
               newLoc = lastLoc;
          else
               newLoc = splitPane.getWidth() - getWidth() -
               insets.left;
     if (currentLoc != newLoc) {
          splitPane.setDividerLocation(newLoc);
          // We do this in case the dividers notion of the location
          // differs from the real location.
          splitPane.setLastDividerLocation(currentLoc);
} // End of class BasicSplitPaneDivider.LeftActionListener
</pre>

Similar Messages

  • JSplitPane - disable dragging, keep one touch buttons

    Hi, using JSplitPane to display two components and the one touch buttons are very useful for showing one or the other or both of them in a fixed ratio of size to each other. However the actual dragging of the JSplitPane just allows silly sizes to be set for the components so I want to disable the drag action of the JSplitPane bar but keep the onetouch functionality. The UI classes look complicated :-(
    Anyone done this before?

    Hi, using JSplitPane to display two components and
    the one touch buttons are very useful for showing one
    or the other or both of them in a fixed ratio of size
    to each other. However the actual dragging of the
    JSplitPane just allows silly sizes to be set for the
    components so I want to disable the drag action of
    the JSplitPane bar but keep the onetouch
    functionality. The UI classes look complicated :-(
    Anyone done this before?A quick solution might be to set the preferred size of the components so that no "silly sizes" can be set.

  • JSplitPane Divider problem...

    I'm having problem with the JSplitPane divider. Ive learned that the MouseListener class is most likely the reason why the divider isn't performing as expected. I had to learn how to use the MouseListener interface and I've also learned that the divider is an instance of BasicSplitPaneDivider. I've finally got the divider to PARTIALLY work if I only set the following:
    1) setting the setContinuousLayout(true)
    //setting it to false wont work for some reason, I want to fix that, too. By setting it to false, the divider wont move :(.
    and
    2) if I move the mouse slowly, so the divider can follow the mouse. If I move my mouse too fast, then my divider will suddenly stop the moment the mouse cursor hovers away from the divider.
    Can anyone help me fix the divider problem? Thanks in advance! Here's my code below:
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    import java.awt.event.MouseEvent;
    import javax.swing.event.MouseInputAdapter;
    import javax.swing.plaf.basic.BasicSplitPaneDivider;
    public class JSplitPaneDemo{
         public static void main(String args[]){
              //Practice p = new Practice("SplitPane Divider Works Now?");
              JSplitPaneDemo x = new JSplitPaneDemo();
              x.new Practice("SplitPane Divider Works Now?");
         public class DendrogramListener extends MouseInputAdapter
              Container contentPane;
              Component button1, button2, button3;
              JSplitPane splitter;
              Point mLocation;
              JFrame myFrame;
              MyGlassPane glass;
              private boolean inDrag = false;
              private boolean inButton = false;
              private boolean inDivider = false;
              public DendrogramListener(JFrame frame)
                   this.myFrame = frame;
                   this.contentPane = frame.getContentPane();
                   this.mLocation = new Point();
              public DendrogramListener(AbstractButton aButton, AbstractButton b2, AbstractButton b3, MyGlassPane glass1, Container cP, JSplitPane split){
                   this.button1 = aButton;
                   this.button2 = b2;
                   this.button3 = b3;
                   this.glass = glass1;
                   this.contentPane = cP;
                   this.mLocation = new Point();
                   this.splitter = split;
              public void mouseDragged(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
              public void mouseMoved(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
              public void mouseClicked(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
              public void mousePressed(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
              public void mouseReleased(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
                   inDrag = false;
              public void mouseEntered(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
              public void mouseExited(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
              public void redispatchMouseEvent(MouseEvent e){
                   inButton = false;
                   inDrag = false;
                   inDivider = false;
                   Component component = null;
                   JButton tempButton;
                   Container container = contentPane;
                   Point glassPanePoint = e.getPoint();
                   mLocation = e.getPoint();
                   Point containerPoint = SwingUtilities.convertPoint(glass, glassPanePoint, contentPane);
                   int eventID = e.getID();
                 component = SwingUtilities.getDeepestComponentAt(container, containerPoint.x, containerPoint.y);
                 if (component == null) {
                      //System.out.println("NULL");
                     return;
                 if (component instanceof JButton) {
                     inButton = true;
                 if(component instanceof BasicSplitPaneDivider){
                      inDivider = true;
                      testForDrag(eventID);
                 if (inButton || inDivider)
                           Point componentPoint = SwingUtilities.convertPoint(glass, glassPanePoint, component);
                          component.dispatchEvent(new MouseEvent(component,
                                                               eventID,
                                                               e.getWhen(),
                                                               e.getModifiers(),
                                                               componentPoint.x,
                                                               componentPoint.y,
                                                               e.getClickCount(),
                                                               e.isPopupTrigger()));
                   testForDrag(eventID);
             private void testForDrag(int eventID) {
                 if (eventID == MouseEvent.MOUSE_PRESSED) {
                     inDrag = true;
         public class MyGlassPane extends JComponent {
              int x0, y0;
              Point mLocation;
              public MyGlassPane(AbstractButton aButton, AbstractButton b2, AbstractButton b3, Container cP, JSplitPane splitter){
                   DendrogramListener dl = new DendrogramListener(aButton, b2, b3, this, cP, splitter);
                   addMouseListener(dl);
                   addMouseMotionListener(dl);
             public void setPoint(Point p) {
                 mLocation = p;
         public class Practice extends JFrame implements ActionListener
              private MyGlassPane glassPane;
              public Practice(String str)
                   super(str);
                   setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                   setDefaultLookAndFeelDecorated(true);
                   addComponents(this);
                   pack();
                   setVisible(true);
              public Practice addComponents(final Practice p)
                   JPanel leftPane = new JPanel();
                   JPanel midPane = new JPanel();
                   JPanel rightPane = new JPanel();
                   JLabel l1 = new JLabel("Left panel");
                   JLabel r1 = new JLabel("Right panel");
                   JLabel m1 = new JLabel("Middle panel");
                   JButton b1 = new JButton("Button 1");
                   JButton b2 = new JButton("Button 2");
                   JButton b3 = new JButton("Button 3");
                   leftPane.add(l1);
                   leftPane.add(b3);
                   b3.setActionCommand("b3");
                   b3.addActionListener(this);
                   leftPane.setPreferredSize(new Dimension(200, 300));
                   midPane.add(m1);
                   midPane.add(b1);
                   midPane.setPreferredSize(new Dimension(200, 300));
                   rightPane.add(r1);
                   rightPane.add(b2);
                   rightPane.setPreferredSize(new Dimension(200, 300));
                   JSplitPane splitter2 = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, rightPane, midPane);
                   splitter2.setOneTouchExpandable(true);
                   splitter2.setContinuousLayout(true);
                   JSplitPane splitter = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, leftPane, splitter2);
                   splitter.setOneTouchExpandable(true);
                   splitter.setContinuousLayout(true);
                   getContentPane().add(splitter);
                   glassPane = new MyGlassPane(b1, b2, b3, p.getContentPane(), splitter);
                   this.setGlassPane(glassPane);
                   glassPane.setVisible(true);
                   return p;
              public void actionPerformed(ActionEvent arg0) {
                   // TODO Auto-generated method stub
                   if("b3".equals(arg0.getActionCommand())){
                        JOptionPane.showMessageDialog(this, "Button 3 Pressed!");
    }

    The problem with your listener is that you are only dispatching events to the
    button or divider when the mouse is directly over that component. This results
    in the behavior you see with the divider: you have to move the mouse slowly
    to keep it over the divider otherwise it gets over some other component and
    you stop dispatching the events to it.
    You actually have a similar problem with the buttons: if you click on one, it
    gets the event but if you then drag the mouse out of the button and release
    the mouse, it still triggers the button! This is not how buttons work: if you
    release the mouse when it is not over the button, it shouldn't trigger.
    Try this for your listener:
         public class DendrogramListener extends MouseInputAdapter {
              Component redispatch;
              boolean inside;
              Container contentPane;
              Component button1, button2, button3;
              JSplitPane splitter;
              Point mLocation;
              JFrame myFrame;
              MyGlassPane glass;
              private boolean inDrag = false;
              private boolean inButton = false;
              public DendrogramListener( JFrame frame ) {
                   this.myFrame = frame;
                   this.contentPane = frame.getContentPane();
                   this.mLocation = new Point();
              public DendrogramListener( AbstractButton aButton, AbstractButton b2,
                        AbstractButton b3, MyGlassPane glass1, Container cP,
                        JSplitPane split ) {
                   this.button1 = aButton;
                   this.button2 = b2;
                   this.button3 = b3;
                   this.glass = glass1;
                   this.contentPane = cP;
                   this.mLocation = new Point();
                   this.splitter = split;
              public void mouseDragged( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
              public void mouseMoved( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
              public void mouseClicked( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
              public void mousePressed( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
              public void mouseReleased( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
                   inDrag = false;
                   inButton = false;
              public void mouseEntered( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
              public void mouseExited( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
              public void redispatchMouseEvent( MouseEvent e ) {
                   int eventID = e.getID();
                   Point glassPanePoint = e.getPoint();
                   Point containerPoint = SwingUtilities.convertPoint( glass, glassPanePoint, contentPane );
                   if ( !inDrag && !inButton && eventID == MouseEvent.MOUSE_PRESSED ) {
                        redispatch = SwingUtilities.getDeepestComponentAt( contentPane, containerPoint.x, containerPoint.y );
                        inButton = ( redispatch instanceof JButton );
                        inside = inButton;
                        if ( !inButton )
                             inDrag = ( redispatch instanceof BasicSplitPaneDivider );
                   if ( inButton || inDrag ) {
                        if ( inButton )
                             eventID = possiblySwitchEventID( eventID, containerPoint );
                        Point componentPoint = SwingUtilities.convertPoint( glass, glassPanePoint, redispatch );
                        redispatch.dispatchEvent( new MouseEvent( redispatch, eventID, e.getWhen(), e.getModifiers(),
                                  componentPoint.x, componentPoint.y, e.getClickCount(), e.isPopupTrigger() ) );
              private int possiblySwitchEventID( int eventID, Point containerPoint ) {
                   int switchedID = eventID;
                   Component deepest = SwingUtilities.getDeepestComponentAt( contentPane, containerPoint.x, containerPoint.y );
                   if ( deepest == redispatch ) {
                        if ( ! inside )
                             switchedID = MouseEvent.MOUSE_ENTERED;
                        inside = true;
                   } else {
                        if ( inside )
                             switchedID = MouseEvent.MOUSE_EXITED;
                        inside = false;
                   return switchedID;
         }: jay

  • Maxtor One touch external hard drive

    Ok, I have tried doing a query on this question and have come up empty. I recently bought a maxtor one touch 500 gig drive. I knew that I wanted a drive for backing but more so for adding room to use as our main drive. We bought a video camera a year ago and would like to upload the footage but do not have enough room on the original drive to add more than 45 minutes of video. Is there anyway to make iMovie look at the external drive to upload any new material? Or do I have to set (if possible and if so how do I) the maxtor as the bootable drive?

    Ya, when you set up a new project, just select the little triangle next to the file name field to expand the save box to see and select other drives...
    http://www.danslagle.com/mac/iMovie/usage/5006.shtml
    Patrick

  • JSplitPane divider not movable

    What would prevent a JSplitPane divider from being movable in its initial state?
    The left pane contains a JTabbedPane, and the right pane contains a JPanel. When the app starts, the left pane is as wide as a single tab, and the divider cannot be dragged. If I click the right arrow on the divider, it expands to the right and then I can drag it.
    I don't observe this behavior in the JSplitPane examples in the tutorials. I figure it must be something about the pane contents that triggers this. But what?
    Braden

    make sure you set the min, max, and preferredsize of both sides of the splitpane

  • I cannot sych my ipad nor ipod . When I plug in either using the usb cord they do not show up in itunes. I have synched both of these before on this computer. i am running windows 8 on a dell one touch computer.

    When I plug in my iPAD or iPod to my Dell one touch computer using windows 8 to synch them they do not show up.
    I have synched them both recently on this computer with no problems. I have restarted everything ( computer , ipad , ipod ) multiple times
    and used different usb cords and ports but nothiing works.

    Hello abaneki,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    Have a nice day,
    Mario

  • Is there a "one-touch" way to convert to my existing library to DNG?

    Is there a "one-touch" way to convert to DNG?
    My Aperture library currently has three types of files: JPEG files taken with point-and-shoot camera going back for years, (ii) RAW (NEF) files made with a Nikon D60, (iii) RAW (CR2) files made with a Canon G9, and (iv) RAW (DNG) files I have shot recently.
    I am interested in converting all the non-DNG RAW files (NEFs and CR2s) into the Adobe DNG file format. I understand that the format has a smaller file size (than the original RAW file) and that it is "lossless" (unlike converting to JPEG). So, in addition to "standardizing" my file-types, it will also reduce my overall library size (in GBs).
    So, the question is: is there a way to take my existing Aperture library and, through some (hopefully free) combination of scripts and programs, convert all the RAW files to DNG automatically and without having to export each one from Aperture and them import it again. That is, I want a solution that will look at each file and ignore the JPEGs and DNGs, (ii) convert the NEFs and CR2s into DNG, and (iii) move the original NEF/CR2 files to a folder (just in case)?
    This is not an problem going forward, because I can easily just import as DNG to begin with ... but its an issue for a few thousand images in my library.
    Any ideas? Also, anyone think this is a crazy bad idea?
    Thanks,
    ~B

    Do you find that using Aperture to "import" the pictures (e.g., using the import function on Aperture and pointing it at your memory card) gives better results than using the DNG converter to "import" (e.g., by selecting the camera memory card and saving the conversions to disk, then importing those DNG files into Aperture)?
    Not the way it works. The camera memory card does not have conversions on it, it has RAW (or JPEG) image files.
    IMO generally most useful to help keep drives underfilled and fast (drives slow as they fill) is to manage by Reference ("referenced images") as in the workflow outline below where Master images can live anywhere. However with small changes similar workflow could be applied to Managed Masters.
    I feel pretty strongly that card-to-Aperture or even camera-to-Aperture handling of original images puts originals at unnecessary risk. I suggest this workflow, first using the Finder (not Aperture) to copy images from CF card to computer hard drive:
    • Remove the CF card from the camera and insert it into a CF card reader. Faster readers and faster cards are preferable, and Firewire is much preferable to USB2.
    • Finder-copy images from CF to a labeled folder on the intended permanent Masters location hard drive.
    • Eject CF.
    • Burn backup hard drive or DVD copies of the original images (optional recommended backup step).
    • Eject backup hard drive(s) or DVDs.
    • From within Aperture, import images from the hard drive folder into Aperture selecting "Store files in their current location." This is called "referenced images." During import is the best time to also add keywords, but that is another discussion.
    • Review pix for completeness (e.g. a 500-pic shoot has 500 valid images showing).
    • Reformat CF in camera, and archive originals off site on hard drives and/or on DVDs.
    Note that the "eject" steps above are important in order to avoid mistakenly working on removable media.
    Alternatively, does anyone actually use (or recommend) Nikon-branded software for any step in this process? If your camera shoots JPG (as all mine did till a few months ago), it does not matter ... but does the RAW thing change that equasion?
    Yes RAW changes the equation. Folks who want the very best NEF conversions will use Nikon Capture NX2 but the interface *****. Personally I find Aperture very good for the D2x.
    Good luck!
    -Allen Wicks

  • My HP Pavilion 23 touchsmart all in one touch screen is not working

    My HP Pavilion 23 touchsmart all in one touch screen is not workin. I have restored the system. I didn't see any place in the pen and touch to disable or enable and not sure if i should instill drivers. What can i do?

    Hello @junk4are,
    I understand that you are having issues with your HP Pavilion 23 Touchsmart Desktop PC's touchscreen and are wondering if you should install your drivers. I would certainly recommend that you do so. I would be happy to assist you, but first I would encourage you to post your product number for your computer as there are various versions of the HP Pavilion 23. I am linking an HP Support document below that will show you how to find your product number. As well, if you could indicate which operating system you are using. And whether your operating system is 32-bit or 64-bit as with this and the product number I can provide you with accurate information.
    How Do I Find My Model Number or Product Number?
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please re-post with the requested information and I would be happy to provide you with assistance. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Powerbook 15" w/ Tiger won't read Maxtor One Touch II External Hard Drive

    Hi all:
    For some reason my G4 Powerbook can't recognize my Maxtor One Touch II external hard drive. I am trying to find a firewire cable that fits, as the Maxtor just gave me a USB and says that the cable won't work with mac. I am trying to find a cable that has a "printer type" end and a firewire end. Will it help? Where do I find it?
    Thanks,
    Chris

    No the printer type end, won't work in Mac OS X either. The software that is included with One Touch does not work well on Tiger or later. Instead I recommend not using that software, and instead using Shirt Pocket Superduper for backup. Or look for EMC/Dantz to update the drivers for the included software to Tiger. I think the One Touch does have a Firewire 6 pin connector which is Mac compatible. These ports look like the Firewire port on your G4 Powerbook. Port number 2 below is a Firewire port:
    You can buy the cable from the Apple Store, or any major Mac mail order shop such as Macwarehouse, Maczone, Macconnection, or even CDW.

  • External USB Maxtor One-Touch 3  suddenly fails to mount on MacBook Pro:

    External USB HD suddenly fails to mount on MacBook Pro:
    My One Touch III 600GB drive, external power supply, suddenly will not mount and is not recognized by the system profiler or Disk Utility, however, drive, connected USB, appears under windows XP.
    1. Power cable and usb cable working.
    2. Using external AC adapter(not relying on USB power).
    3. Other USB devices, mice, flash drives work on both USB ports.
    4. Drive works on Windows, folders and data integrity ok.
    5. Drive format is NTFS.
    6. No Maxtor software installed.
    7. No humming or strange noises emanating from drive.
    8. No problem to January 14, 2008,
    9. Mac OS 10.4.10 updates last downloaded and installed Jan 20, 2008.
    10.1 blip of the light on "The One Touch Button", then light turns solid white.
    Questions:
    1. Does Apple set sleep or lock switch for devices (drives)?
    2. If so, can it be reset manually?
    3. Does Apple have configuration profile for devices, like a registry key?
    4. If so, where is it located?
    Configuration:
    Dual 2 GHz MacBook Pro 15”
    2 GB DDR SDRAM
    OSX 10.4.10
    2 USB Ports Left and Right

    NOTE: This Update is required when using a OneTouch Drive as a bootable device. Seagate suggests that you dismount and disconnect your FireWire Drive before continuing.
    Users have identified issues when connecting OneTouch External Drives to FireWire Ports on their Mac G4 and/or G5 computers. These Problems range from system hangs, kernel panics to slow data transfer rates. The cause of these problems has been traced back to the FireWire Driver. Seagate has resolved these problems through updated FireWire Drivers.
    I am using USB and not trying to use drive as a boot device.

  • HT4145 How can I use an Airport Extreme to act as a Range Extender for an Alcatel One Touch Y800Z WiFi modem/router? I get a message saying it cannot be extended. Thank you. Arup

    How can I use an Airport Extreme to act as a Range Extender for an Alcatel One Touch Y800Z WiFi modem/router? As we live in a rural area and our landline broadband speeds are awful, I have moved on to a 3G provider in the UK (EE/Orange) and set up the wireless modem which is working very well with an iMac. I have an Airport Extreme base station which was previously connected with an Ethernet cable to the landline router, and two Airport Express stations as Range Extenders. I would now like to use the Airport Extreme and the two Express stations to extend the range of the Alcatel WiFi device. I have tried automatic and manual set up with the Airport Utility but at the crucial step for selecting a network to extend, although the WiFi device is recognised, I get a message saying it cannot be extended.
    Thank you for any help you can provide.
    Arup

    This is a problem with a lot of cheap end wifi hotspot like devices.. sometimes you can just swap the sim out to a real 3G wireless router.. that is a better approach IMHO than wireless repeater ever will be.
    In the meantime..
    Have a go with the suggestion.. place the express as wireless bridge. With a computer connected to the wifi from alcatel unit.. (I am amazed Alcatel still are in domestic market.. I thought they sold out). Set the express to join the wifi.. you do this in the airport utility.. old one is easy.. but in v6 you have to trust to luck so to speak and hope the auto setup works.. tell us if you have trouble.
    With the Express bridging.. you can then plug it by ethernet into the TC.. which will be in router bridge..
    ie
    You can then run the connection from wireless or ethernet on the TC.. and it will relay back to the alcatel for internet.. all a bit dodgy but who knows.. it may give you what you need.
    Wireless repeater is never particularly reliable in my experience. I would avoid it if possible.

  • Adobe premiere elements 12 with diamond vc500 one touch video capture device.

    Adobe premiere elements 12 and using Diamond vc500 one touch video capture device.
    AVI files will not load into Adobe premiere elements 12.
    I bought what I thought were the two best software and capture devices.
    I am archiving old VHS tapes and using Diamond vc500 capture software called EZ grabber. I thought the best archiving format would be AVI files. As I just started this project. I am willing to do what is needed.
    That even being, going and buy another capture device that being for a VCR to PC using a USB are even a Video card.
    EZ grabber software ask you to record in what format. I picked AVI. There is DVD - SVCD - VCD - MPG4. I want to archive then go back and edit. The DVD or SVCD format, is that not the same as mpeg 2?
    You and I know the drill. Saving in what long term archive format and that dare thing about video compression and losing quality of the videos. Its all a nightmare.
    Once again I am willing to buy another capture device for a VCR that will work with Adobe premiere elements 12.
    Help please with long term archiving format and capture device.
    Thanks

    The answer is B.
    Capturing the VHS content to computer (via the Diamond vc500 and USB connection and EZ grabber) to obtain an .avi file on your computer and then trying to import that into Premiere Elements with its Add Media/Files and Folders?
    When I do that, the Adobe premiere elements 12 crashes or only loads a 2 mins of video.
    The firewire connection device "Canopus" product sounds great. But I really don't want to spend that much on my home videos. My PC does not have a Firewire connection. So add a new card for that and the Canopus product. I could just pay someone to do my VHS tapes.
    Diamond vc500 $35
    Adobe premiere elements 12 $65
    Firewire card $50 plus
    Canopus $180
    $330 is way too much for simple home VHS videos

  • N95 + One Touch Access issue on Windows Vista Busi...

    Hi all,
    I searched for a solution to this issue both in this forum and in the Nokia PC Suite help but I couldn't find any.
    I'm able to use Nokia PC Suite with my N95 + cable DKE-2 except for One Touch Access.
    When I clic on "Connect to the Internet" I get the following error message pop up:
    "You do not have sufficient privileges to modify the connection properties. Only Administrators can create and modify connections."
    The funny thing is that I am an Admnistrator of my notebook (I don't know how many times I checked it from the Advanced User Accounts Control Panel).
    If I clic "Ok" I get the One Touch Access window with the following message:
    "There are no Nokia modems installed. Please make sure you have installed Nokia Connectivity Cable driver software."
    And below the picture of the notebook and the base station:
    "No modem found!"
    But if I check in the Device Manager (Control Panel) list I find "Nokia N95 USB Modem #2".
    Moreover, as far as I understood, the cable driver is automatically installed with the Nokia PC Suite and I shouldn't reinstall it: http://europe.nokia.com/A4144937.
    This is the System Information I get from the Help > About > System Info command:
    Operating system:
    Microsoft Windows Vista
    Build 6000
    No service pack installed
    Language: English (United States)
    Language for non-Unicode programs: English (United States)
    Locale: Italian (Standard)
    Input language: Italian (Standard)
    Nokia PC Suite:
    Version 6.81.13.0
    Language: English
    Connectivity Cable Drivers:
    Microsoft Outlook:
    Version 12.0
    Build 5000
    Bluetooth stack:
    Microsoft Bluetooth stack
    Version 6.0.6000.16386
    This is the log of the "Query Modem" command (Device Manager > Properties > Diagnostics):
    ATQ0V1E0 - OK
    AT+GMM - Nokia N95
    AT+FCLASS=? - 0
    AT#CLS=? - COMMAND NOT SUPPORTED
    AT+GCI? - COMMAND NOT SUPPORTED
    AT+GCI=? - COMMAND NOT SUPPORTED
    ATI1 - 356962013384111
    ATI2 - V 06wk41v31
    05-06-07
    RM-159
    (c) Nokia
    ATI3 - Nokia N95
    ATI4 - 2006_wk41_v26
    ATI5 - OK
    ATI6 - OK
    ATI7 - OK
    The modem driver is updated: version 6.84.0.0, date 21/06/2007.
    The Nokia N95 software is updated: version 12.0.013.
    Any help is very appreciated!
    Michele
    Thank you,
    Michele

    I've had the same problem but it was not solved by installing PC Suite 6.84 (as this failed to install), however this is how I got around it.
    Find the "OneTouchAccess.exe" program. It should be in C:/Program Files/Nokia/Nokia PC Suite 6/. Right-click the "OneTouchAccess.exe" program icon and go to ‘Properties’, then click the ‘Compatibility’ tab. Under ‘Privilege Level’, select ‘Run this program as administrator’ and click ‘OK’.
    Then when "PC Suite" tries to launch "OneTouchAccess.exe" via the "Connect to the Internet" icon, it does so with the right privilieges.
    (Any body know why PC Suite 6.84 would not install on my Acer notebook running Windows Vista V6.0 Build 6000?)

  • Maxtor One Touch III not showing up on Mac OSX or Windows

    ok so i have this Maxtor one touch III external hard drive that i used to use with my XP computer a few years ago... its 500 GB. so i plug it in to my Mac and install the software and it doesn't show up on my desktop or my disk utility. although, it does show up in my system profiler. so, it didn't work for mac... then i went onto my parallels account that has windows 7 on it and it still doesn't show up. what can i do to fix this?

    SynGatesFan200 wrote:
    Connection: USB
    Version of parallels: 5.0
    Section in system profiler: USB (shown as One touch III)
    Software used: maxtor installation disc for one touch III (windows), downloaded maxtor one touch 4 software (mac)
    Hi,
    all this, with the exception of the Maxtor software, should indicate a no-problem with that HD.
    Personally I have always avoided the provided software, since it is not needed for external HDs.
    If you have access to a Windows PC try connecting the HD there and see what comes up.
    And if you don't have valuable files on that HD, you might repartition it there as well.
    Could be a rare case of a 'dynamic disk' http://support.microsoft.com/kb/314343/en-us which is something that Macs can't handle.
    Regards
    Stefan
    Message was edited by: Fortuny

  • What format should I use for Maxtor  One Touch III external hard drive

    I'm not sure if I'm on the right forum section, but hopefully you can help. I just got a Maxtor One Touch III external hard drive with the firewire 400/usb 2.0 port. I installed the cd and followed the manual and it told me to format it. I went to disk utility and went to the "erase" section, but now it wants me to choose the type of format: mac os extended (case-sensitive), mac os journaled, mac os (case-sensitive, journaled) and so on.... Can anyone tell me what those formats mean/do, and what is the best one to use? Thanks!

    Case sensitive is really if you are using some old UNIX programs that you have brought the source over to OS X and compiled them. And the UNIX programs have to expect a case-sensitive file system.
    I'm betting this isn't the case... or you'd know what a case sensitive file system is.
    So go with HFS+ Journaled

Maybe you are looking for