Joe DF

Results 117 comments of Joe DF

Thanks. Yes, I shall make a quick update hopefully this weekend.

Oh sorry there, forgot! Here's a screenshot. Essentially just an option to open the "This PC" or "My Computer" system folder. ![untitled](https://user-images.githubusercontent.com/3848219/29680715-7616237e-88d3-11e7-90c0-b35439f2969f.png)

What if there were a submenu of all the shell: addresses? :D

I think js-canvas is pretty well established at this point. The software-rendering works reasonably well even on modern everyday laptops with no discrete graphics. I've never used or needed the...

Yes, precisely. DOM modification is actually quite costly and thus canvas is generally recommended (w3c) for more complex animations and such.

Neat idea! I'll have to try to implement this when I have some free time. This would probably require implementing a custom GUI for this. I don't think horizontal context...

Add `useShowHide` INI setting: ```ahk IniRead, useShowHide, %SCFile%,%APP_NAME%,useShowHide,1 ``` Will need `#SingleInstance, off` and likely `OnMessage()` handler to communicate to parent/main script to re-show the menu.

I had some weird issues as well. Events were being blocked. I ended up just commenting out the `$.cancelEvent( event );` in `MouseTracker.js`'s [`function onPointerDown( tracker, event )`](https://github.com/openseadragon/openseadragon/blob/995be3c37cb762e92521f2b7af58cb55b1e992fa/src/mousetracker.js#L2545) ... Perhaps,...

Well in my case, I have a "global" event handler for mouse events using jQuery like so (simplified): ```js $(document).on("mousedown mouseup mousemove", function(event){ var modifiedEvent = event; // do something...

I wanted to add that I am also experiencing a performance hit in Firefox with OpenSeadragon `v5.0.1`. In MS Edge / Chrome, it is all fine, always 60 FPS. In...