topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Saturday April 18, 2026, 1:42 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

Recent Posts

Pages: prev1 ... 76 77 78 79 80 [81] 82 83 84 85 86 ... 251next
2001
congrats to all winners. :Thmbsup: Monkey Dash sounds like a cool game..
2002
Lanux128, can do if you pm me please
tony

thanks tony, have sent you a PM.
2003
since the offer is still available, i'd like to jump on the band-wagon too. will someone in Down Under please gift it to me? i'll reimburse either in DonationCredits or PayPal.

my user-id
my steam user-id is lanux128

2004
@Gimpymoo: glad to see that you've managed to grab the offer. :up:
2005
sounds like a good tool. best wishes to the future winner. :up:
2006
General Software Discussion / Re: how can I convert swf files to avi?
« Last post by lanux128 on July 24, 2009, 08:20 AM »
good idea, there's no point in this thread going on..
2007
that's strange. i'm not in Australia but the price is still $0.10 maybe they fixed the webpage..

firefox.exe_2009-07-24_001.png
2008
General Software Discussion / Re: Harvest email addresses?
« Last post by lanux128 on July 23, 2009, 08:41 PM »
yeah, i feel bad that you have to handle this request. if you know him well, then some subtle hint would help. e.g. when he emails these 'clients' they are likely to wonder how your friend got their email addresses and that would mean a whole lot of explaining later.
2009
General Software Discussion / Re: Harvest email addresses?
« Last post by lanux128 on July 23, 2009, 09:12 AM »
sorry to say but this request does not give out a good impression. even though the intention may have some positive signs to it but the manner/method leaves much to be desired. i, for one wouldn't like my email to be 'harvested' by potential clients. if he/she wants to do business with me, all they have to do is ask. just my thoughts.
2010
Screenshot Captor / Re: Capture multiple objects simultaneous
« Last post by lanux128 on July 21, 2009, 10:17 PM »
this was requested before and i wonder if mouser has changed his mind since then..
2011
Screenshot Captor / Re: Should I add simple scanner features to SC?
« Last post by lanux128 on July 21, 2009, 09:35 PM »
so far so good.. it detects my scanner (TWAIN) and managed to scan a few documents and images. the scanning toolbar is still sparse but it's WIP, i understand. maybe the detection routine can calculate the dimension of the paper/poster placed in the scanner a bit more accurately, this will help in less cropping later on.

for the record, one has to go to 'Preferences' to enable the scanning mode, then the 'Scan' menu item will appear.

Scan - 22_07_2009 , 10_26_32 AM_ver001.png
2012
Screenshot Captor / Re: Should I add simple scanner features to SC?
« Last post by lanux128 on July 21, 2009, 09:06 PM »
also on the 'change folder' matter, i use the control key on the 'Move to' menu item to quickly change directories. imo it'd be helpful if this feature is made a bit more conspicuous . e.g. when pressing the Control key, the letters 'Move' morph into 'Change' or upon the mouse hovering over the menu item, a hint can appear in the status-bar

anyway, i'm downloading new version now. wow, i can't believe you also included WIA method, this will come in handy on my Win7 PC. :up:
2013
General Software Discussion / the best hand-held pdf reader?
« Last post by lanux128 on July 21, 2009, 07:50 AM »
i've been accumulating e-books for some time now, but i can hardly find the time to read anymore since it means being stuck to my desktop. hence, my question - what is a good hand-held pdf reader that is not Kindle? i'm looking for a product that is readily available, with decent screen size and good battery life.
2014
Screenshot Captor / Re: Should I add simple scanner features to SC?
« Last post by lanux128 on July 21, 2009, 06:11 AM »
this is going to be a fantastic feature for SC. thanks mouser.. :Thmbsup:
2015
Find And Run Robot / Re: No plugins with farr
« Last post by lanux128 on July 21, 2009, 06:08 AM »
as someone who has been using Windows 7 RC for some time, i'd like to add that Farr works very well with Win7. kudos to mouser. :Thmbsup:
2016
Screenshot Captor / Re: Should I add simple scanner features to SC?
« Last post by lanux128 on July 21, 2009, 04:16 AM »
i think it's a great idea, i already can see how this can fit into my daily workflow. since image management is one of SC's strength, the scanned documents/images can be viewed right within the main window.

of course, any scanning feature is boosted with some sort of OCR recognition so that scanned TIFF can be searched if they are to saved as PDF files. this reminds me that the ability to preview PDF files as thumbnails in SC's pane is also a great productivity enhancer. this way one can throw in a few receipts/invoices etc. to be scanned, which are then viewable and searchable. just my thoughts.
2017
General Software Discussion / Re: powerpoint to dvd software
« Last post by lanux128 on July 20, 2009, 08:53 AM »
a topic with a title like this is bound to attract spam. since techidave's request had already been fulfilled by city_zen (post #4), perhaps it's best to lock this thread and refer all future queries to this one. :-\
2018
General Software Discussion / Re: What would you experts use?
« Last post by lanux128 on July 20, 2009, 08:12 AM »
i second what tinjaw mentioned. since you're already using Farr, you can just add plugins like TinyEverything (filename based searches) and Farr Windows Search (content-based searches). also another plugin that could benefit you is GooglePlus which shows you the Google search results in FARR as you type.
2019
Post New Requests Here / Re: move mouse to active window
« Last post by lanux128 on July 19, 2009, 11:38 PM »
this code moves the cursor to any active window if switching between apps on the primary and secondary monitor and among apps on the secondary monitor. however if you're switching among apps on primary screen, the cursor is left alone.

i had to put in some manual methods to achieve what i wanted, maybe it will be useful to someone..

;assume it's a 2-monitor setup
SysGet, Mon2, Monitor, 2

~!Tab::
KeyWait, Alt
KeyWait, Tab

WinGetActiveStats, getTitle, width, height, x, y
If x >= 1440  ; 2nd monitor as 1st monitor's res is 1440
{
  center_x:=(Mon2Right-Mon2Left)/2
  center_y:=(Mon2Bottom-Mon2Top)/2
}
Else If (x >= 0 and x < 1440) ; 1st monitor
{
   MouseGetPos, cur_x, cur_y
   If (cur_x >= 0 and cur_x < 1440)
    {
     center_x:=cur_x
     center_y:=cur_y
    }
  Else
    {
   center_x:=x+width/2
   center_y:=y+height/2
    }
}
Else If x < 0
{
; do nothing as it's probably minimized
}
MouseMove,center_x,center_y,

Return
2021
General Review Discussion / Re: Opinions on remote PC control software
« Last post by lanux128 on July 19, 2009, 08:52 AM »
for no-frills connection, i often opt for Ammyy Admin.

http://www.ammyy.com/
2022
Find And Run Robot / Re: How to make a web search in FARR
« Last post by lanux128 on July 19, 2009, 12:01 AM »
here is the search query to get you started, just substitute the search_string with your own search query.

http://www.thetvdb.c...n=Search&string=search_string
2023
General Software Discussion / Re: Alternatives to DragKing
« Last post by lanux128 on July 16, 2009, 02:13 AM »
what is wrong with the existing version?
2024
Find And Run Robot / Re: start disk search only after several characters?
« Last post by lanux128 on July 14, 2009, 11:52 PM »
if your list of shortcuts are static, you can always create an alias for them so that they can invoked as you wanted. check out this thread and see 'Aliases' section.
2025
Find And Run Robot / Re: start disk search only after several characters?
« Last post by lanux128 on July 14, 2009, 11:43 PM »
ok, i must have jumped the gun after reading only the title..
Pages: prev1 ... 76 77 78 79 80 [81] 82 83 84 85 86 ... 251next