topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Monday April 29, 2024, 2:42 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

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 - lanux128 [ switch to compact view ]

Pages: prev1 2 3 4 5 6 [7] 8 9 10 11 12 ... 251next
151
N.A.N.Y. 2014 / Re: NANY 2014 Release - epCheck
« on: November 11, 2014, 11:54 PM »
omg, a monthly view! thanks for this major update, skwire! :Thmbsup:

152
you can use GroupAdd and #IfWinActive to achieve what you want.

here's an example.
Code: Autohotkey [Select]
  1. GroupAdd, $NoRightClick, Foxit PDF Editor        
  2. GroupAdd, $NoRightClick, ahk_class Notepad
  3. GroupAdd, $NoRightClick, ahk_class IEFrame
  4.  
  5. #IfWinActive ahk_group $NoRightClick
  6. ;Disable right click
  7. RButton::Return

153
Screenshot Captor / Re: feature request for auto-screenshot
« on: November 03, 2014, 04:38 AM »
1) is there a possibility to add the "auto-screenshot" option?
it will allow to auto-create screenshots (silently, in the background) every "specified quantity" of seconds/minutes...

at a quick glance i can see that feature #1 is already available in the app (see images).

Fig. 1
Screenshot Captor Options_2014_11_03_001.png

Fig. 2
Screenshot Captor Options_2014_11_03_002.png

154
that was it! what a memory you have  :up:

Spoiler

;D

155
I can't remember what the history was regarding the Ctrl+O hotkey inside FARR.. I'm going to have to go back and look..

if i recall correctly, it was removed because it was causing problems for Polish users who needed to type the "ó" character.

156
1. copy paste into an editor
2. save as (e.g.) CopyAppend.ahk

but... then what?

like,
- where to put?
- how to activate when launching portable.. CHS?
- how to de-activate?

if you don't have Autohotkey (AHK) installed, then you can download and install it first.

the snippet i posted was meant to be part of a larger script but since then i have made some changes to suit your needs.

- where to put?
you can put it in the same folder as the exe file of CHS.

- how to activate when launching portable.. CHS?
when you launch the script, it will check and start CHS for you.

- how to de-activate?
press Ctrl+Alt+End to pause the script (toggles on/off). if you want to exit the script, you can right-click on its icon in the system tray and choose 'Exit'.


hope this helps..

157
if you don't mind an interim solution, the following ahk script can do what you want.

use ctrl+alt+c to append text into clipboard, comes in handy when collating info from different sources.

Code: Autohotkey [Select]
  1. ^!c::
  2. ; Source: http://www.biancolo.com/
  3. ; Appends selection to clipboard
  4. bak = %clipboard%
  5. clipboard = ; Empty the clipboard
  6. Send, ^c
  7. {
  8.     TrayTip, MyAHK, The attempt to copy text onto the clipboard failed.,1
  9.     SetTimer, RemoveTrayTip, 5000
  10.     Return
  11. }
  12. clipboard = %bak%`r`n%clipboard%
  13. Return
  14.  
  15. RemoveTrayTip:
  16. SetTimer, RemoveTrayTip, Off
  17. Return

158
Post New Requests Here / Re: Power Cord Falling Out
« on: October 31, 2014, 01:18 AM »
scancode wrote this some time back - BatteryStatus.



https://www.donation....msg181616#msg181616

159
thanks for the write-up, Edvard! :Thmbsup:

160
Moo0 RightClicker Pro is similar to FileMenu Tools, but pay-ware.  FileMenu Tools is donation-ware.

yeah, looking back you had already mentioned about this software in a previous thread.

161
another candidate for you to try. Moo0 RightClicker Pro 1.53 (Free to Try).

Enhance Your Context Menu Intensively

Moo0 RightClicker Pro is a set of enhancements on the context menu (right click menu) of Windows Explorer. It adds many useful functionalities like duplicating current explorer window, open/move to/copy to bookmarked folders, hiding default context menus, and so forth.

http://www.moo0.com/...ftware/RightClicker/

162
Excellent question bernie.  And good guess stephen -- but not quite correct.  Who can guess (moderators not allowed to try), how the spammers were caught who didn't make a post (or even try to make a post)?
lol, my lips are sealed.. ;D

Only cause you don't know :P
good effort! now try again.. :P

163
Excellent question bernie.  And good guess stephen -- but not quite correct.  Who can guess (moderators not allowed to try), how the spammers were caught who didn't make a post (or even try to make a post)?
lol, my lips are sealed.. ;D

164
sounds like a corrupted thumbnails cache, you can try resetting the cache.

found a tutorial via google.
http://www.sevenforu...che-clear-reset.html

165
Thanks a million!  It's bothered me for years, but small, like a really, really tiny splinter.

you're welcome and should have posted sooner, the "splinter" wouldn't have bothered you this long.. :)

also take a look here, it might give you more ideas on expanding Farr's usage.

• FARR V2 core alias tables - https://www.donation...dex.php?topic=9342.0

166
in that case, you can use an alias to invoke the options from Farr's main window. however instead of using Ctrl+O, you just type 'o' and press 'Enter'.


1000>>>o>->Options | restartsearch gooptions /ICON=icons\Core-Farr.ico>+>^o$


more info
the above alias was adapted from the default 'helpfarr' alias.

Farr_2_2014_10_27_001.png


167
if you don't mind using an alias to complement the plugin, the following alias will do what you want.

Edit Group Alias_2014_10_26_001.png


for easier copy-pasting, you can copy the following text and import into Farr's alias section.

1000>>>FarrCalc>->dosearch fc $$1>+>^=(.*)

note: you may have to restore the plugin's default regex.

168
you can add your own hotkey to call up Farr's options (see pic below).

Hotkey Configuration_2014_10_26_001.png

169
Found Deals and Discounts / Re: Hard Disk Sentinel Pro 4.40 - *FREE*
« on: October 22, 2014, 07:26 PM »
thanks for the heads-up! :up:

170
Screenshot Captor / Re: Screenshot captor locks files in explorer
« on: October 15, 2014, 06:31 AM »
i think mouser meant "saving and loading files" section..

Screenshot Captor Options_2014_10_15_001.png

171
have you tried Nirsoft's OutlookAttachView?

Scanning Outlook Attachments of External PST Files
If you want to search an attachment in one or more PST files that are not loaded in your Outlook profile, you can use the following trick:

1.    Go to Control Panel -> Mail and choose 'Show Profiles'
2.    Click 'Add' to create a new profile.
3.    Fill the email account information with faked details (You can delete it afterwards)
4.    After the profile is created, double click on the profile, and in the profile properties, click 'Data Files' and add the desired PST files that you wish to scan.
5.    Also, you can click the 'E-mail Accounts' button, and remove the faked account that you previously created.
6.    In the Mailbox Scan Options of OutlookAttachView, choose 'Allow me to choose the profile' in the Outlook Profile option.
7.    When you are asked to choose the profile, you should choose the profile that you created, and OutlookAttachView will scan the PST files that you added into it.
-website

http://www.nirsoft.n...look_attachment.html

172
Living Room / Re: Who is your Favourite "Doctor"?
« on: October 05, 2014, 09:31 PM »
need i say more? 8)

Spoiler
the one and only - Tom Baker!



173
Screenshot Captor / Re: Directory location
« on: October 05, 2014, 09:23 AM »
@Grayp:

The ConfigDir.ini would be in the folder where ScreenshotCaptor.exe is installed. the default installation path will be either in "C:\Program Files" or "C:\Program Files (x86)".

174
Screenshot Captor / Re: Directory location
« on: October 05, 2014, 06:06 AM »
@Grayp:

look for a file called "ConfigDir.ini" and if it is not there then open the file called "ConfigDir_Sample.ini". before editing this file, it is best you exit Screenshot Captor. after making the changes that you wanted, save the file as "ConfigDir.ini" and start Screenshot Captor.

in any case, i am attaching a sample. take a look and modify it to suit your needs.

175
sorry, couldn't find from the docs but is there a way to display the floating window in a fixed size? e.g. with a dimension of 320x480 or a ratio of 4:3.

Pages: prev1 2 3 4 5 6 [7] 8 9 10 11 12 ... 251next