topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Friday April 26, 2024, 11: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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - skwire [ switch to compact view ]

Pages: prev1 ... 200 201 202 203 204 [205] 206 207 208 209 210 ... 222next
5101
I'd like to see an option to sort out just one specific resolution, or a list of specified resolutions, so that I can run the program on my bulk image downloads folder and pull out all the images that are wallpaper sized, without worrying about having hundreds of extraneous folders created that then get in the way of other sorting (exactly 400 folders created this batch, amusingly).
As an added bonus, but much lower priority, a sub-option that would create a second folder for images that almost match the required res but not quite, e.g. 1682x1050 or 1680x1040. Perhaps with a definable pixel or percent range.

Dimensions 2 Folders has been updated to v1.0.3: Webpage | Download

v1.0.3 - 2009-08-17
    + Added a second sort method that allows you to specify specific resolutions to
      sort (along with a +/- threshold for each).  (Thanks, Esker)

This new method, 'Sort only images that match these resolutions', allows you to set only certain resolutions to sort.  You can also set a +/- threshold for each resolution to catch those images that are "close" to your target resolution.  For instance, if you set a width of 800, a height of 600, and a threshold of 20, this will match any image with a resolution between 780 and 620.  All such images will be sorted into an 800x600 folder.  If you want to match a resolution EXACTLY, set the threshold to 0.

main.png

5102
BTW, you can use a template like this to create subfolders:  $artist\[$year] $album


5103
Post New Requests Here / Re: Remember removed programs
« on: August 16, 2009, 03:11 PM »
Maybe use some macro to run it and click View=>Html Report All Items.
No need for a macro since the app itself has commandline support to do exactly what you're suggesting:

Command-line options
  • /stext <Filename>    Save the list of all installed applications into a regular text file.
  • /stab <Filename>    Save the list of all installed applications into a tab-delimited text file.
  • /stabular <Filename>    Save the list of all installed applications into a tabular text file.
  • /shtml <Filename>    Save the list of all installed applications into HTML file.
  • /sxml <Filename>    Save the list of all installed applications to XML file.

5104
Tags 2 Folders is a small utility to sort audio files into folders based on their tags.  The following audio file types are suppported:

AAC, APE, FLAC, MP1, MP2, MP3, MP4, MPC, M4A, M4B, OGG, OFR, OFS, TTA, WMA, WV 

Simply choose a source folder, a destination folder, set your options and click the "Go" button.

Options

1) Recurse source folder:  Scan through the source folder's sub-directories.
2) Show destination folder after run:  Launch an Explorer window of the destination folder when done.
3) Template:  Use the tokens to come up with your own folder naming scheme.
4) Copy files to destination:  Make copies of the original files in the destination folder.
5) Move files to destination:  Move the original files into the destination folder.

Other notes

1) You can drag & drop folders onto the source and destination fields.
2) Filename collisions will be automatically renamed like this:

audio_file.mp3
audio_file[1].mp3
audio_file[2].mp3
audio_file[3].mp3
...

main.png

Webpage | Download

5105
Working on it now...

5106
I can do this one.

5107
there should be a lot of free little encryption testing utilities out there that can do this, so i'm not sure there is any reason to write a new one.. maybe just locate an existing one?
Agreed.

5108
All you want is to encrypt a given string with 128 bit AES and see the encrypted output?

5109
v1.0.6 - 2009-08-14
    + Window size and position are now saved.
    + Added several file management options when right-clicking the listbox or image.
    + Added "Register 'Add to CovArt Ops' shell extension" option under the Extra menu.
    * Minor graphical tweak to the picture control.
    ! Root folder of a selection wasn't being scanned properly.

5110
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« on: August 11, 2009, 10:18 PM »
Hell yes it was.  Sexy, ain't it?   :P

 :-\
v1.0.3 build 40 - 2009-08-11
    ! Title display coordinates were borked because I can't add ten properly.  (Thanks, app103)

5111
Fixed.   :D

5112
Developer's Corner / Re: AutoHotKey Tidy or equivalent?
« on: August 06, 2009, 03:09 PM »
I've been using it for so long that I don't recall the default hotkey but you can change all that here:

Settings, Program Settings, Key Map, Editor, DeleteLine

5113
Developer's Corner / Re: AutoHotKey Tidy or equivalent?
« on: August 06, 2009, 05:54 AM »
http://www.autohotke...forum/topic7810.html

For the record, I use PSPad as well.

5114
In my own coding experiences, OCR is a right pain in the @$$ to get working well.

5115
Just use Nir Sofer's myUninstaller.  His app allows you to export the data in a variety of formats.

5116
Post New Requests Here / Re: Request/Idea-Winamp Titlebar Control
« on: August 06, 2009, 02:23 AM »
Does it have to be titlebar buttons?  How about a small, floating bar that you could position anywhere?  I could easily leverage my Trout minibar code as a stand-alone Winamp controller.

5117
Developer's Corner / Re: Autohotkey help
« on: August 02, 2009, 04:31 PM »
Two things:

1) If you don't want them renamed if they're minimised, use: If ( WinState <> -1 )

2) You're missing some braces (and this is where consistent indentation becomes important).  Consider this:

n=1
WinGet, id, list,,, Program Manager
Loop, %id%
{
    this_id := id%A_Index%
    WinGet, WinState, MinMax, ahk_id %this_id%
    If ( WinState <> 0 )   
    {   
        titles := A_Index                              ; keep track of how many windows in list
        WinGetTitle, titles%A_Index%, ahk_id %this_id% ; save original title
        titles%A_Index% .= "`n" this_id                ;   and its ahk_id
   
        WinGetTitle, this_title, ahk_id %this_id%
       
        WinGetClass, this_class, ahk_id %this_id%
        if this_class in Notepad,CabinetWClass,ExploreWClass
        {
            WinSetTitle,ahk_id %this_id%,, %n%
            n := n + 1
        }
        MsgBox, 4, , Visiting All Windows`n%a_index% of %id%`nahk_id %this_id%`nahk_class %this_class%`n%this_title%`n`nContinue?
        IfMsgBox, NO, break
    }
}

msgbox, %titles%

; restore titles
Loop, %titles%
{
    StringSplit, windowInfo, titles%A_Index%, `n
    WinSetTitle, ahk_id %windowInfo2%,, %windowInfo1%
    msgbox, %windowInfo2%   %windowInfo1%
}


5118
Developer's Corner / Re: Autohotkey help
« on: August 02, 2009, 12:40 PM »
You were very close.  Change this line:

if this_class = Notepad,CabinetWClass

To:

if this_class in Notepad,CabinetWClass,ExploreWClass

Now it should do what you want.  Alternately, you could do it this way:

If ( this_class = "Notepad" OR this_class = "CabinetWClass" OR this_class = "ExploreWClass" )

5119
I won't be able to be of much help.  I run XP and don't use Winamp.   :P  Thanks for the testing and feedback, though.

5120
What happens when you run a FLAC file from the Run box?  Does Winamp behave the same way?

5121
Hmmmm...I suppose so.  What I do in the code is akin to simply "running" the file in, say, the Run prompt.  Maybe try switching the association back and simply entering the full path to a FLAC file in the Run box?

5122
lanux, here you go.  The only column you can't hide is the Filename colum.

v1.1.4 - 2009-08-01
    + Added ability to choose which columns are displayed.  You can find it
      under the View menu.  (Thanks, lanux128)
    * Moved the "Say total time" to the Extra menu.

5123
Would it be possible to have the Filename column self-adjusting as it was before
Done.

I promise this is the last adjustment request(unless you can get it to pick winning Lotto numbers) :)
:)  Don't worry about requests.  I enjoy these sorts of apps.

a way to customize the columns would be nice. i'd like to request for the ability to hide certain columns.
If I add this, I'd have to do it like I do in Trout and other apps I've written that use a listview.  Basically, I just zero-width any column you want to "hide".  It's still there but you just don't see it.

5124
Hmmmm, if you add audio and video codec then you'd have just about all the pertinent info from MediaInfo. The other thing, if I reposition the columns it seems to forget the order if I close and open the app.  Could you persist the column order?
Done.

v1.1.2 - 2009-07-31
    + Column order and widths are now saved.  (Thanks, MilesAhead)
    + Added a few more data columns.

main.png

5125
Fair enough.  =]

Pages: prev1 ... 200 201 202 203 204 [205] 206 207 208 209 210 ... 222next