AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Capture screeshots with a nice GUI (and IrfanView)
Goto page Previous  1, 2, 3, 4
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
hps



Joined: 19 Aug 2005
Posts: 14
Location: Germany

PostPosted: Fri Sep 23, 2005 6:18 pm    Post subject: new features in screencopy Reply with quote

Hi Toralf,
i have posted the complete script to you in a pm.

The following features are implemented:

hard coded:
- "Show Easycopy" in tray menu now toggles show/hide -- Wish 3
- "edit" button opens the last saved file in Irfanview
- toggling "stay on top" by middle click on title bar -- Wish 4
- if version of i_view32.exe is > 3.9.7.0 capturing region will work
with SysGet, 78 / 79 "virtual screen" coordinates

configurable:
- do not show Gui after capture ( only if "preview" is off ) -- Wish 2
- do not show Gui on startup -- Wish 2
- show/hide Gui by single click on tray icon -- Wish 3
hide by right click on titlebar ( instead of rollup/down )
- "open" button shows irfanview thumbnails instead of explorer folder
- capture is saved to clipboard
Back to top
View user's profile Send private message
toralf



Joined: 31 Jan 2005
Posts: 3842
Location: Bremen, Germany

PostPosted: Sun Sep 25, 2005 1:34 pm    Post subject: Reply with quote

Dear hps,

Thanks for the new features. I have updated the code in the first post.

Thanks also for continueing my style of coding. Made it fairly easy to incorporate your additions. I modified some of the lines and restructured the code in some areas. Please test if it still works. It works here.
_________________
Ciao
toralf
Back to top
View user's profile Send private message Send e-mail Visit poster's website
toralf



Joined: 31 Jan 2005
Posts: 3842
Location: Bremen, Germany

PostPosted: Sat Nov 12, 2005 12:57 pm    Post subject: Reply with quote

Updated first post.
It is now possible to specify any amount of "#" in a filename. The automatic numbering will fill each "#" with a number.

So that shot_###.jpg will become shot_001.jpg , etc.
But also #.#.#.jpg is possible. It will end up as 0.0.1.jpg , etc.

If the file allready exists it will serach for the next available filename. If it can't find a free file name it will show a message.

And I think I have as well removed some minor bugs. If you find some remaining, let me know.
_________________
Ciao
toralf
Back to top
View user's profile Send private message Send e-mail Visit poster's website
hps



Joined: 19 Aug 2005
Posts: 14
Location: Germany

PostPosted: Tue Jan 17, 2006 12:05 am    Post subject: Irfanview 3.98 is released Reply with quote

Region capturing now works on secondary monitors too.
Back to top
View user's profile Send private message
toralf



Joined: 31 Jan 2005
Posts: 3842
Location: Bremen, Germany

PostPosted: Wed Jan 25, 2006 11:22 am    Post subject: Reply with quote

New version 0.7 in first post.

Edit 060125: normal hotkeys for RButton (RollUp or Hide) and MButton (Toggle AOT) on GUI have been replaced with OnMessage() since they caused problems with other apps.
_________________
Ciao
toralf
Back to top
View user's profile Send private message Send e-mail Visit poster's website
kiu



Joined: 18 Dec 2005
Posts: 229
Location: Italy - Galatro(RC)

PostPosted: Thu Feb 02, 2006 1:55 pm    Post subject: Reply with quote

take a look at this, for replacing irfanview that many people doesn't like(me! Rolling Eyes ), and send me comments :
http://file.autohotkey.net/kiu/kiu-clipsave.exe
use it to save an image on clipboard in png and jpg.When launched it save the image in image.jpg and image.png.
Maybe it's better to set priority to realtime when launching the app.

Let me know
_________________
____________________
______________________
kiu
Back to top
View user's profile Send private message Visit poster's website
TheLeO



Joined: 11 Jun 2005
Posts: 168
Location: England ish

PostPosted: Thu Feb 02, 2006 7:45 pm    Post subject: Reply with quote

mmm my task bar is transparent. doesnt capture it for some reason ?>
_________________
And i say: where there is a problem , there is a solution.(well some where that is.)
::
I Have Spoken
::
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
toralf



Joined: 31 Jan 2005
Posts: 3842
Location: Bremen, Germany

PostPosted: Fri Feb 03, 2006 6:50 am    Post subject: Reply with quote

If that is the case for capturing full screen, it is a flaw of IrfanView since the only thing EasyCopy does is send IrfanView the command line "/area=0" which means capture full screen.

If you tried other capture methods please be more specific.
_________________
Ciao
toralf
Back to top
View user's profile Send private message Send e-mail Visit poster's website
silveredge78



Joined: 25 Jul 2006
Posts: 382
Location: Midwest, USA

PostPosted: Tue Jul 25, 2006 11:12 pm    Post subject: Minor variable change suggestion Reply with quote

Toralf,

I like your script and find it rather useful. However, I noticed one minor thing that I wanted to change. When the file runs, it generates an ini file that contains the script's own extension in it.

Example:
Script Name: EasyCopyAHK.ahk
Created ini: EasyCopyAHK.ahk.ini

For those of us who are sticklers about clean file names, and do not like periods, except before the extension, here is something you can add. It adds one line, and changes a variable in another. It is the first command in your Directives section.

Code:

SplitPath, A_ScriptName,,,, ScriptNoExt
StartCenterIni      = %ScriptNoExt%.ini

This gives us the following:

Script Name: EasyCopyAHK.ahk
Created ini: EasyCopyAHK.ini

I know it is minor, and I am not sure if you would want to incoporate it, but thought I would let you know what worked for me. Very Happy
Back to top
View user's profile Send private message
toralf



Joined: 31 Jan 2005
Posts: 3842
Location: Bremen, Germany

PostPosted: Tue Jul 25, 2006 11:23 pm    Post subject: Re: Minor variable change suggestion Reply with quote

Dear silveredge78

Thank you very much for your post. I will include it in the next release. I was lazy when I coded that part. In other scripts I did it exaclty that way, but don't know hwy I didn't do it here. Thanks, very much appreaciated.

EDIT: Did it directly in the first post.
_________________
Ciao
toralf
Back to top
View user's profile Send private message Send e-mail Visit poster's website
PhiLho



Joined: 27 Dec 2005
Posts: 6721
Location: France (near Paris)

PostPosted: Wed Jul 26, 2006 8:54 am    Post subject: Re: Minor variable change suggestion Reply with quote

silveredge78 wrote:
For those of us who are sticklers about clean file names, and do not like periods, except before the extension
Funny, I treat the period exactly like any other legal file name character.
Well, sort of, I avoid to put two of them consecutively (although it is legal), and to put one at the end of a name... (this one is illegal).
But I have lot of downloaded files looking like AutoHotkey-1.0.44.08.zip or curl-7.15.4.tar.bz2 and never had any problem with them. Hey, I even have some files and folder with an initial dot, in Unix style (they are semi-hidden in these systems).
Do you have other rules for "clean file names"? Do you stick to 8 uppercase alphanumeric characters? Wink
Just my 2 cents, of course, you name your files the way you prefer! Very Happy
_________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")
Back to top
View user's profile Send private message Visit poster's website
silveredge78



Joined: 25 Jul 2006
Posts: 382
Location: Midwest, USA

PostPosted: Wed Jul 26, 2006 7:03 pm    Post subject: Preference Reply with quote

Philho,

It is more a matter of personal preference. Some of us are a tab bit anal retentive sometimes. In general, I do not like extra periods in filenames - not cause I think I cant do it, because I do not care for it.

Also, the other scripts in my directory that use an ini file follow the naming structure I suggested. I also like to see things consistent. Again, just my personal preference.

For those that do not care, its not a big deal. Smile Just my two cents. Wink
Back to top
View user's profile Send private message
moh



Joined: 14 Apr 2007
Posts: 10

PostPosted: Wed Sep 17, 2008 12:11 pm    Post subject: auto interval Reply with quote

Hi,

Was the

- Auto-Interval (image sequence in timesteps)

ever implemented?

I really need this feature!!!
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3, 4
Page 4 of 4

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group