|
102
|
DonationCoder.com Software / Post New Requests Here / Re: IDEA: small plugin-toolbar (or similar) audio player in Windows Explorer
|
on: March 14, 2013, 06:20:29 PM
|
Welcome to the DonationCoder site, goldencut. ANY feedback would be nice at this point - it's too complicated, it's impossible, it's been done already, it's stupid... anything... While I like your idea, what you're asking for is a lot more complicated than you might think. First of all, anything you write is, technically, outside of Windows Explorer. This mean that a developer will have to consider all the different versions of Windows Explorer (2000/XP/Vista/W7/W8 + 32/64-bit of each) along with all of their different capabilities, limitations and idiosyncrasies. Furthermore, the shell context menu has its own set of capabilities, limitations and idiosyncrasies to deal with across the different Windows versions as well. It's a real mess. Let's say you decide to do this anyway. Now you have to deal with the fact that your interface is separate from your playback engine which, in and of itself, isn't a bad thing. However, in this case, you don't have access to the innards of the interface so you're forced to use an intermediary, i.e. a service, API calls, window messages, etc. This can be very limiting and very frustrating to work with. For what it's worth, I've written an audio player called Trout that some folks here at DC have come to like. I could not imagine trying to write such a player without designing, and having full access to the user interface code, myself. I hope this made some semblance of sense. =]
|
|
|
|
|
107
|
DonationCoder.com Software / Finished Programs / Re: IDEA: Have list of URLs, and, in Chrome, manually load one, then next, etc.
|
on: March 12, 2013, 06:40:20 PM
|
No, it's not like what you think. In fact, it's rather inelegant. Here's a commented snippet that should explain things: Formatted for Autohotkey with the GeSHI Syntax Highlighter [ copy or print] myURL := "myURLsArray" . _URLnum ; Dereference the variable. SendInput, ^l ; Send a Ctrl+L hotkey to focus the address bar. Works for FF, IE, and Chrome. SendInput, % %myURL% ; Send the actual URL text. Sleep, 750 ; Small wait time to allow for long(er) URLs. SendInput, {ENTER} ; Send and Enter keystroke to load the page.
Make more sense now? A hack, pretty much. 
|
|
|
|
|
108
|
DonationCoder.com Software / Finished Programs / Re: IDEA: Have list of URLs, and, in Chrome, manually load one, then next, etc.
|
on: March 12, 2013, 05:33:23 PM
|
Thanks, Skwire, for the AHK script! You're welcome. Is that script good enough for your purposes? If so, I'll mark this thread as done.
|
|
|
|
|
112
|
DonationCoder.com Software / Finished Programs / Re: IDEA: Have list of URLs, and, in Chrome, manually load one, then next, etc.
|
on: March 12, 2013, 01:28:15 PM
|
Here's a basic AHK example that seems to work in Firefox, IE, and Chrome. Run it, focus your browser, and use Ctrl+Right and Ctrl+Left to cycle through the list. Of course, change the URL list to suit. Formatted for Autohotkey with the GeSHI Syntax Highlighter [ copy or print] myURLs = ( http://www.donationcoder.com http://www.filehippo.com http://www.arstechnica.com ) ^Right:: { myCounter++ % ( myCounter > myURLsArray0 ) ? ( myCounter := 1 ) : () URL_GoTo( myCounter ) } ^Left:: { myCounter-- % ( myCounter < 1 ) ? ( myCounter := myURLsArray0 ) : () URL_GoTo( myCounter ) } URL_GoTo( _URLnum ) { myURL := "myURLsArray" . _URLnum }
|
|
|
|
|
114
|
DonationCoder.com Software / Finished Programs / Re: File2Folder problem
|
on: March 10, 2013, 06:00:15 PM
|
Hi, darylbaz, and welcome to the DonationCoder site. At the risk of sounding like a jerk  , it means what it says; Files2Folder is unable to create the folder it needs to move your selected files into. Is the folder UAC-protected? Or, is it a network folder that you don't have permissions to create a folder in? Does F2F work in other folders for you?
|
|
|
|
|
115
|
Main Area and Open Discussion / General Software Discussion / Re: tool to check if TIFF files compressed ?
|
on: March 08, 2013, 02:00:54 PM
|
Website | Download v1.0.7 - 2013-03-08 + Added "Samples/Pixel" and "Bit Depth" columns (Thanks, Paul) + Added "Clear list" and "Always on Top" toolbar buttons. + Added "Copy" functionality to the Edit menu and Ctrl+C hotkey. This allows you to copy the selected files to the clipboard for pasting elsewhere using a file manager. (Thanks, Paul) * Changed "Bits" column name to "Bits/Sample." ! Fixed refresh issue when using a dropped folder. ! Resolution column data wasn't cleared properly.
|
|
|
|
|
116
|
Main Area and Open Discussion / General Software Discussion / Re: Outlook synching
|
on: March 07, 2013, 06:46:12 PM
|
|
The easiest solution is going to be switching those POP account to IMAP. Even Yahoo offer IMAP access these days.
imap.mail.yahoo.com (use SSL IMAPS on port 993) smtp.mail.yahoo.com (use SSL SMTPS on port 465)
Trying to synch up POP accounts across multiple computers is an exercise in absolute frustration (as you've found out).
|
|
|
|
|