Swipe Effect through mouse click

Hi,
I am new to animations and trying to add few in my application.
(1)Whenever I am navigating to different page (by a click or double click of a node ), I want to have an animation -- old page moving towards left and getting removed altogether and new page getting loaded from right hand side.
Something like a page swipe in ios/android devices . However my application is not for touch enabled devices for now.
Is this possible though javafx 2.x . If so , could you direct me to appropriate sample/api.
(2) Can a click of a mouse be mapped to Gesture Events. For example - I click a link/button for navigation and application takes it as a Swipe Event and hence navigates to a different page giving swipe effect ?
Thanks

(1) Whenever I am navigating to different page (by a click or double click of a node ), I want to have an animation -- old page moving towards left and getting removed altogether and new page getting loaded from right hand side. Yes, see:
http://docs.oracle.com/javafx/2/animations/basics.htm#CJAJJAGI (Transitions)
http://docs.oracle.com/javafx/2/api/javafx/animation/package-summary.html (Animation API)
http://www.e-zest.net/blog/sliding-in-javafx-its-all-about-clipping/ (Sliding in JavaFX)
http://fxexperience.com/2012/03/canned-animations/ (Animation Lib)
http://gist.github.com/1437374 (Panel Slide Effect)
(2) Can a click of a mouse be mapped to Gesture EventsI don't think this can be done with the public API. One way to do it would be to add a filter on your layout pane which consumes the mouse click event and generates a SwipeEvent, but SwipeEvent has no constructor - so this would not work. There is an existing Jira request to create public constructors for event classes so that this kind of thing could be done. Perhaps you could make use of private impl_ apis or com.sun classes to allow this to be done with JavaFX 2.2, but I wouldn't recommend that approach.
Also it is probably best to place separate questions in separate posts for ease of searching etc.

Similar Messages

  • Cannot mouse-click anything in Oracle forms

    Hi, I can't mouse-click any of the icons/menu/options within Oracle forms. I can navigate using keypad, but can't click using mouse. The screen won't respond. I'm having same problem when opening SQL developer. Appreciate some pointers to troubleshoot the issue. Thanks.

    Hi user;
    In addition to Ahmed also check:
    Scroll mouse not working in Oracle Applications!
    Re: Unable to navigate through mouse click
    There are some similar discussion as your problem in this search:
    http://forums.oracle.com/forums/search.jspa?threadID=&q=mouse&objID=c3&dateRange=all&userID=&numResults=15
    Please check search, i belive you can find many useful advice&notes in there
    Hope it helps
    Regard
    Helios

  • Need a shortcut to "Allow pages to choose their own colors, instead of my selections above option preference" I know where it is and how to use it but I have to go through 7 mouse clicks to change it, then a few minutes later change it back. I also k

    Need a shortcut to "Allow pages to choose their own colors, instead of my selections above option preference" I know where it is and how to use it but I have to go through 7 mouse clicks to change it, then a few minutes later change it back. I also know the sequnce is alt t, alt o, alt c, alt a, then ok, ok. Got to be a way to make a one key short cut for this. I use a black background to reduce eye strain, but about 10% of the webpage I go to can't be send with black so I have to go into tools and hit 6 or 7 things to chnage it then after through with webpage have to do it all over at Not allow webpages to have own color. Very very cumbersome.
    == This happened ==
    A few times a week
    == made that way

    https://addons.mozilla.org/en-US/firefox/addon/toggledocumentcolors-198916/
    The above addon will solve your problem.
    Shortcut to toggle user color/page color :- Ctr+Shift+C

  • Possible to send a mouse click through a JFrame

    Hi there.
    is there a way to send a mouse click event through a frame to the whatever underneath (another application for example)?
    Scenario: I use a Frame for (bigger, colorful) MouseCursor representation (see http://forums.sun.com/thread.jspa?threadID=5394797). But of course... The Cursor has to be on top... And so it catches all mouseClickEvents....
    Please; all hints are welcome! How do I achieve to send mouse clicks through the JFrame...
    Thx in advance
    Andi
    Edited by: neobond on 30.06.2009 09:43

    You don't do it that way - you'd just tell the button to dispatch a CLICK MouseEvent and anything listening for the click would get it... something like:
    myButton.dispatchEvent(new Event(MouseEvent.CLICK));

  • My Apple TV 2 is slow when trying to move through different menu selections. It is like a slow computer trying to catch up to mouse clicks. It eventually remembers the buttons that were pushed on the remote, but it freezes and takes a minute to catch up.

    My Apple TV 2 is slow when trying to move through different menu selections. It is like a slow computer trying to catch up to mouse clicks. It eventually remembers the buttons that were pushed on the remote, but it freezes and takes a minute to catch up.

    I had something similar a couple of week ago, it would scroll then stop, scroll then stop.
    At some point the porblem went away.
    Try unpowering and restarting your AppleTV.  Rsetart iTunes too.

  • Mouse click and drag through turntable animation

    Hi all,
    First - thanks for taking the time to look through and possibly helping me with this question.
    I'm just getting to grips with flash cc actionscript 3.0 - so I apologise in advance to my not so technical jargon.
    In the past I have used actionscript 1.0 to create an interactive html file that contains a turntable animation of a 3D model. Users can mouse click and drag to the left or right to 'spin' the model around - however what they are really doing is scrubing through the timeline which contained 360 images of it from 360 degrees. Similar ideas can be found here: Interactive Thyroidectomy
    Now annoying I can't use the old code any more as I'm working in the latest flash cc actionscript 3.0
    So how do I do the same thing but in actionscript 3.0?
    So I've worked this bit out so far
    On my main stage I have two layers - actions layer and another layer with my movie clip (movieclip_mc)
    In the actions layer so far:
    movieclip_mc.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown);
    movieclip_mc.addEventListener(MouseEvent.MOUSE_UP, onMouseUp);
    function onMouseDown(event:MouseEvent):void
      movieclip_mc.addEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
      //I should put something in here about mouseX  - but no idea what
    function onMouseUp(event:MouseEvent):void
      movieclip_mc.removeEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
    function onMouseMove(event:MouseEvent):void
    //I have to put something in about total frames - width of movieclip_mc etc but I'm not sure how   
    // this is what someone else did on another forum - but I'm not sure what it means:
         var delta:int = backgroundClip.mouseX - clickedMouseX;
       var wantedFrame:uint = (clickedFrame + delta * clip.totalFrames / backgroundClip.width) % clip.totalFrames;
       while (wantedFrame < 1)
      wantedFrame += clip.totalFrames;
      clip.gotoAndStop(wantedFrame);
    Also I think i need something in the beginning like.....:
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    import flash.display.Sprite;
    var clickedMouseX:int;
    var clickedFrame:uint;
    var backgroundClip:Sprite = getChildByName("background") as Sprite;
    var clip:MovieClip = getChildByName("animation") as MovieClip;
    clip.stop();
    clip.mouseEnabled = false;
    .....but I'm a bit confused about what all of it means
    So I understand the principle but no idea how to actually make it work - Could anyone help explain it to me or help with the code?
    Thanks so much to anyone who can offer some help
    Catherine

    Hi Ned,
    sorry to bother you again on this subject -
    the script...
    function onMouseMove(event:MouseEvent): void {
      movieclip.gotoAndStop(Math.round(mouseX/movieclip.width*(movieclip.totalFrames-1))+1 )
    worked fine - but when you click and drag on the movie clip it didn't always get to the end of the movie and never carried on through the frames back to the beginning like i wanted it to (such as this one does Interactive Thyroidectomy)
    So I went back to the older 2.0 script and played with it a bit to be :
    function onMouseMove(event:MouseEvent): void {
      changeDistance = movieclip.mouseX - startX;
      travelDistance = startFrame + changeDistance;
      if (travelDistance > movieclip.totalFrames) {
      movieclip.gotoAndStop (travelDistance % movieclip.totalFrames);
      } else if (travelDistance < 0) {
      movieclip.gotoAndStop (movieclip.totalFrames + (travelDistance % movieclip.totalFrames));
      } else {
      movieclip.gotoAndStop (travelDistance);
    .... which almost works but it is very stuttery to mouse over and then it has this output error..
    mouseDown
    ArgumentError: Error #2109: Frame label 2.3500000000000227 not found in scene 2.3500000000000227.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 3.6499999999999773 not found in scene 3.6499999999999773.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 4.949999999999989 not found in scene 4.949999999999989.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 6.25 not found in scene 6.25.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 7.600000000000023 not found in scene 7.600000000000023.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 8.899999999999977 not found in scene 8.899999999999977.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 11.5 not found in scene 11.5.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 12.850000000000023 not found in scene 12.850000000000023.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 14.149999999999977 not found in scene 14.149999999999977.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 15.449999999999989 not found in scene 15.449999999999989.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 16.75 not found in scene 16.75.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    mouseUp
    I've obviously put some code in the wrong place - could you help me find out what it might be?
    I haven't labelled any frames odd numbers such as 15.4499999999999989 or labeled scenes than number either.
    I can send you my scene if that would help?
    Thanks very much for your time Ned
    (p.s Or maybe if it is easier you might offer some guidance as to how i can change the action script
    function onMouseMove(event:MouseEvent): void {
      movieclip.gotoAndStop(Math.round(mouseX/movieclip.width*(movieclip.totalFrames-1))+1 )
    to allow it to be more like Interactive Thyroidectomy

  • CP 6 Video mode: mouse click effects, keyboard tap sounds

    CP 6 capturing Video mode
    How do I set mouse click effects and keyboard tap sounds?
    Of course these settings surely cannot be set on a per slide basis as video mode does not have slides but why I'm not able to set them on a project basis?
    thanks

    Video mode is pure video. You can change some properties of the mouse (Choose Edit, Edit Mouse Points and when selecting one of the mouse objects look in its Properties panel, Options accordion. This accordion has the small curved arrow top right that you can use to apply the changes to all mouse objects.
    I'm not sure what you mean by 'keyboard tap sounds' at all? There is no way to add an interactive object, where you would be able to click, so what is the meaning of taps in that case?
    Lilybiri

  • Adding mouse click effect

    Hello,
    I am trying to create a whirpool like wave effect on a image
    with a mouse click.
    This following url is what I am trying to achieve with
    captivate.
    http://www.gautamsaha.com/bigsky/assessment.swf
    The was created using the hotspot quiz type feature of
    "articulate"
    When you click on any part of the map with mouse, a nice
    wavelike ripple shows.
    When you click again on another part of the map, the same
    feature shows.
    I have tried hard...but I cant seem to figure out how to do
    this with Captivate.
    Can anyone help?

    Hi again gotham1
    When I say "create a widget", I'm referring to what I've seen
    my fellow Adobe Community Expert Paul Dewhurst do. You can check
    his stuff out by
    clicking here.
    Your statement regarding adding this to the gallery somewhat
    confuses me, as almost any object you add appears in the gallery.
    Further I'm confused with the comment regarding there being nothing
    in Captivate to enable interaction with Flash things. I'm really
    hopeful that you will check out Paul's stuff, as he has done many
    such things.
    I think your approach is what Paul uses. That is, dropping
    the Flash created .SWF onto a Captivate slide as an animation.
    Cheers... Rick

  • Passing through a mouse click

    I have a canvas with backgroundAlpha=0 over some other components, so that I can use rollOver and rollOut to trigger some events. However, i can't get the mouse to work with the components underneath the tranparent canvas. Is there a way to pass the mouse click event on to the components underneath the canvas?
    thanks,
    jq

    Thanks very much for your answer.
    In my case, I have a List which already has click actions assigned to its items. Basically, I want the list to disappear when the mouse is out of it, an reappear when the mouse is over it. For this purpose, I overlayed it with a transparent canvas, which responds to rollOver and rollOut. But then the list no longer responds to the mouse clicks. Is there a way to get the overlayed convas to pass the mouse click to the list so it responds normally again?
    jq

  • Passing parameter through when mouse click trigger

    I have a detail block.This block fetching multiple records.My query is how can i pass parameter though WMC trigger.
    My details block displaying data from 4 tables.
    When i click on any field all the data on that row must be my parameters.

    In first form in when mouse click trigger:
    SELECT xyz
    INTO :GLOBAL.xyz,
    FROM abc
    WHERE v.po_no = :SYSTEM.MOUSE_ITEM
    AND IMT21_SIT.C_SIT_NO = IMT22_RECT_HD.C_SIT_NO;
    EXCEPTION WHEN NO_DATA_FOUND THEN
         MESSAGE('PLEASE CLICK ON PO NO');
    logout;
    logon('abc','[email protected]');
    open_form ('C:\CUSTOMER_SERVICES\SUPL_FAS');
    in second form in when new form instance trigger:
    block_name.field_name := :GLOBAL.xyz;
    it show error..........

  • Trackpad / mouse click control degrades or corrupts within an hour or longer

    Basically, over an hour, sometimes longer - the click of the mouse / trackpad ceases to have any effect.  Using an external mouse, the left-click also has no effect.  Right-click on the external mouse / Ctrl-click on the trackpad generally continues to work. I have generally been in the middle of something so I would proceed as far as I could using only the right-click.
    (Of interest, sometimes - like in this forum - the right-click on my mouse and the ctrl-click on the trackpad do not do exactly the same thing - but I think that is just how the page has been coded.)
    I am still able to move the pointer anywhere on the screen, that does not seem to be a problem.
    I have tried to open the system preferences to see if something was odd in the mouse settings but have been unable to get to the specific panel without the click function.
    This is the second time I have drafted this post.  The first time, the problem occurred and I was unable to click the "post message" button at the end of the form.
    The only way I can find to fix the problem is to restart my Macbook.  But the problem can recur in less than an hour - I had just restarted before I started the first draft of this post.
    Has anyone else seen this behaviour?  Any ideas or help would be greatly appreciated.
    Thanks in advance.
    W

    Hi Barney, thanks for the response.
    I went through the "resetting the SMC" troubleshooting before resetting the SMC.  The very last thing they suggested I try was shutting down the MacBook and removing and then replacing the battery.
    I could not do that.  As soon as I lifted up the MacBook to get at the battery bay, I could see that the battery was swollen to the point that it (the battery) was no longer sitting flush with the bottom of the Macbook.
    I have seen this before it happened when my MacBook was still under AppleCare - that time I discovered it while dusting off my computer area.  That time, they just replaced the battery.
    I remembered having read something about the battery swelling recently, and scanned the SMC resetting article several time before returning to your response, where of course I found it.
    Seems like you hit on the issue right away: swollen battery which is (I am assuming) placing pressure on the trackpad which is eventually malfunctioning.
    My MacBook's AppleCare has expired.  How do I assess whether to buy a replacement battery or just bite the bullet and get another computer - obviously an unplanned computer purchase wouldn't be a thrilling option, but I also don't want to waste money on a battery just to be forced to purchase another computer soon anyway :-/
    W

  • Drag and drop feature on the project panel doesnt work. Cant adjust scale or any numer properties by sliding mouse. (click drag wont work at all nowhere)

    This issue just happened out of the blue. The last thing I did was create a new comp and import an Illustrator file.  Working on CC2014. Its like the mouse's left click wont be working at all... but that's not the case.  Cant even drag the comps in the composition, or move the layers around....
    Now the issue affects everything I do in After Effects, even on a new comp with just a plain solid
    Deleted cache,
    reseted workspaces,
    open/close after effects
    restarted computer
    newcomp with just a solid and nothing.
    plugged unplugged wireless mouse
    changed to wired mouse
    the issue is still there
    Curiously, after writing this post , publishing, and going back to after effects, the mouse will work, but for a couple of clicks or so then wont work again. This only happens on After Effects
    Mensaje editado por: Oswaldo Montúfar

    You're Right
    Its an Gigabyte GA-Z68XP-UD4   with an i7 k2600 clocked to 4.2ghz   w 16gbRam at 1333mhz
    Dual GPU , gtx 760 and gtx 780ti
    Running Windows 7 ultimate.
    The keyboard is a Genius G110  plus a wireless mouse Genius also.
    Adobe guys tried resetting cache (different than deleting) and user preferences, creating new user, disabling both video cards . The issue was still there.
    BTW!, After I switched windows in Win7 environment ( from after effects to the browser)  the mouse drag worked again. I could move objects in comp window, scale; move sliders on time line and drag projects to folders in project window... everything fine until i pressed ANY key, say, shift key or ctrl key.
    Probably we will never have the answer for this, since i had to format the C drive  (i have work to do). Currently i'm installing CC again. So if problem persists, I'll ditch the computer through the window.

  • Multiple Buttons in JTable Headers:  Listening for Mouse Clicks

    I am writing a table which has table headers that contain multiple buttons. For the header cells, I am using a custom cell renderer which extends JPanel. A JLabel and JButtons are added to the JPanel.
    Unfortunately, the buttons do not do anything. (Clicking in the area of a button doesn't appear to have any effect; the button doesn't appear to be pressed.)
    Looking through the archives, I read a suggestion that the way to solve this problem is to listen for mouse clicks on the table header and then determine whether the mouse clicks fall in the area of the button. However, I cannot seem to get coordinates for the button that match the coordinates I see for mouse clicks.
    The coordinates for mouse clicks seem to be relative to the top left corner of the table header (which would match the specification for mouse listeners). I haven't figured out how to get corresponding coordinates for the button. The coordinates returned by JButton.getBounds() seem to be relative to the top left corner of the panel. I hoped I could just add those to the coordinates for the panel to get coordinates relative to the table header, but JPanel.getBounds() gives me negative numbers for x and y (?!?). JPanel.getLocation() gives me the same negative numbers. When I tried JPanel.getLocationOnScreen(), I get an IllegalComponentStateException:
    Exception in thread "AWT-EventQueue-0" java.awt.IllegalComponentStateException: component must be showing on the screen to determine its location
    Can someone tell me how to get coordinates for the button on the JTableHeader? Or is there an easier way to do this (some way to make the buttons actually work so I can just use an ActionListener like I normally would)?
    Here is relevant code:
    public class MyTableHeaderRenderer extends JPanel implements TableCellRenderer {
    public MyTableHeaderRenderer() {
      setOpaque(true);
      // ... set colors...
      setBorder(UIManager.getBorder("TableHeader.cellBorder"));
      setLayout(new FlowLayout(FlowLayout.LEADING));
      setAlignmentY(Component.CENTER_ALIGNMENT);
    public Component getTableCellRendererComponent(JTable table,
                                                     Object value,
                                                     boolean isSelected,
                                                     boolean hasFocus,
                                                     int row,
                                                     int column){
      if (table != null){
        removeAll();
        String valueString = (value == null) ? "" : value.toString();
        add(new JLabel(valueString));
        Insets zeroInsets = new Insets(0, 0, 0, 0);
        final JButton sortAscendingButton = new JButton("1");
        sortAscendingButton.setMargin(zeroInsets);
        table.getTableHeader().addMouseListener(new MouseAdapter(){
          public void mouseClicked(MouseEvent e) {
            Rectangle buttonBounds = sortAscendingButton.getBounds();
            Rectangle panelBounds = MyTableHeaderRenderer.this.getBounds();
            System.out.println(Revising based on (" + panelBounds.x + ", "
                               + panelBounds.y + ")...");
            buttonBounds.translate(panelBounds.x, panelBounds.y);
            if (buttonBounds.contains(e.getX(), e.getY())){  // The click was on this button.
              System.out.println("Calling sortAscending...");
              ((MyTableModel) table.getModel()).sortAscending(column);
            else{
              System.out.println("(" + e.getX() + ", " + e.getY() + ") is not within "
                                 + sortAscendingButton.getBounds() + " [ revised to " + buttonBounds + "].");
        sortAscendingButton.setEnabled(true);
        add(sortAscendingButton);
        JButton button2 = new JButton("2");
        button2.setMargin(zeroInsets);
        add(button2);
        //etc
      return this;
    }

    I found a solution to this: It's the getHeaderRect method in class JTableHeader.
    table.getTableHeader().addMouseListener(new MouseAdapter(){
      public void mouseClicked(MouseEvent e) {
        Rectangle panelBounds = table.getTableHeader().getHeaderRect(column);
        Rectangle buttonBounds = sortAscendingButton.getBounds();
        buttonBounds.translate(panelBounds.x, panelBounds.y);
        if (buttonBounds.contains(e.getX(), e.getY()) && processedEvents.add(e)){  // The click was on this button.
          ((MyTableModel) table.getModel()).sortAscending(column);
    });

  • Cinema 4d Lite not recognizing mouse clicks?

    Hello everyone. I've been working on a project in After Effects CC and was reading about the integration of Maxon Cinema 4d Lite. I wanted to try to make my 2D diamond into a 3D model and it seemed the perfect application to do so. Unfortunately, whenever I open the program (I've tried through File - New - Maxon Cinema File...and Layer - New - Maxon Cinema File... and even once a file is technically created, I've tried going to "edit original". I've also tried to export something else as a Maxon Cinema file and then importing it to see if it would work), it doesn't work.
    Basically, since try #1 the program doesn't seem to be recognizing my mouse clicks. As soon as I click on a menu it goes away. I can hold down the mouse button, but then I can't choose anything on the menu. I've done all the updates on all software, restarted, shut down, cleaned cache, etc. etc. There was one thing that worked, but it only worked for a mouse click at a time! I found that if I found the application file within my program files (C:\Program Files\Adobe\Adobe After Effects CC\Support Files\Plug-ins\MAXON CINEWARE AE\(CINEWARE Support)\lite)....if I have Cinema 4d open, and I double click on the .exe file like I'm trying to launch the program, then the program will recognize one mouse click. But if I try to do anything else, it doesn't respond. I could do this all day and night to get my project done but there's GOT to be an easier way!
    If anyone has any suggestions, I would gladly give them a try!
    Oh, and I'm on a Windows 8.1 64bit computer. If there are any details I didn't include that would be helpful, please let me know. Thank you!

    Thank you Mylenium. I wasn't sure what details to provide, but I'll do my best to cover everything you asked about.
    As far as the computer, my PC is running Windows 8.1 Pro (64-bit). The hardware is as follows:
         Processor: AMD FX8120 (8-core, 3.10GHz)
         Graphics: NVIDIA GeForce GTX550 Ti
         Input Device: Wacom Intuos3 Tablet (using provided mouse, not pen while using C4D)
         Memory: 16 GB usable (have 32 installed but haven't spent the time to figure out how to get it all to work with Windows 8)
         Screen Resolution: on Monitor #1 (HDMI) and Monitor #2 (Analog) it is set to the recommended 1920 x 1080
    I managed to be able to get in to the Preferences within C4d somehow and these are the things I thought might be pertinent:
         OpenGL settings: it IS turned ON (Linear, Anti-Alias = 4, Max transparency = 2, Max Lights = 8, Max Shadows = 2, and Use Shader Cache is checked)
         Memory settings: the cache is defaulted to the C drive. I set my cache in AE to the B drive, which I would prefer but I C4d won't let me change this at the moment)
         Input Devices: PSR Cursor = False, Tool Cursor = true, Mouse Move Activation = True, Graphics Tablet = False, Hi-Res Tablet = True, Open Commander Dialog on Mouse Position = True
    I'm thinking the fact that the Graphics tablet is unchecked in C4d might be the issue? I can try to change it with the trick I originally mentioned, but let me know if there is anything else you see that you think might help. Did I miss anything? I really appreciate it! Thank you.

  • I am using FireFox 4. Where is the "Bookmark All Tabs-" feature. I would like to save my Tabs for a later session. The selection is not on the menu when I right-mouse click or go to the Bookmarks feature of the Menu.

    Missing "Bookmark All Tabs…" feature which was in previous versions of FireFox 3.x. If you right-mouse click on a neutral part of the Browser window, there would be choice of "Bookmark this page" or "Bookmark All Tabs…". I have been unable to find it either in the sub-menu or the BOOKMARK selection from the Menu Bar.

    What do you mean by Tabs sub-menu is it right-clicking on a tab ?
    I know that "ctrl-shift-D" still work.
    I know that a right-click on a tab gives the "Bookmark all Tabs" function.
    But I would like to see it back in the Bookmarks menu. (which is its logical place)
    Because today the choice only disappeared from the menu as it is still reachable through keyboard shortcut or through mouse right-click on a tab
    but tomorrow it will totally disappear and personally I don't want that as this is one of my favorite functionality.
    Tank you for your understanding !

Maybe you are looking for