Messages - johnnyzero [ switch to compact view ]

Pages: [1] 2 3 4 5next
1
Post New Requests Here / Re: IDEA: Lock icons in place on desktop
« on: March 10, 2015, 12:12 PM »
Nice work, Skrommel.

To prevent dragging of Desktop icons on Windows 8/8.1, you need to manually add the "WorkerW" class. Perhaps you can update your code so that DeskLock.ini includes that class by default.

Also, it would be great if you could change the hotkey function so that it toggles between enabled/disabled, rather than just disable.

JohnB

2
Coding Snacks / Re: Idea: Lightbox
« on: July 17, 2008, 07:16 AM »
Thanks, Skrommel. That's perfect!

JohnB

3
Coding Snacks / Re: Idea: Lightbox
« on: July 15, 2008, 11:35 AM »
thanks, fenix.

4
Coding Snacks / Idea: Lightbox
« on: July 15, 2008, 09:26 AM »
I assume this would be rather easy: display "white" on entire screen, press Esc to quit.

It would allow you to use your monitor as a poor man's lightbox for viewing slides, x-rays, MRI's, and other tranparencies.

Don't laugh: I needed to look at some (important) MRI's for a family member the other day. I created a blank/white image file and viewed it in IrfanView's full-screen mode. Worked for me.

JohnB

5
Skrommel's Software / Re: Eject/CloseCD
« on: July 13, 2008, 10:53 AM »
Thanks for the reply, jgpaiva. Good idea - your code seems like it should work, but it didn't for me. Oh well...

I ended up using this rather clever example code from the AHK docs to create a hotkey-based script, converted it to an EXE, and I have the EXE autorun at system startup:

F11::
Drive, Eject
; If the command completed quickly, the tray was probably already ejected.
; In that case, retract it:

if A_TimeSinceThisHotkey < 1000 ; Adjust this time if needed.
     Drive, Eject,, 1
return

Works great - pressing F11 toggles my drive tray open/closed. That's actually more convenient than having to click on something.

best,
JohnB

Pages: [1] 2 3 4 5next
Go to full version