Topics - brotherS [ switch to compact view ]

Pages: prev1 ... 51 52 53 54 55 [56] 57next
276
Screenshot Captor / Arrow Object bug
« on: September 26, 2005, 05:05 AM »
I just tried that option for the first time and was VERY confused, since the arrow wasn't drawn FROM start TO end but vice versa (pointing to the *starting* point)!? I'd understand it if this would be an Arabian program, could you fix that please?
:-[

277
Hi :)

In Firefox it's possible to just use Ctrl and + to increase or Ctrl and - to decrease the font size. Since I can't always use Firefox instead of IE I would like to have the same Firefox comfort in IE (at least for size changes). I think it would be possible with AutoHotkey since it's possible using the mouse or the menu already - but just not with one or two keys :-/

Looking forward to answers!

278
Finished Programs / DONE: move around windows with keys + extra feature
« on: September 20, 2005, 08:26 AM »
Hi!

I don't remember where exactly I found this great script, maybe it's even skrommel's code :)

It works perfectly, I just miss ONE feature. The script should not only move the window but the mouse cursor with it, to prevent that the window would move away from beneath the cursor.

Thanks in advance! :up:

;move active window around with Windows+l/r/up/down
; move active window xx pixels right
#right::
   wingetpos x, y,,, A   ; get coordinates of the active window
   x += 30           ; add this distance to the x coordinate
   winmove, A,,%x%, %y%  ; make the active window use the new coordinates
   return              ; finish

; move active window xx pixels left
#left::
   wingetpos x, y,,, A
   x -= 30
   winmove, A,,%x%, %y%
   return

; move active window xx pixels up
#Up::
   wingetpos x, y,,, A
   y -= 30
   winmove, A,,%x%, %y%
   return

; move active window xx pixels down
#Down::
   wingetpos x, y,,, A
   y += 30
   winmove, A,,%x%, %y%
   return

279
Hi,

since the day I virtually completely stopped listening to mp3 files and started to listen to live streams only I'm searching for a tool like this! Reason why: I'm listening to about 7 streams - and while most of them DO have a schedule it happens that a live show is delayed or canceled or another show comes up unexpected - so I have to stop listening to the stream I'm listening to, only to check what the other streams are playing... This is what Shoutcast Overview (just a suggestion for a name that would give good Google results) should do and look like:

  • a tiny window with no menues on the desktop
  • the window would show the shoutcast titles for a number of chosen streams
  • in the window, there would be an on/off switch for every visible entry
  • right-clicking the window or the tray icon will give you a menu for options/quit/etc.
  • there should be an option to turn off the taskbar 'icon' (so that you'll only have the tray icon)
  • in the options you would set the interval of the title updates, like: a) wait X seconds before checking next stream and b) wait Y seconds before start with the first active stream again
  • the options should allow to import single (not all!) entries from a Winamp playlist (ASCII)
  • in the options, there would be a show/not-show switch to change the visibility of the entries in the desktop window

You see that I gave it quite a thought already :) Would be really, really great if someone would code it! :up:

If there should be any questions about how to code the shoutcast part of the tool, I bet there are folks willing to help available in the Winamp forum.

Also, since there are millions of shoutcast and Winamp users, this could also mean quite some attention for DonationCoder.com if you list the tool in places like http://fileforum.betanews.com/ and tell some popular freeware/shareware news sites about it.

Thoughts and feedback please! :)

280
Screenshot Captor / v2.00.09 suggestions
« on: September 16, 2005, 07:57 AM »
Hi,

some new ideas :)

- auto-clear preview window
I find it a bit confusing that the last image captured will still be shown in the right part of your program even if you have deleted or moved it to another location

- make Preferences window stick in the foreground or open as a new window that you'll see with Alt-TAB
since I use the "mouse cursor over a window will focus that without clicking" option of Windows you should either a) move the mouse cursor over the "OK" button when opening the preferences b) make that window stick to the foreground or c) open as a new instance (I'd vote for a)

- ESC should close Preferences window
the title says it all :)

Thanks!


Pages: prev1 ... 51 52 53 54 55 [56] 57next
Go to full version