Any swing buttons??

Does anyone know of any swing libraries that contain pre-fab buttons? I'm looking for button's to use as "New" "Save" "Open" those type..
Thanks
Adam

No, I don't. But they are so easy to make (JButton okButton = new JButton("OK");, etc.) that such a library would be pretty unnecessary.

Similar Messages

  • Problem with java swing button and loop

    Problem with java swing button and loop
    I�m using VAJ 4.0. and I�m doing normal GUI application. I have next problem.
    I have in the same class two jswing buttons named start (ivjGStart) and stop (ivjGStop) and private static int field named Status where initial value is 0. This buttons should work something like this:
    When I click on start button it must do next:
    Start button must set disenabled and Stop button must set enabled and selected. Field status is set to 1, because this is a condition in next procedure in some loop. And then procedure named IzvajajNeprekinjeno() is invoked.
    And when I click on stop button it must do next:
    Start button must set enabled and selected and Stop button must set disenabled.
    Field status is set to 0.
    This works everything fine without loop �do .. while� inside the procedure IzvajajNeprekinjeno(). But when used this loop the start button all the time stay (like) pressed. And this means that a can�t stop my loop.
    There is java code, so you can get better picture:
    /** start button */
    public void gStart_ActionEvents() {
    try {
    ivjGStart.setEnabled(false);
    ivjGStop.setEnabled(true);
    ivjGStop.setSelected(true);
    getJTextPane1().setText("Program is running ...");
    Status = 1;
    } catch (Exception e) {}
    /** stop button */
    public void gStop_ActionEvents() {
    try {
    ivjGStart.setEnabled(true);
    ivjGStart.setSelected(true);
    ivjGStop.setEnabled(false);
    getJTextPane1().setText("Program is NOT running ...");
    Status = 0;
    } catch (Exception e) {
    /** procedure IzvajajNeprekinjeno() */
    public void IzvajajNeprekinjeno() {  //RunLoop
    try {
    int zamik = 2000; //delay
    do {
    Thread.sleep(zamik);
    PreberiDat(); //procedure
    } while (Status == 1);
    } catch (Exception e) {
    So, I'm asking what I have to do, that start button will not all the time stay pressed? Or some other aspect of solving this problem.
    Any help will be appreciated.
    Best regards,
    Tomi

    This is a multi thread problem. When you start the gui, it is running in one thread. Lets call that GUI_Thread so we know what we are talking about.
    Since java is task-based this will happen if you do like this:
    1. Button "Start" is pressed. Thread running: GUI_Thread
    2. Event gStart_ActionEvents() called. Thread running: GUI_Thread
    3. Method IzvajajNeprekinjeno() called. Thread running: GUI_Thread
    4. Sleep in method IzvajajNeprekinjeno() on thread GUI_Thread
    5. Call PreberiDat(). Thread running: GUI_Thread
    6. Check status. If == 1, go tho 4. Thread running: GUI_Thread.
    Since the method IzvajajNeprekinjeno() (what does that mean?) and the GUI is running in the same thread and the event that the Start button has thrown isn't done yet, the program will go on in the IzvajajNeprekinjeno() method forever and never let you press the Stop-button.
    What you have to do is do put either the GUI in a thread of its own or start a new thread that will do the task of the IzvajajNeprekinjeno() method.
    http://java.sun.com/docs/books/tutorial/uiswing/index.html
    This tutorial explains how to build a multi threaded gui.
    /Lime

  • [SOLVED] XFCE - Java Swing button theme?

    I'm running XFCE, and I notice that all Swing-based Java applications use the ugly Swing button theme. When I used GNOME 3, some of them would adapt to the GNOME button theme (and would look like they belonged on the system).
    Is this issue with XFCE, my current GTK theme (dorian), or Java, and how can I change this?
    Last edited by 2mac (2014-01-01 22:17:07)

    Thank you for the information.
    I followed the wiki by adding
    export _JAVA_OPTIONS="-Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel"
    to my ~/.bashrc file.
    To test, I launched the Minecraft launcher (one of the applications which does support style changes between desktops), and got back this information:
    Picked up _JAVA_OPTIONS: -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel
    Error parsing gtk-icon-sizes string: ''
    And it had no effect. Any ideas?
    Last edited by 2mac (2013-12-31 16:35:39)

  • Adding a branchgroup to a live scene with swing buttons

    Hi, please have a look on the following code.
    I want to add "objects" in a live scene.
    I've planned to do this by attaching a new branchgroup
    to an existing alive structure.
    The code of the new branchgroup is in the action of a swing button.
    // method "addObject" called by the button
    private class addObject extends BranchGroup implements ActionListener {
    public void actionPerformed(ActionEvent event){
    BranchGroup obj = new BranchGroup ();
    // Creation of a sphere
    Sphere sphere = new Sphere (0.3f);
    System.out.println(sphere);
    obj.addChild (sphere);
    obj.addChild (this);
    System.out.println("add action");
    System.out.println(obj);
    // definition of the button
         private JButton ajout = new JButton("Ajout");
         JPanel p2 = new JPanel();
    ajout.addActionListener(new addObject());
    p2.add(ajout);
    // code to attach the branchgroup
         BranchGroup b2 = new addObject();
    System.out.println("br "+b2);
    objRoot.addChild(b2);
    objRoot.compile();
    return objRoot;
    But, the Sphere is not seen on the scene
    even if the action on the button seems to work.
    And if i do twice, i get this error :
    Exception occurred during event dispatching:
    javax.media.j3d.MultipleParentException: Group.addChild: child already has a parent
         at javax.media.j3d.GroupRetained.checkValidChild(GroupRetained.java:442)
         at javax.media.j3d.GroupRetained.addChild(GroupRetained.java:451)
         at javax.media.j3d.Group.addChild(Group.java:266)
         at applet3d.Scene3D$addObject.actionPerformed(Scene3D.java:588)
         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:3715)
         at java.awt.Component.processEvent(Component.java:3544)
         at java.awt.Container.processEvent(Container.java:1164)
         at java.awt.Component.dispatchEventImpl(Component.java:2593)
         at java.awt.Container.dispatchEventImpl(Container.java:1213)
         at java.awt.Component.dispatchEvent(Component.java:2497)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2451)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2216)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2125)
         at java.awt.Container.dispatchEventImpl(Container.java:1200)
         at java.awt.Window.dispatchEventImpl(Window.java:914)
         at java.awt.Component.dispatchEvent(Component.java:2497)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:131)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:98)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)
    Anyone can help ?
    Thanks

    I've changed the code a bit.
    I don't have the exception anymore, and when i press the button, i really create instances of sphres, but they are not seen in the Scene.
    Any idea someone ?
    package applet3d;
    import java.awt.*;
    import java.awt.GraphicsConfiguration;
    import java.awt.event.*;
    import com.sun.j3d.utils.geometry.*;
    import com.sun.j3d.utils.universe.*;
    import com.sun.j3d.utils.behaviors.mouse.*;
    import com.sun.j3d.utils.behaviors.keyboard.*;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import javax.swing.*;
    public class Scene3Db extends JFrame implements ActionListener, MouseListener {
         private static final long serialVersionUID = 1L;
         private SimpleUniverse su;
    private BranchGroup sceneBG, mainBG, shapeBG, objRoot;
    private TransformGroup mainTG, shapeTG, cameraTG;
    private BoundingSphere bounds;
    private Material material2;
    private static int mycount = 1;
    //declaration des elements du gui
    private JLabel etiq1;
    private JCheckBox couleur;
    //constructeur
    public Scene3Db() {
    Container contentPane = getContentPane();
    //BorderLayout bl = new BorderLayout();
    //setLayout(bl);
    GraphicsConfiguration config = SimpleUniverse.getPreferredConfiguration();
    Canvas3D c = new Canvas3D(config);
    contentPane.add("Center", c);
    JPanel p1 = new JPanel();
    p1.add(presentationPanel());
    contentPane.add("North", p1);
    JPanel p2 = new JPanel();
    JButton ajout = new JButton("Ajout");
    addObject addObjBG = new addObject();
    ajout.addActionListener(addObjBG);
    //objRoot.addChild(addObjBG); //pb !
    p2.add(ajout);
    contentPane.add("South", p2);
    SimpleUniverse su = new SimpleUniverse(c);
    BranchGroup scene = createSceneGraph(su);
    //scene.setCapability( BranchGroup.ALLOW_BOUNDS_READ );
    su.getViewingPlatform().setNominalViewingTransform();
    su.addBranchGraph(scene);
    addWindowListener( new WindowAdapter() {
    public void windowClosing(WindowEvent e) {System.exit(0);}});
    setSize(800,600); //Taille Fenetre
    show();
    repaint();
    //cr�ation du graphe de sc�ne
    public BranchGroup createSceneGraph(SimpleUniverse su) {
    //cr�ation d'un BG racine de l'arbre 3D
    //BranchGroup objRoot = new BranchGroup();
    objRoot = new BranchGroup();
    objRoot.setCapability( BranchGroup.ALLOW_PICKABLE_READ );
    objRoot.setCapability( BranchGroup.ALLOW_PICKABLE_WRITE );
    objRoot.setCapability(BranchGroup.ALLOW_CHILDREN_EXTEND);
    objRoot.setCapability(BranchGroup.ALLOW_DETACH);
    objRoot.setCapability(Group.ALLOW_CHILDREN_READ);
    objRoot.setCapability(Group.ALLOW_CHILDREN_WRITE);
    objRoot.setCapability(Group.ALLOW_CHILDREN_EXTEND);
    //cr�ation d'un bounds pour le fond et la lumi�re
    BoundingSphere bounds =
    new BoundingSphere(new Point3d(0.0,0.0,0.0), 100.0);
    Color3f bgColor = new Color3f(0.05f, 0.05f, 0.2f);
    Background bg = new Background(bgColor);
    bg.setApplicationBounds(bounds);
    objRoot.addChild(bg);
    Color3f light1Color = new Color3f(1.0f, 1.0f, 0.9f);
    Vector3f light1Direction = new Vector3f(4.0f, -7.0f, -12.0f);
    DirectionalLight light1
    = new DirectionalLight(light1Color, light1Direction);
    light1.setInfluencingBounds(bounds);
    objRoot.addChild(light1);
    BranchGroup sceneObj = new BranchGroup();
    //cr�ation d'un TG pour la gestion d'�chelle
    TransformGroup objScale = new TransformGroup();
    Transform3D t3d = new Transform3D();
    t3d.setScale(0.4);
    objScale.setTransform(t3d);
    sceneObj.addChild(objScale);
    //cr�ation d'un TG pour permettre la modification des objets visuels
    TransformGroup objTrans = new TransformGroup();
    objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
    objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
    objScale.addChild(objTrans);
    MouseRotate myMouseRotate = new MouseRotate();
    myMouseRotate.setTransformGroup(objTrans);
    myMouseRotate.setSchedulingBounds(new BoundingSphere());
    sceneObj.addChild(myMouseRotate);
    MouseTranslate myMouseTranslate = new MouseTranslate();
    myMouseTranslate.setTransformGroup(objTrans);
    myMouseTranslate.setSchedulingBounds(new BoundingSphere());
    sceneObj.addChild(myMouseTranslate);
    MouseZoom myMouseZoom = new MouseZoom();
    myMouseZoom.setTransformGroup(objTrans);
    myMouseZoom.setSchedulingBounds(new BoundingSphere());
    sceneObj.addChild(myMouseZoom);
    //Canvas3D c = new Canvas3D(null);
    //PickHighlightBehavior pickBeh = new
    //PickHighlightBehavior(c, objRoot, bounds);
    BranchGroup b2 = new addObject();
    objRoot.addChild(b2);
    //System.out.println("br "+b2);
    objRoot.addChild(sceneObj);
    //objRoot.addChild(b2);
    objRoot.compile();
    return objRoot;
    public JPanel presentationPanel() {
         JPanel panel1 = new JPanel();
    etiq1 = new JLabel
    ("Modelisation d'un environnement naturel en 3D / � 2005 cnam ubo");
    panel1.add(etiq1);
    return panel1;
    //fonction ajout d'objet
    private class addObject extends BranchGroup implements ActionListener {
    private addObject () {
    this.setCapability(BranchGroup.ALLOW_CHILDREN_EXTEND);
    public void actionPerformed(ActionEvent event){
    BranchGroup obj = new BranchGroup ();
    // Cr�ation d'une sph�re
    Sphere sphere = new Sphere (0.3f, Sphere.GENERATE_NORMALS, 20);
    System.out.println(sphere);
    Transform3D sphereRandromTransform = new Transform3D ();
    sphereRandromTransform.setTranslation(new Vector3d(randomCoord(),randomCoord(),randomCoord()));
    TransformGroup sphereTG = new TransformGroup (sphereRandromTransform);
    sphereTG.addChild(sphere);
    obj.addChild(sphereTG);
    this.addChild(obj);
    System.out.println("action ajout");
    System.out.println(obj);
    private double randomCoord () {
    double coord = Math.random();
    return coord>=0.5?-coord*5:coord*5;
    public void mouseClicked( MouseEvent e ) {
    public void mouseEntered( MouseEvent e ) {
    public void mouseExited( MouseEvent e ) {
    public void mousePressed( MouseEvent e ) {
    // if (e.getSource()==reset) {
    //setNominalPositionAndOrientation();
    public void mouseReleased( MouseEvent e ) {
    //mode = STILL;
    public void actionPerformed(ActionEvent e) {
    Object target = e.getSource();
    if (target == couleur) {
    if (couleur.isSelected()){
    //scene.pickBeh;
    public static void main(String[] args) {
         try {
    //D�finition du type d'affichage boite de dialogue
    //UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
              } catch (Exception exc) {
    System.err.println("Erreur de chargement L&F: " + exc);
    new Scene3Db();
    }

  • I have an error message that won't go away and stops me from using any other buttons in the screen.

    I have an error message reading 'item over 1 byte. Connect to a wifi network or use iTunes on your computer to download 'tv show'.
    When I connect it to iTunes or use a wifi network nothing changes.  The warning remains in place no matter how many times I push 'ok'.  iTunes actually says the show is already fully downloaded.
    I can't use any other button or controls because the only thing responding is the 'ok' button on the error message.
    I've now given up and am just trying to exhaust the battery.  What a joke.  This device is only a week old.
    Anyone else with a suggestion on how to make the error message go away? I'm worried this will happen again.
    Thanks!

    Try this.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Using tesing, i can't run any swing java application.

    Any swing application, ex. xxe or openproj.
    Using openjdk6, i got those error:
    env:
    [hubert@hubert-dell bin]$ java -version
    java version "1.6.0_0"
    OpenJDK Runtime Environment (IcedTea6 1.5pre-r059f6ba0c7dd) (ArchLinux-1.5_hg20090429-1-x86_64)
    OpenJDK 64-Bit Server VM (build 14.0-b10, mixed mode)
    error:
    [hubert@hubert-dell bin]$ ./xxe
    internal error: cannot create application: java.lang.UnsatisfiedLinkError: Can't load library: /usr/lib/jvm/java-1.6.0-openjdk/jre/lib/amd64/motif21/libmawt.so
    +---------------------------------------
    | java.lang.ClassLoader.loadLibrary(ClassLoader.java:1666)
    | java.lang.Runtime.load0(Runtime.java:787)
    | java.lang.System.load(System.java:1022)
    | java.lang.ClassLoader$NativeLibrary.load(Native Method)
    | java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1767)
    | java.lang.ClassLoader.loadLibrary(ClassLoader.java:1684)
    | java.lang.Runtime.loadLibrary0(Runtime.java:840)
    | java.lang.System.loadLibrary(System.java:1047)
    | sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:67)
    | sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:47)
    | java.security.AccessController.doPrivileged(Native Method)
    | java.awt.Toolkit.loadLibraries(Toolkit.java:1610)
    | java.awt.Toolkit.<clinit>(Toolkit.java:1632)
    | java.awt.Color.<clinit>(Color.java:279)
    | javax.swing.plaf.metal.MetalTheme.<clinit>(MetalTheme.java:76)
    | javax.swing.plaf.metal.MetalLookAndFeel.getCurrentTheme(MetalLookAndFeel.java:1681)
    | javax.swing.plaf.metal.MetalLookAndFeel.createDefaultTheme(MetalLookAndFeel.java:1576)
    | javax.swing.plaf.metal.MetalLookAndFeel.getDefaults(MetalLookAndFeel.java:1598)
    | javax.swing.UIManager.setLookAndFeel(UIManager.java:545)
    | javax.swing.UIManager.setLookAndFeel(UIManager.java:585)
    +---------------------------------------
    then i change java-runtime to sun java sdk.
    env:
    [hubert@hubert-dell bin]$ java -version
    java version "1.6.0_13"
    Java(TM) SE Runtime Environment (build 1.6.0_13-b03)
    Java HotSpot(TM) 64-Bit Server VM (build 11.3-b02, mixed mode)
    [hubert@hubert-dell bin]$
    error:
    [hubert@hubert-dell bin]$ ./xxe
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x00007f02743bb438, pid=16636, tid=139648504359248
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (11.3-b02 mixed mode linux-amd64)
    # Problematic frame:
    # C [libc.so.6+0x30438] catgets+0x18
    # An error report file with more information is saved as:
    # /tmp/hs_err_pid16636.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    ./xxe: line 40: 16636 已放弃 java $mem $opt -DXXE_GUI="$XXE_GUI" -DXXE_ADDON_PATH="$XXE_ADDON_PATH" -DXXE_USER_PREFERENCES="$XXE_USER_PREFERENCES" -classpath "$cp" com.xmlmind.xmleditapp.start.Start "$@"
    [hubert@hubert-dell bin]$
    My archlinux:
    [hubert@hubert-dell ~]$ uname -a
    Linux hubert-dell 2.6.29-ARCH #1 SMP PREEMPT Wed Apr 29 15:36:46 CEST 2009 x86_64 Intel(R) Core(TM)2 CPU T7200 @ 2.00GHz GenuineIntel GNU/Linux
    [hubert@hubert-dell ~]$ yaourt -Q glibc openjdk6 kernel26
    ==> List all installed packages
    local/glibc 2.9-7
    local/openjdk6 1.5_hg20090429-1
    local/kernel26 2.6.29.2-1
    [hubert@hubert-dell ~]$
    Last edited by hubertstar (2009-04-30 17:15:28)

    ok, this's not a bug.
    I'm install eioffice(Yongzhong office, a chinese office software) and test it, and i have to set AWT_TOOLKIT=MToolkit (Running eio with compiz).
    That's the problem.
    unset AWT_TOOLKIT
    no errors.

  • How to position the Swing button on javaFx applet

    Hello,
    I am putting a swing button on javaFx page as:
    SwingButton {
                    text: "Go"
                    action: function() {
                        widgetManager.openDirectAlertId(homeBean.getAlert(1).getAlertId());
                }This button always appear on the top of the page.Now, i want to align this button to X and Y coordinates.
    I have two variable varX and varY, how can i bind this button to these coordinates?
    Thanks to reply
    Anuj

    Use translateX and translateY attributes:
                SwingButton {
                    text: "Go"
                    translateX: 50
                    translateY: 10
                    action: function() {
                        widgetManager.openDirectAlertId(homeBean.getAlert(1).getAlertId());
                }       

  • Best Practice Buttons? and Swing Button Sizes

    Hi,
    I am wondering what the best way to make a custom styled button was....
    Since I need my own style of button (width,height,background image, selected, clicked) I thought I would use Swing buttons with a Synth style. However, when I place swing buttons inside a CustomNode, all of the button widths, heights, x, y settings are discarded. I can understand the x/y being discarded as the component location should become relative and set by the wrapping CustomNode. I can also understand this because I can set the positions with translateX and translateY. However, I can't see how I can set a width and height of the swing button from inside the CustomNode.
    Can this be done?
    Alternatively, I don't mind using an alternative to the swing button however this is the only button I can see in JavaFX.
    Thanks for reading

    Ok, looks like I can wrap the button's inside a group, stage eta Node wrapper. Then I can preserve the button sizes and can produce relative/translatable positioning of the group/stage. This I understand and find to be a good feature. One thing that does concern me is that with the Swing button's - the Synth styles are not correctly applied. No matter what I do I can not get button text color to change. Changing the background mostly works but the text label styling is completely ignored.

  • Can there HOME BUTTON(the circular button under the screen)or any other button on the front of the phone flash an LED light on notifications

    pls reply and if it is 'no' then pls advice the apple company to do this in the next iPhone.

    Can the HOME BUTTON(the circular button under the screen) or any other button on the front of the phone flash an LED light on notifications

  • I want to REMOVE Google Update 1.3.21.153 plugin.There isnsn't any remove button!!!

    I'm using Firefox 19.0.After installing Google earth plugin i noticed that it also installed Google update plugin.
    So after uninstalling Google earth plugin i expected to uninstall the Google update plugin too.
    But this didn't happen,and there isn't any remove button.only enable /disable button.
    This is major security risk...unacceptable.

    the plugin file named npGoogleUpdate3.dll is usually located in ''C:\Users\<username>\AppData\Local\Google\Update\<versionnumber>''. you can delete it manually to get it out of the list of installed plugins in firefox.
    please direct your complaint about these pervasive tactics to google. as far as i remember the google updater is also silently registered as auto-start program and as scheduled task in the task planner once you install any google software...

  • Swing button PJC

    Hi All,
    I am trying to use Swing button PJC getting help from below website.
    http://forms.pjc.bean.over-blog.com/categorie-450786.html
    I am using forms 9i version not sure it is compatible for PJC?
    While running the form I am getting certificate notification after granting the permission form is not displaying the canvse.
    Please suggest.
    Thanks for your help.

    Sorry I got the information....
    Thanks for your help.

  • I need to change the credit card and credit card holder of our monthly plans.. but i cannot find any billing button. could you kindly advise?

    dear all
    i need to change the credit card and credit card holder of our monthly plans.. but i cannot find any billing button.
    neither can i find any support by adobe regarding invoicing issues.
    could any of you help me?
    thanks,
    inga

    Change of Credit Card information for creative cloud membership
    1) Login to creative.adobe.com.
    2) Click on the manage my subscription.
    3) Edit my billing information
    For Invoice
    1) Login to adobe.com
    2) go to my orders and select the order number and print the invoice from there

  • Any Shortcut Buttons in ZEN MIC

    Are there any shortcut buttons in Micro. I've found some but curious if there are any others:
    - If you hold 'back' for some seconds it goes to Main screen
    - If you hold 'play' for some seconds when listening to the radio, it starts recording.

    It was in removable disk mode when I plugged it in, and it detects it saying "found new hardware" and then it prompts me "welcome to the found new hardware wizard". It is not under my computer as any dri've, but when I plug it back in in regular mode, it is detected. Thanks for your help.

  • Is there any quick buttons setup for going back or forward

    Is there any quick buttons setup for going back or forward for navigating on a website. I would like to press a button to go back or forward while surfing different websites.

    Do you mean the back and forward history of a tab or buttons on a web page to go to the next and previous page?
    * [[Keyboard shortcuts]]
    * [[Mouse shortcuts]]
    *NextPlease!: https://addons.mozilla.org/firefox/addon/390
    There are other things that need attention:
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    # Shockwave Flash 10.0 r45
    # Next Generation Java Plug-in 1.6.0_14 for Mozilla browsers
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)

  • I updated my iphone and restored, now it is not being activated as this cannot be done anywhere in India. the help desk at a store asked me to restore it but there isn't any restore button now!

    I updated my iphone and restored, now it is not being activated as this cannot be done anywhere in India. the help desk at a store asked me to restore it but there isn't any restore button now!

    A compatible SIM card would be from AT&T and would not work in India.  It sounds as if your iPhone was hacked to unlock it and when you updated it, the hack was removed, thus relocking it to AT&T.

Maybe you are looking for