topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Wednesday May 14, 2025, 1:47 am
  • 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 ... 184 185 186 187 188 [189] 190 191 192 193 194 ... 222next
4701
General Software Discussion / Re: NirLauncher tools package
« Last post by skwire on December 03, 2009, 11:22 PM »
So, would some kind soul like to stare at the file and tell me where I've gone wrong please.

You saved that NLP file as a UTF-16 and the NirSoft Launcher can't read it.  Re-save it as UTF-8, remove the package from NSL and re-add it.  Should work then.
4702
Finished Programs / Re: DONE: automated mp3 rip from video clip
« Last post by skwire on December 03, 2009, 07:44 PM »
Thanks.   :)
4703
I've used NetMeter for years.  It has two types of tray icons you can choose from.
4704
Post New Requests Here / Re: DONE: Single Application Instance
« Last post by skwire on December 03, 2009, 02:52 PM »
Here you go.  Source/binary download
4705
Skrommel's Software / Re: Single Instance Problem with Firefox
« Last post by skwire on December 03, 2009, 07:56 AM »
Please see my solution here: https://www.donation....msg186725#msg186725
4706
Post New Requests Here / Re: DONE: Single Application Instance
« Last post by skwire on December 03, 2009, 07:53 AM »
Please try this bit of AHK code.  I've written it as a shell hook that should only allow one instance of Firefox to exist.

Code: AutoIt [Select]
  1. Gui +LastFound
  2. hWnd := WinExist()
  3. DllCall( "RegisterShellHookWindow", UInt, hWnd )
  4. MsgNum := DllCall( "RegisterWindowMessage", Str, "SHELLHOOK" )
  5. OnMessage( MsgNum, "ShellMessage" )
  6. DetectHiddenWindows, On
  7. SetTitleMatchMode, 2
  8.  
  9. ShellMessage( wParam, lParam )
  10. {
  11.     WinGetClass, myClass, ahk_id %lParam%
  12.    
  13.     If ( wParam = 1 ) ; HSHELL_WINDOWCREATED
  14.     {
  15.         If ( InStr( myClass, "MozillaUIWindowClass" ) )
  16.         {
  17.             WinGet, myList, List, ahk_class MozillaUIWindowClass
  18.             If ( myList > 1 )
  19.             {
  20.                 WinClose, % "ahk_id " . lParam
  21.             }
  22.         }
  23.     }
  24. }
4707
Site/Forum Features / Re: Feature Req: quote only selected text?
« Last post by skwire on December 02, 2009, 04:01 AM »
It works in the Quick Reply.  Highlight some text and click the "Quote" link.  You should see it down in the Quick Reply box.  In fact, you can keep selecting new text and clicking Quote each time to build out your quoted text.  Once you have all you wanted quoted, you can reply right there or click the Preview button to form your reply in the full reply page.
4708
Living Room / Re: Building a home server. Please help, DC!
« Last post by skwire on December 01, 2009, 05:47 PM »
I know I recommended it in your other thread but I'll recommend Windows Home Server once again.  I've used it since being part of the beta test and love it.
4709
Finished Programs / Re: Scan music collection for missing covers/artwork
« Last post by skwire on November 30, 2009, 11:58 PM »
It detects the album name by the mp3 files themselves though, doesn't it? My music collection is organized so all MP3s are named Authorname - Songname.mp3, in one single folder.

No, again, it doesn't know or care about the album name; it assumes each folder is an album and looks for certain named image files within said folder.  I have FAR too many tracks to keep them all in one folder.

It wouldn't take too much to write you a utility that will do what you want.  How do you have your cover art named currently?
4710
Finished Programs / Re: Scan music collection for missing covers/artwork
« Last post by skwire on November 30, 2009, 11:23 PM »
Oops, for some reason it wasn't copying correctly.  :-[

Ahh, great.  I thought that might be the case.

Suggestion: Could you add the ability to use it on a folder full of mp3s (no subfolders), and get the album name from the metadata?

CovArt Ops was designed from the start with the idea of one album per folder.  Therefore, it doesn't know or care about the actual album involved.  Did I misunderstand your suggestion?  If so, please explain it in more detail.
4711
Finished Programs / Re: Scan music collection for missing covers/artwork
« Last post by skwire on November 29, 2009, 11:36 PM »
Still reproducing the same error, even with the new version.

Are you positive you're using the new version?  Help, About should show "v1.0.9 build 1".
4712
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on November 29, 2009, 09:02 PM »
Is the Webdings font usable in a word processor?  Wordpad, for instance?  As for the reversed volume control...that seems to happen with certain Visual Styles. 
4713
Finished Programs / Re: Scan music collection for missing covers/artwork
« Last post by skwire on November 29, 2009, 08:30 PM »
Website | Download

v1.0.9 - 2009-11-29
    ! If shell extension is not supported under a certain OS/service pack, the
      menu option won't even appear.  (Thanks, choicefresh)


Thanks for the bug report.   :up:
4714
Finished Programs / Re: Scan music collection for missing covers/artwork
« Last post by skwire on November 29, 2009, 07:18 PM »
Which OS?
4715
General Software Discussion / Re: CNet's Security Starter Kit 2010
« Last post by skwire on November 26, 2009, 08:26 PM »
Kudos, mouser, that's beyond awesome.   :Thmbsup:
4716
Post New Requests Here / Re: IDEA: Standardize File Name With AHK Dialog Boxes
« Last post by skwire on November 24, 2009, 07:00 PM »
Consider the following:

Code: AutoIt [Select]
  1. ^t::
  2. {
  3.     Gui, Margin, 0, 0
  4.    
  5.     Gui, Add, MonthCal    , xm+0   ym+0   w185 h160 Border             vMyCalendar   gOnClick  ,
  6.     Gui, Add, Text        , xm+185 ym+5   w70  h20  Right 0x200                                , Reference #:
  7.     Gui, Add, Edit        , xm+260 ym+5   w50  h20                     vRefNo        gOnClick  ,
  8.     Gui, Add, Text        , xm+315 ym+5   w65  h20  Right 0x200 Number                         , Sequence #:
  9.     Gui, Add, Edit        , xm+385 ym+5   w20  h20                     vSeq          gOnClick  ,
  10.     Gui, Add, Text        , xm+190 ym+30  w200 h20  0x200                                      , Document Orgination And Ownership:
  11.     Gui, Add, DropDownList, xm+190 ym+50  w250 h150                    vOwnership    gOnClick  , Vendor||Company|Client|Other
  12.     Gui, Add, Text        , xm+190 ym+75  w200 h20  0x200                                      , Document Type:
  13.     Gui, Add, DropDownList, xm+190 ym+95  w250 h150                    vDocumentType gOnClick  , Invoice||Packing Slip|Purchase Order|Work Order|Check|Proofing Document|Film|Drop Ship Document
  14.     Gui, Add, Text        , xm+190 ym+120 w200 h20  0x200                                      , Initial Routing Direction:
  15.     Gui, Add, DropDownList, xm+190 ym+140 w250 h150                    vDirection    gOnClick  , Sent Out||Returned To Company|File Only
  16.     Gui, Add, Button      , xm+370 ym+165 w70  h20                                   gClipboard, Clipboard
  17.     Gui, Add, StatusBar
  18.     SB_SetText( "Ready.", 1 )
  19.     Gui, Show, AutoSize, Filename Standardiser
  20. }
  21.  
  22.  
  23. OnClick:
  24. {
  25.     Gui, Submit, NoHide ; Get current variable values.
  26.    
  27.     ; Handle "Document Orgination And Ownership" DDL.
  28.     If ( Ownership = "Vendor" )
  29.     {
  30.         myAbbr1 := "V"
  31.     }
  32.     Else If ( Ownership = "Company" )
  33.     {
  34.         myAbbr1 := "P"
  35.     }
  36.     Else If ( Ownership = "Client" )
  37.     {
  38.         myAbbr1 := "C"
  39.     }
  40.     Else If ( Ownership = "Other" )
  41.     {
  42.         myAbbr1 := "O"
  43.     }
  44.    
  45.     ; Handle "Document Type" DDL.
  46.     If ( DocumentType = "Invoice" )
  47.     {
  48.         myAbbr2 := "IN"
  49.     }
  50.     Else If ( DocumentType = "Packing Slip" )
  51.     {
  52.         myAbbr2 := "PS"
  53.     }
  54.     Else If ( DocumentType = "Purchase Order" )
  55.     {
  56.         myAbbr2 := "PO"
  57.     }
  58.     Else If ( DocumentType = "Work Order" )
  59.     {
  60.         myAbbr2 := "WO"
  61.     }
  62.     Else If ( DocumentType = "Check" )
  63.     {
  64.         myAbbr2 := "CK"
  65.     }
  66.     Else If ( DocumentType = "Proofing Document" )
  67.     {
  68.         myAbbr2 := "PD"
  69.     }
  70.     Else If ( DocumentType = "Film" )
  71.     {
  72.         myAbbr2 := "FF"
  73.     }
  74.     Else If ( DocumentType = "Drop Ship Document" )
  75.     {
  76.         myAbbr2 := "DS"
  77.     }
  78.    
  79.     ; Handle "Initial Routing Direction" DDL.
  80.     If ( Direction = "Sent Out" )
  81.     {
  82.         myAbbr3 := "S"
  83.     }
  84.     Else If ( Direction = "Returned To Company" )
  85.     {
  86.         myAbbr3 := "R"
  87.     }
  88.     Else If ( Direction = "File Only" )
  89.     {
  90.         myAbbr3 := "F"
  91.     }
  92.    
  93.     ; Format calendar to chosen datestamp.
  94.     FormatTime, myDate, % MyCalendar, yyyy-MM-dd
  95.    
  96.     ; Replace spaces with underscores if necessary.
  97.     StringReplace, Ownership   , Ownership   , %A_Space%, _, All
  98.     StringReplace, DocumentType, DocumentType, %A_Space%, _, All
  99.     StringReplace, Direction   , Direction   , %A_Space%, _, All
  100.    
  101.     ; Build filename from user input.
  102.     myFilename := RefNo . "_" . Seq . "_-_(" . myAbbr1 . myAbbr2 . myAbbr3 . ")_" . Ownership . "_" . DocumentType . "_" . Direction . "_" . myDate
  103.    
  104.     ; Populate filename field.
  105.     SB_SetText( myFilename, 1 )
  106. }
  107.  
  108.  
  109. Clipboard:
  110. {
  111.     Clipboard := myFilename
  112.     SB_SetText( "Filename copied to clipboard.", 1 )
  113.     Sleep, 1500
  114.     SB_SetText( myFilename, 1 )
  115. }
  116.  
  117.  
  118. GuiClose:
  119. GuiEscape:
  120. {
  121.     Gui, Destroy
  122. }

Personally, I would have used some coding shortcuts, but I wrote this with readability in mind since you mentioned you wanted to learn from it.  The filename is auto-generated as you type or select from the dropdowns.  Press the "Clipboard" button to copy the filename to your clipboard.  Please let me know if you have any questions.
4717
Finished Programs / Re: DONE: automated mp3 rip from video clip
« Last post by skwire on November 24, 2009, 04:13 PM »
I run Blackbox as well and see the tooltips just fine.   :huh:  It should show up right at your mouse cursor.
4718
Finished Programs / Re: DONE: automated mp3 rip from video clip
« Last post by skwire on November 24, 2009, 10:23 AM »
The only small thing i could think of would be some sort of message popping up when it was finished - as it works unseen in the background, but hell, people shouldnt fall asleep! they can easily see the extra file appear!

Hmmmm....I did use a tooltip to show that the app is processing the file and when it's done.  Do you not get the tooltip?
4719
Living Room / Re: You have a computer backup plan.. but does it work?
« Last post by skwire on November 24, 2009, 10:19 AM »
I have used Windows Home Server as my backup/fileserver solution since its inception (I was part of the beta test group).  I can't say enough good things about it.  I don't use a pre-built box; I bought the software and built a box specifically for it.
4720
DC Website Help and Extras / Re: Show Unread Posts
« Last post by skwire on November 24, 2009, 10:07 AM »
FWIW, I do the same thing as f0dder.
4721
Finished Programs / Re: DONE: automated mp3 rip from video clip
« Last post by skwire on November 24, 2009, 09:11 AM »
I used the MEncoder executable from the MPlayer package here: http://www.mplayerhq.hu

The command line that I used is similar to: mencoder.exe somefile.flv -of rawaudio -oac mp3lame -ovc copy -o somefile.mp3

I could tweak the MP3 settings if you'd like (bitrate/cbr/vbr) but I was trying to make this as simple as possible for your sister.  About the only other thing I can think to add would be to handle multiple files dropped on the executable (it only handles one for now).  Let me know what you want...
4722
Finished Programs / Re: DONE: automated mp3 rip from video clip
« Last post by skwire on November 23, 2009, 03:25 PM »
Website | Download

v1.0.0 - 2009-11-23
    + Initial forum build.


main.png


Instructions:
1) Drag & drop a video file onto this executable file.
2) An MP3 file will be created in the same directory as the executable.
3) It will use the same name as the dropped video file except with an mp3 extension.

I tested it with an AVI, MPG, and FLV file.  Obviously, the larger the file, the longer it will take to extract and produce the MP3.
4723
Finished Programs / Re: DONE: automated mp3 rip from video clip
« Last post by skwire on November 23, 2009, 01:21 PM »
I can probably whip something up to do this.  Do you have any sample video files you'd like me to work with?
4724
Your problem is related to the fact that FARR is not unicode-capable.
4725
Post New Requests Here / Re: IDEA: Minimized Apps Render As Desktop Icons
« Last post by skwire on November 23, 2009, 10:49 AM »
I don't know if you're a programmer at all but I think the issue here is that this is not nearly as easy as it might seem.
Pages: prev1 ... 184 185 186 187 188 [189] 190 191 192 193 194 ... 222next