Netbeans 6.1 won't use customized cursor .

Hi , Have you guys tried the Netbeans 6.1 ?  If you have ever used netbeans ,you know what I am talking about.
I wonder if anyone has encountered the same problem . when I expand the tree node in the project window or file window , the cursor changed into an waiting cursor , that normal ,but the waiting cursor isn't my customized cursor ,but the xorg's default black watch, I have the same problem when testing on windows , the waiting cursor in netbeans is the windows default large ugly one .
why netbeans don't use my customized cursor instead of the system default one ? Do the developers of netbeans think all the linux users use the black watch cursor ?
Have you encountered the same issue ?

I just noticed the same issue with an Airport Express 802.11n (2nd) with version 7.6.3. I configured the primary and the secondary radius server on the Airport Express.
With the primary radius server running WLAN login with WPA2/Enterprise worked fine.
I then stopped the primary radius server and tried to repeat the WLAN login again and it failed. In the secondary radius server log there was no trace at all even when I started the radius server in debug mode.
Because the Airport Express is in another subnet than the two radius server I enabled logging on my router firewall. I found only four retries for the primary radius server.
This proves your result that the secondary radius server is never used.

Similar Messages

  • Using custom cursor

    I want to use a cursor from file in my page. How can I do
    this?
    I've found:
    <style>
    <!--
    BODY{
    cursor:url("3dwmove.cur");
    -->
    </style>
    but works only in IE and for all page not only for a link for
    example.

    You can't. Custom cursors are a pain for your visitor, many
    (most? all?)
    of whom will not want to download and install something from
    a site.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Flesky" <[email protected]> wrote in
    message
    news:ehi23v$653$[email protected]..
    >I want to use a cursor from file in my page. How can I do
    this?
    >
    > I've found:
    > <style>
    > <!--
    > BODY{
    > cursor:url("3dwmove.cur");
    > }
    > -->
    > </style>
    >
    > but works only in IE and for all page not only for a
    link for example.
    >

  • Safari won't use custom page margins for printing

    I'm using Safari 4.04 on Snow Leopard. Here's the problem in a nutshell: I'd like to print pages that I can put in a three-hole-punch binder, without the holes going through printed content. In other words, I simply want to set a custom left margin for printing. Should be simple, right? Apparently, not if you use Safari.
    OK, as far as I can tell, here's how it's supposed to work (and this is how it works for me in every browser except Safari):
    In the "Print" dialog box, click the "Paper Size" drop-down menu (which defaults to "US Letter"), and scroll down to "Manage Custom Sizes…". Create a custom paper size with the desired margins. Now you should be able to select this custom paper size when you print.
    This works fine in other browsers (of course you may need to select the custom size from the "Page Setup" menu, but in Safari 4 this is apparently integrated into the "Print" dialog). In Safari, however, the custom margins are completely ignored. A simple, but frustrating, bug …
    This has been a known bug, as I've seen it mentioned in other forums, such as:
    http://forums.macworld.com/index.php?/topic/117342-safari-4-0-3-printing/
    But Apple has yet to fix it.
    OK, for those who are wondering, there are two workarounds I know of, neither of which is totally satisfying:
    1) When setting the custom paper size, define the paper itself as narrower than 8.5 inches; for example set it to 7.5. Safari doesn't ignore the actual paper size, it just ignores the margins you set. But unfortunately this will result in an increase in both left and right margins, not just the left margin.
    2) As I teach Web design, this is the kludge I figured out on my own: Set a user-defined style sheet for Safari. First, create a plain text document consisting of this:
    html {
    margin-left: .5in;
    (Of course, set the margin to your desired width. I'm using a half inch here.) Save this style sheet, calling it something like "safaristyle.css". Now, in Safari's "Advanced"preferences, set this as your custom style sheet. This works great, but unfortunately if you leave Safari on this setting this will result in an increase in the left margin when you view Web pages as well as when you print them. So you can select the custom style sheet only just before printing, and then set it back to "None Selected" when you're not printing.
    Am I the only one who finds it odd that Apple still hasn't fixed this little bug?
    Does anyone out there know of a better workaround? Thanks for listening.

    Set them automatically based on what criteria?
    If you just want to set them programatically, then as the Help indicates, use the Printing:Margins property to set those values.
    Attachments:
    Example_VI_BD.png ‏2 KB

  • Custom cursor using image gets resized bigger

    I have created a custom cursor using the following code:
    ClassLoader cl = this.getClass().getClassLoader();     
    Toolkit tk = Toolkit.getDefaultToolkit();
    Image im = tk.getImage( cl.getResource("images/wallcursor.gif"));
    Cursor Custom_Cursor = tk.createCustomCursor(im,new Point(9,9),"Drawing wall");
    draftGrid.setCursor( Custom_Cursor );The cursor is loaded and it works, however - the image I use for the cursor is resized so it gets too big. Any clues on why this happens?
    btw; draftGrid is one of my own classes that extends JComponent.
    - bjorn

    Thanks for your replies guys.
    I tried your code KPSeal, and it works in resizing the cursor image back to its original size. However, a gray square of size 32,32 (which is returned by getBestCursorSize()) is shown round the cursor.
    Here is the updated code (yours hade some minor bugs)
    Image im = tk.getImage( cl.getResource("images/wallcursor.gif"));
    try {
           tracker.addImage(im, 0 );
           tracker.waitForID(0);
    } catch( InterruptedException ie ) {
           ie.printStackTrace();
    int w = im.getWidth(this);
    int h = im.getHeight(this);
    int pw = Toolkit.getDefaultToolkit().getBestCursorSize(w, h).width;
    int ph = Toolkit.getDefaultToolkit().getBestCursorSize(w, h).height;
    System.out.println("w="+w+", h="+h+" - pw="+pw+", ph="+ph);
    Image cim = createImage(pw, ph);
    cim.getGraphics().drawImage(im,0,0, this);                     
    Cursor Custom_Cursor = tk.createCustomCursor(cim,new Point(0,0),"Drawing wall");
    draftGrid.setCursor( Custom_Cursor );The System.out.println statement prints: w=18, h=13 - pw=32, ph=32
    If I try to do the createImage with w and h instead of pw and ph the same gray square (32,32) is created, and in addition the cursor's size is too big which was the probem to begin with ...
    - bjorn

  • Custom cursor using startDrag

    Hello everyone,
    I have a movieclip following my mouse to act as a custom cursor.
    I am using startDrag on the movie clip and mouse.hide()
    What I am trying to resolve is the following:
    I have several hidden simple button objects in the background of my flash movie. ( I am using these to detect when the user has the mouse in certain areas of the flash movie)
    When i go to move over these simple buttons, my custom cursor movieclip stops following the mouse cursor.  Normally my cursor would also then change to the Hand cursor, but i disabled that.
    Can anyone think of any method or hack that would make this work for me?  I would like my custom cursor following the mouse pointer at all times even when hovering over a simple button.
    thanks in advance.

    The cursor changes to hand cursor yet?
    When you say "single button Several hidden objects", the number is?

  • My privacy setting is stuck on Remember history, won't stay on Use custom settings for history after I set and click ok

    When I go into Tools, Options, Privacy and set 'Use custom settings for history' and then click okay it will not save. It stays on 'Remember history', though it will save 'Never remember history' as I tested this. This seems to have happened after recent Firefox latest update. Does anyone know why I can't choose 'Use custom settings for history' as this is the setting I want to use?

    It's not that I'm not satisfied with the current settings, it's just that I'm one of those curious people - wanting to know why suddenly I couldn't change my history setting when I could always chop and change it before to a setting of my choice. I noticed this has happened since recently updating to Firefox 6. When things like this just happen I always search for a reason. Anyway, it sounds as though I am a bit of a novice on Firefox compared to yourself, and if you recommend that it's probably best to stay on Remember History and it's not likely to cause any problems, then say no more, I shall accept your advice. Any more tips would be greatly appreciated! Thanks.

  • Why won't FIREFOX save my HISTORY settings of USE CUSTOM settings?!!!

    This is very very annoying. I'm ready to throw this program down the bit bucket.
    I use it to access facebook and play farmville. I need it to REMEMBER things so that every time I load farm ville it doesn't have to get stuff from their server..
    Every time I open fire fox, and go to face book, and load farmville I get a message that says I can load faster if I allow it to store data on my Computer..
    I go to firefox settings and find ONCE AGAIN my History preferences will NOT save "USE CUSTOM SETTINGS".
    I have to change it every time. I have both 32 bit and 64 bit Nightly (beta) versions on my computer.
    I have totally removed both, restarted windows 7, restarted it again, re-installed fire fox and it STILL happens...
    Why? I will be darned if I will use explorer, but at least it SAVES the settings and doesn't get them screwed up!

    ''cor-el [[#answer-664256|said]]''
    <blockquote>
    Don't get confused:
    If you see "(Never) Remember History" then that means that all history and cookie settings are set to the default value (i.e. cookies are enabled).
    The "Use custom settings for history" selection allows to see the current history and cookie settings, but selecting this doesn't make any changes to history and cookie settings.
    Firefox shows "Use custom settings for history" as an indication that at least one of the history and cookie settings is not the default to make you aware that changes were made.
    If all History settings are default then the custom settings are hidden and you see "Firefox will: (Never) Remember History".
    "Never Remember History" means that Private Browsing is active and "Always use private browsing mode" gets a checkmark.
    "Use custom settings for history" stays selected if at least one of the History or Cookie settings is not the default to make you aware that changes from the default setting have been made.
    </blockquote>
    OK so I agree I was confused. What is confusing me even more is the number of times sites tell me I need to set my cookie settings to accept when as far as I can see it already is.

  • Custom cursor disappears in context menu

    I am attempting to use a custom cursor from a PNG file.  I set the cursor to an embedded PNG file using CursorManager.setCursor().  However, when a right-click occurs and the context menu appears, the cursor disappears.  I found this example on the web that demonstrates the issue:
    http://www.switchonthecode.com/tutorials/flex-custom-cursor-tutorial
    Click on the show cursor button and then right click to show the context menu.  This seems to be an issue with PNG files but not SWF files.  Both examples in this Flex Quickstart article do not have this problem:
    http://www.adobe.com/devnet/flex/quickstart/controlling_the_cursor/
    Is there a workaround?

    Unfortunately you won't find a solution to this I suspect. In the DevNet example you are seeing the browser menu. In the Flex app you are seeing the Flash Player cursor. I don't think there is a way around this.

  • How to load and increase size of a custom cursor on a certain monitor (1st or 2nd)?

    In my application I need to load a custom cursor, make it big and display it on the my second monitor in a dual monitor setup to let user click with an additional mouse. I found this thread able to solve the first 2 questions, however the cursor only changes within the VI panel. I had tried but couldn't get a handle to the second monitor, in face, not my primary one as well since I'm not familiar with winapi. I also want to restrict when the user can use the second mouse and only in the second monitor if possible. By the way I am using windows 7 64 bit with Labview 9 32 bit.
    Thanks,

    Ishi,
    More than likely, you are going to have to use Windows OS APIs for this. It sounds like you would like to integrate your program at the operating system level, and will have to make calls to Windows to accomplish this in the proper manner.  You can make calls to Windows in LabVIEW through several methods. Check out this example that sets the position of the cursor via a Call Library Function Node to the Windows SDK.  
    http://zone.ni.com/devzone/cda/epd/p/id/2315
    Cheers,
    Aaron
    National Instruments

  • Tutorial:  Creating, saving and re-using Custom Shapes

    I've beeen experimenting with custom shapes for the last couple of days, and thought I'd share some of the tips and techniques I found.
    First of all, what are custom shapes?
    Well, they're vector objects.  That means that they are not built out of millions of individual pixels (like images are), but rather they're a series of mathematical statements that describe how to draw a line from point to point to create the vector shape.  This means that custom shapes are "resolution independent", and that they can be grossly shrunk or enlarged and still retain razor sharp edges, curves and corners.
    What are custom shapes good for?
    Pretty much anything where you want to use a good, sharp object.  In particular, using a custom shape as a clipping mask for an image that's been placed as a Smart Object is an outstanding technique, and really shows off the power that PSE is capable of.
    PSE comes with a lot of ready-to-use custom shapes for its Custom Shape tool, and there are probably hundreds of thousands available on the Web -- just search for "photoshop shapes".  Typically, those shapes will be supplied as Adobe CSH (Custom SHape) files, and simply copying the CSH files into the
    "C:\Program Files (x86)\Adobe\Photoshop Elements 10\Presets\Custom Shapes"
    directory will make them available for use with the Custom Shape tool.
    Sooner or later, though, you'll get the itch to create your own custom shapes.  Out of the box, PSE does not have the capability to let you create custom shapes and add them to the CSH files like the "big" Photoshop does, so we'll need to use a workaround:  store your custom shapes as layers in a PSD file, and when you want to use them simply copy them into your image. 
    N.B.:  To create custom shapes you'll have to use the reasonably priced Elements+ add-in:
    http://elementsplus.net/
    So, the procedure goes like this:
    Create a new image, using the PSE defaults, and save it as "CustomShapes01.psd", keeping it open.
    Open an image containing an object that you want to use as a custom shape.
    Use any of the selection tools to make an accurate selection of the object:
    In the Effects panel, use the Elements+...Paths effect and choose the Create New Path...From Current Selection:
    Use the Elements+...Paths again, choosing "Convert to Shape", giving it a name and colour of your choosing.  This will create a Shape Layer using that name.
    Important:  If your shape has "holes",
    use the Shape Selection tool and click on the shape to select it.  Then hit the "Combine" button in the Options Bar.  This will combine all the individual shapes used to create the shape and its "holes" into one shape, and prevent beaucoup problems later.
    Switch to the Move tool and drag the shape onto the tab of your "CustomShapes01.psd" image, keeping your mouse button pressed.  That image will become activated and you can move your cursor onto the image itself and drop your shape onto it.  Your PSD file will now have your custom shape as a shape layer:
    Save that "CustomShapes01.psd" file.
    You can repeat the process for as many custom shapes as you want, and they will each become a layer in the "CustomShapes01.psd" file.
    To use your custom shape, open the "CustomShapes01.psd" file and your target image and do the drag and drop with the Move tool to copy the custom shape onto your target image.
    I mentioned that using a custom shape as a clipping mask for an image placed as a Smart Object is a very powerful technique.  It's powerful because the custom shape can be altered at any time and still keep its sharpness, and because the Smart Object can also be resized without becoming pixellated.  Of course, that custom shape layer can have any number of layer styles applied to it and those layer styles will "follow" the shape if the shape is moved, resized or rotated.
    Here are three examples of using the custom shapes as clipping masks for Smart Objects:
    In this example, each custom shape is used as a clipping mask for an image Smart Object, as usual:
    Here, one custom shape was used as a clipping mask for an image Smart Object and they were linked. 
    Then the shape and image were duplicated and moved, rotated and resized.  Because of the linking, the Smart Object automatically kept its orientation and size relative to the custom shape throughout:
    If you want to use custom shapes as a "combined" clipping mask, the procedure is a little more complicated because you need to get all your custom shapes on one shape layer. 
    So, after copying your shapes into the target image (as separate shape layers), use the Shape Selection tool to select one of the shapes.  Using Edit...Cut will cut that shape layer to the Clipboard, and you can select one of the other shape layers and use Edit...Paste to paste the custom shape into that shape layer.  Repeat as necessary, and you will get all of your custom shapes on one shape layer.  Then use that single shape layer as your clipping mask:
    The neat thing is that the individual shapes can be selected with the Shape Selection tool and independently moved, resized or rotated as necessary.
    Enjoy!
    Ken

    Thanks, Michel.
    I forgot to mention one point about copying shape layers into one shape layer:  when you initially use the Shape Selection tool to select a shape for cutting, make sure the option for the Shape Selection tool is set to "Add to Selection".
    MichelBParis wrote:
    The problem with Elements+ is that it has so many features you soon forget what it can give you !
    Truer words were never spoken! 
    Ken

  • Using a cursor to copy data

    I'm writing a script that will take the data in one table, and use a cursor to copy that data to another table. The reason I'm using a cursor is so that I can stagger the dates in a particular field, for testing purposes. I wrote a procedure that will manipulate the data in this table based on the date, so I'm just creating a good amount of data with staggered dates.
    DECLARE
        my_row CUSTOMER%ROWTYPE;
        CURSOR my_cursor IS
            SELECT * FROM CUSTOMER;
        counter NUMBER;
    BEGIN
        counter := 0;
        FOR my_row IN my_cursor LOOP
            INSERT INTO CUSTOMER_HISTORY
                (CUST_NAME, CUST_CITY, CUST_STATE, CREATE_DATE, ...)
                VALUES
                (my_row.CUST_NAME, my_row.CUST_CITY, my_row.CUST_STATE, TRUNC(SYSDATE - counter), ...);
            counter := counter + 1;
            IF (counter > 15) THEN
                counter := 0;
            END IF;
        END LOOP;  
    END;Now, this code does work, and it does what I need it to do. However, what I'd like to know is if there is an easier way. I have to do this with 3 other tables, and some of these tables have 30+ columns, and I'm hoping there's an easier way to copy all of the rows, while changing one column. If not, it's not a huge deal, but that's a lot of column names to copy.
    Thanks
    Edited by: jjmiller on Jul 14, 2010 1:34 PM

    you do not need a curosr loop to do this, a single insert statement will work just fine. something like:
    INSERT INTO customer_history (cust_name, cust_city, cust_state, create_date, ...)
    SELECT cust_name, cust_city, cust_state, TRUNC(sysdate - MOD(rownum, 15)), ...
    FROM customerJohn

  • Custom Cursor and Drag Image in 1.4 DnD

    What is the proper way to provide a custom cursor and drag image in 1.4 DnD? Say we initiate the drag on a component that supports data transfer (such as a JTree).

    Well, this is strange. My app was locking up (100% CPU) when using DND from windows Explorer.
    I noticed that another part of the same appliction was working perfictly. The difference: JFrame .vs. JDialog. I switched the offending JDialog to a JFrame and all works perfictly now!
    java version "1.4.0"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-b92)
    Java HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode)
    I would like to switch back at some point, but my g.setXORMode() problem is a much bigger issue for us. (That is, once you enter the XOR mode, you can not go back!)

  • When to use Custom Adapter, Event Beans and Spring beans

    Hi,
    I have basic question on when or on what basis/scenario the Custom Adapter, Event Beans or Spring beans should be used.
    All three has same implementation methods.
    Please help me in understanding when to use Custom Adapters, Event Beans or Spring beans.
    Thanks,
    Sri
    Edited by: 897694 on Mar 7, 2012 8:12 AM

    custom adapters:
    you have to use a custom adapter when you don't find any adapter in ocep which will serve your purpose.
    Most of the times you use an adapter to connect the application with external things like http server, etc It can be both to listen the events or to send the events outside.
    Event Beans:
    This type of beans does most of the work that an adapter code does but in convention beans are not used to connect the application with external stuff
    You can use Beans as event sink etc In this case using an using an adapter is not suggestable.
    If you implement Interfaces like Initializing Bean for an adapter code it won't work properly, you have to use an event Bean in that case.
    Spring beans:
    Spring beans are used when the bean code doesn't implement EventSink or EventSender.
    These beans are used to enable something (eg: make ${wlevs_dev_home}/abc/a/b.java this path is not understandable by java code unless you override the path using a spring bean)
    Most of the things which doesn't need a connection between components in the application (eg cache loader: you can do this using spring beans and event beans both but spring beans doesn't need a connection with cache)
    Hope this small writeup helps you :)
    Edited by: Patha on Mar 8, 2012 9:10 AM

  • Adding a custom cursor to a panel

    HI, I am making a game where i want clicking a radio button to change the cursor image. I have figured out how to create a custom cursor, and even change the current cursor to it. The problem im having is i want to change it while the program is running. I can say somthing like frame.addCursor(cursor) but that sets it permenantly. What i would like is to add it to a panel during run-time. If anyone knows how i would go abou this i would be gratefull.
    Thanks

    Do u mean, upon selecting the radio button, the cursor must be changed to the customized one?
    If it is so,
    u add the snippet in the itemStateChanged() event....of the radiobutton
    i.e.,
    public void itemStateChanged(ItemEvent ie)
    if(ie.getStateChange() == ItemEvent.SELECTED)
    myPanel.setCursor(Toolkit.getDefaultToolkit().createCustomCursor(CursorImg, new Point
    (0,0), "MyCursorImg"));
    CursorImg - the image to display when the cursor is actived
    new Point(0,0) - hotSpot
    MyCursorImg - a localized description of the cursor, for Java Accessibility use
    else
    myPanel.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    }

  • Custom Cursors with AS3

    I used the code snippets to create a custom cursor and it works well.  What if I want that cursor to change when it's clicked?  Can I do that easy enough?  Thanks.

    you can use a stage mousedown listener to make it appear your cursor was clicked.

Maybe you are looking for

  • 10.0.2 api javadoc not complete

    There are some missing classes and methods in the 10.0.2 javadoc here: http://docs.oracle.com/cd/E22630_01/Platform.1002/apidoc/index.html For example: atg.servlet.RequestLocale atg.commerce.order.OrderLookupService Does anyone know if this is the ri

  • Script Works in Formcalc but not Javascript

    I have two radio button lists laid out in two columns to select garment sizes (small, medium, large). The "M" side is MEN and the "W" side is WOMEN.  The Radio button lists are named MENS and WOMEN respectively. ITEM    QTY.       COST       ITEM   

  • Is Leopard a can of worms?

    Is Leopard a can of worms? If I had known what it would not do, I would never have upgraded. For example, I cannot open any photographs in Photoshop anymore because I have Photoshop 7, and Leopard will not open it. Upgrade Photoshop? Why would I have

  • Using iPCU, how to select an identity certificate

    When using iPCU, the option to select an identity certificate within the VPN configuration payload is greyed out (even though certificates have been defined in the Credentials section). Is there a different underlying requirement to be able to specif

  • Ripping a dvd to use in FCE

    I have made a movie in FCE then burned it to DVD (using iDVD) now I need to burn more copies of this DVD. Does anyone know a way that I can do this? I have tried using Mpeg Stream to convert it to Quicktime, so that I could bring it back into FCE the