topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday May 15, 2025, 3:08 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 158 159 160 161 162 [163] 164 165 166 167 168 ... 222next
4051
General Software Discussion / Re: Question about AutoHotkey scripting
« Last post by skwire on August 04, 2010, 05:51 AM »
Code: Autohotkey [Select]
  1. ~k::
  2. {
  3.     {
  4.         SendInput, ^!{F4}
  5.     }
  6. }
  7. Return
4053
Finished Programs / Re: Exclude firefox from script?
« Last post by skwire on August 03, 2010, 08:59 PM »
Add this line to the top of your script:

Code: Autohotkey [Select]
4054
Post New Requests Here / Re: IDEA: right-click to display geotagged image on map
« Last post by skwire on August 03, 2010, 09:36 AM »
Give this a try, please:  GeoLocate download

Let me know how it goes.  Thanks.
4055
Post New Requests Here / Re: IDEA: right-click to display geotagged image on map
« Last post by skwire on August 03, 2010, 09:00 AM »
Assuming the context menu only shows for jpegs (.jpg and .jpeg, i.e. we don't need to put the word "photo" or "picture" in the text to explain what we're geolocating),

The context menu will show for all types of files since other image types besides jpegs can contain EXIF data.

then simply "Geolocate" would be enough.

Sounds good to me.

I don't expect the right-click menu to know in advance whether an image has a geo tag or not, that's too fancy and I doubt it's even possible.

Correct, I can't know in advance without scanning the file.

If there's no latlon info in the file, will you be putting up an error box, or just bringing up a map with no pointers placed?  (If there's a choice I think I'd prefer an error box but whatever is easiest...)

The app traps for the complete lack of EXIF data as well as the lack of GPS data within existing EXIF data.  A typical message box is shown and the app exits after the user clicks okay.  Cool?
4056
Coding Snacks / MOVED: Frep - commandline find and replace
« Last post by skwire on August 03, 2010, 05:45 AM »
4057
Post New Requests Here / Re: IDEA: right-click to display geotagged image on map
« Last post by skwire on August 03, 2010, 01:41 AM »
Any preference on the context menu entry text?  
4058
Post New Requests Here / Re: IDEA: right-click to display geotagged image on map
« Last post by skwire on August 02, 2010, 10:55 PM »
Alternately, I could pop up a little GUI that would offer buttons to allow you to choose either of them.  Your call.
4059
Post New Requests Here / Re: IDEA: right-click to display geotagged image on map
« Last post by skwire on August 02, 2010, 10:51 PM »
You pick one - I'm not going to ask for any 'scope creep' when you're doing this as a quickie favour! :-)

It's your software so feel free to choose the one you like.  Either one is the same work to implement (which is to say, hardly any work at all).    :D
4060
General Software Discussion / Re: DRM Management
« Last post by skwire on August 02, 2010, 09:49 PM »
Darwin, would you mind emailing a couple of unplayable tracks to me for testing purposes? 

[email protected]

Thanks.
4061
General Software Discussion / Re: DRM Management
« Last post by skwire on August 02, 2010, 09:46 AM »
As I mentioned before, it would be a piece of cake for me to write an app that would attempt to play any file you throw at it and allow you to delete the ones that won't play.  Obviously, I can't test for the actual presence of DRM crud but the fact that a file won't play should be a pretty good indication.  Would you be interested in something like this?
4062
General Software Discussion / Re: Question about AutoHotkey scripting
« Last post by skwire on August 01, 2010, 09:03 PM »
Is it possible to create a hotkey that does not require simultaneous pressing of keys?

Here's one method to double-tap "k".

Code: Autohotkey [Select]
  1. ~k::
  2. {
  3.     {
  4.         MsgBox, Success.
  5.     }
  6. }
  7. Return

4064
Here you go.  Adjust as necessary.

Code: Autohotkey [Select]
  1. #c::
  2. {
  3.     SendInput, ^c ; Copy image path to clipboard.
  4.     SplitPath, Clipboard, myFileName ; Get filename from the path.
  5.     Clipboard := "http://www.site.com/" . myFileName ; Concatenate string and copy it to the clipboard.
  6. }
  7. Return
4065
I have this mostly done.  Where did you want it to point to?  Straight to Google Maps like this?:

http://maps.google.c...33.065481,-98.570283

Or to something like GeoHack like this?:

http://toolserver.or...5.73_N_98_34_13.02_W
4066
N.A.N.Y. 2010 / Re: NANY 2010 Release: ClipTrap
« Last post by skwire on July 31, 2010, 10:15 AM »
You're welcome.  Happy to help.   :D
4067
Post New Requests Here / Re: Idea: Clipboard Mouse Click n Paste
« Last post by skwire on July 31, 2010, 08:58 AM »
Another reason I been reluctant to use any other form of clipboard management is because I use the script to label file names. I can cycle through the entries with the script without losing focus from my renaming. I tried arsclip before and it was promising, but it stole focus on my file renaming.

Unfortunately, your requests to mouse-click the entries would do that same thing (move focus away from your file renaming).  Make sense?
4068
Post New Requests Here / Re: IDEA: File/Directory Search with Aggregate Report
« Last post by skwire on July 31, 2010, 08:06 AM »
Thank you very very much skwire, it works perfectly for me.

You're welcome.  Did you need anything else added to the app?  Currently, it doesn't save any settings but that's easily added if you need it.  If not, we'll call this one done.   :D
4070
N.A.N.Y. 2010 / Re: NANY 2010 Release: ClipTrap
« Last post by skwire on July 30, 2010, 11:27 PM »
Website | Download
v1.0.3 - 2010-07-30
    ! Fixed a couple of 120 DPI graphical glitches.  (Thanks, cmpm)
4071
Post New Requests Here / Re: Idea: Clipboard Mouse Click n Paste
« Last post by skwire on July 30, 2010, 11:07 PM »
Well, normally, I just insert code that ignores the 120 DPI setting rather than have to make huge GUI adjustments to account for it.  In this case, though, I think widening the buttons a bit ought to do it.
4072
Post New Requests Here / Re: Idea: Clipboard Mouse Click n Paste
« Last post by skwire on July 30, 2010, 10:49 PM »
Based off of your screenshot, it looks like I need to fix ClipTrap for 120 DPI systems, eh?   =]  Anyway, I don't think that ClipTrap is well-suited to the original poster's issue.  I took at look at the script he is using and it's simple enough.  However, Smobu, to do what you want to do will require quite a bit more than simple changes since that script is using simple tooltips to display the previous five clips.  Did you ever try ArsClip while you were trying out clipboard managers?  That's the one I've used for many many years now.
4073
Do you have an example image I could check out?
4075
Finished Programs / Re: IDEA: Right-Click Menu Create Folder with Enhancements
« Last post by skwire on July 30, 2010, 09:25 PM »
It is exactly what I was hoping for, so thanks again!

That's great to hear.  I assume it's working well for you?

Please enjoy the donation.

Thank you very much.  I appreciate it.

I don't know if I should mark this thread solved or is that something you would do?

I'll take care of it.  =]
Pages: prev1 ... 158 159 160 161 162 [163] 164 165 166 167 168 ... 222next