topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Sunday April 28, 2024, 1:40 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 - nitrix-ud [ switch to compact view ]

Pages: prev1 ... 12 13 14 15 16 [17] 18 19 20 21 22 23next
401
Find And Run Robot / seems like FARR v2 public release is coming !
« on: August 31, 2007, 01:11 PM »
i'm looking forward to it !!!!

Good luck mouser  :Thmbsup:

Nitrix

402
When I add in a directory to the Search Folders tab, can I specify only to search specific extensions? And if I do, does this increase performance compared to searching all files? Thanks.

unfortunately no, but this would make a great addition

when i switched from Launchy to FARR that was one of few things i missed...
it kind of cleans up results... when you specify specific extensions... (for example i'd like to exclude .url files for my "start menu programs" folder...)

403
Find And Run Robot / Re: [bug report]
« on: August 29, 2007, 11:22 AM »
@mouser,

sorry to bother you mouser, but since i know FARRv2 public release is coming fast,
i'd like to make sure this issue is not lost in all your todos...

i just crashed FARR because of this issue, i really think this should be on your top list  :-[

Keep up the good work  :Thmbsup:

Nitrix

404
IMHO (as a web designer) this would make a very very good feature pour Adobe Photoshop CS4  :Thmbsup:

405
Find And Run Robot / Re: what is happening in this key sequence?
« on: August 25, 2007, 05:15 AM »
@mackal
thanks ! wonderful regex

@mouser,
i think mackal should be a contributor to the advanced FARR hacking guide :D

406
Fn keys are not directly supported by AHK but there is a way to make them useable, i posted about it in this thread..


thanks lanux but unfortunately my Fn key is not captured at all...
 :(

407
WinSet, Transparent, <value>, A

to point at the currently active window.  Without it, it refers to Last Found Window, which apparently is not set by anything in the scripts so far (according to docs).

when you use the #IfWinActive directive, then the active window is necessarily the one which is active, therefore no need for "A"

of course since you want a global hotkey for any windows, using A is needed

408
@mackal

try to add this line :

SetTitleMatchMode 2

so you have :
SetTitleMatchMode 2
#IfWinActive,  Find and Run Robot v2 ahk_class TMainForm
RAlt::
if (wintrans != 1) {
WinSet, Transparent, 100
wintrans = 1
}
return
RAlt Up::
wintrans = 0
WinSet, Transparent, Off
return
#IfWinActive


the title of FARR starts with a space
{space}Find and Run Robot v2
problem is you can't add a space in the following code :
#IfWinActive,  Find and Run Robot v2 ahk_class TMainForm
compilation error

help of settitlematchmode :
http://www.autohotke...etTitleMatchMode.htm

409
there is just not enough keys...

i'd like to use my Fn key (i'm a notebook user) but never managed to make it work...

410

#IfWinActive,  Find and Run Robot v2 ahk_class TMainForm
RAlt::
if (wintrans != 1) {
WinSet, Transparent, 100
wintrans = 1
}
return
RAlt Up::
wintrans = 0
WinSet, Transparent, Off
return #IfWinActive

this works for me, hold down right alt key to make FARR transparent


#IfWinActive,  Find and Run Robot v2 ahk_class TMainForm
RAlt::
WinSet, Transparent, 100
return
RAlt Up::
WinSet, Transparent, Off
return
 #IfWinActive
works looks simpler but is too Cpu intensive when you hold down the hotkey
 

411
Find And Run Robot / Re: what is happening in this key sequence?
« on: August 24, 2007, 03:20 AM »
^tor(?:rent)? (?:(.*) -- (.*)|(.*))()

;D whouah !
this is really one wicked regular expression

Thanks for the tip Mackal !  :Thmbsup:
works great

but there are still problems :
Another way is to use $$c in an alias command which will use the $$1 regular expression field IF it exists, or else clipboard if not.
the $$cc variable does not work here since you want $$c to be $$1$$3
@mouser, is there a way to make $$c be $$1$$3 or clipboard content ? maybe thanks to new variables ?
%$$c|$$1$$3%
  :D

an other way is to use $c :
tor $c -- mini
not as convenient though

Nitrix


412
Find And Run Robot / Re: what is happening in this key sequence?
« on: August 23, 2007, 04:55 PM »
So for example instead of:
^tor (.*)
You would match on
^tor (.*) [--(.*)]?

i could not make this to work but i'm really interested in making the filter optional
anyone knows how to solve that ?

413
Find And Run Robot / Re: what is happening in this key sequence?
« on: August 23, 2007, 04:33 PM »
Having said that i think it's smarter to add a generic way of applying result filtering to regular expression results and so i will add it, just have to decide on the special characters to use for it.

those are all very good ideas !

another suggestion :
a second edit box below the search box or on the right... (optionnal of course ;))
the tab key would cycle through the search box, the filter box, the result (if tab autocompletes is unchecked)

the workflow would be amazing
example :
search keyword {TAB} goo
yubnub keyword {TAB} imdb

That would be so GREAT  :D
please do that  :P

in case you don't do it, i would use this autohotkey script
#IfWinActive,  Find and Run Robot v2 ahk_class TMainForm
Tab::
SendPlay, {Space}--
return
 #IfWinActive


Cheers, nitrix

414
I associated ".EXE" with a batch file. You may not have realized this was possible, but it's just like associating a ".MP3" with Winamp.exe. You can associate ".EXE" with some program, which then becomes responsible for launching what you want to launch.
nice idea

just to make sure you know... you can create a special alias which would "associate" exe files with your batch file, using the action keyword trick

from the help :
A new feature with FARR version 2 is the ability to specify alias names in your search string using the + prefix (just like keyword modifiers).

When an alias name is specified in this way, anywhere on the search string, it does not effect search, but it will cause the alias results to be displayed AFTER the result file is selected, with the selected file name as argument $$1 in the alias.

In this way, you can perform a normal file/folder search and then launch a specific alias command with that file/folder as an ARGUMENT.

For example, you could create an alias named +hexedit

whose result contents are:

C:\Program Files\HexEditors\HexEdit.exe "$$1"

 Now you can type in your search:

+hexedit mydocsearch...

As you type mydocsearch words, FARR will let you search for files as normal.
After you choose the result, instead of launching the result file, you will be presented with
C:\Program Files\HexEditors\HexEdit.exe "SELECTEDFILE"
Which you can then launch.

NOTE:
You can use the same keyword for both alias names and search/scoring keyword modifiers.


Right then, so now whenever I start a program via ANYTHING, it opens with my little batch file.
of course it does not work with ANYTHING


just my two cents
Cheers, Nitrix

415
Maybe FARR should refresh system PATH (and other???) variable(s) each time it starts (with BREAK key).

i hope this would not slow down FARR
since this is only required after installing a new software...

@mouser, why not create a command just to do that,  say ... refreshfarr
no need to refresh the system PATH everytime FARR is invoked...

just my two cents...
(but i think speed is really really important for FARR  :D)

416
Find And Run Robot / Clipboard Help and Spell formatting ?
« on: August 20, 2007, 10:29 AM »
Hi mouser,

i think it would be great to (re)use CHS formatting capabilities...

could you make a command-line utility using CHS formatting capabilities to format the clipboard content (using .format files)

like so, for example :
CHSformat.exe myspecialformatting.format

i think it would be great in conjunction with FARR (using an alias or searching batch files) or with any other launcher by the way...

I don't know if it has already been done :huh:

anyone aware of such tools ?

Cheers, Nitrix

417
back to the first post :
what i'd like to do is Play my selected folder, keep FARR opened (thanks to /stayopen) THEN go back to the result list (to be able to enqueue further albums...)

how could we do it ? i thought through a restartsearch command.... (see capture)
maybe restartsearch $$searchbox

the thing is, the result list (all the albums) must be still there (i guess), so we don't want to really RESTART the search, since it could take a few seconds (even more on a network drive)

this feature is a MUST (IMHO) ... to be able to go back to the result from the action list
if you search music on a network drive for example, it can take up to 10 seconds, so it would be great to be able to enqueue multiple albums

(EVEN BETTER, it would be great if one could select multiple results and perform actions with them... for FARR v3)

418
Find And Run Robot / Re: [bug report] can't see alias
« on: August 19, 2007, 01:32 PM »
great thanks  :Thmbsup:

419
Find And Run Robot / [bug report] can't see alias
« on: August 19, 2007, 09:51 AM »
Hi Mouser
i noticed a new bug concerning the aliases

in a read-only alias file, you just can't see aliases

if you want to see an alias (by double-clicking it) it says you can't add or delete a read only alias

see capture
farr.png

420
Find And Run Robot / Re: FARR Speed Dial
« on: August 16, 2007, 04:22 PM »
nice idea

i think it is somehow related to this feature idea i'd like to see (which would be an extension of the new showmemo command)
https://www.donation...38.msg69503#msg69503


421
Great to see a new release is out !

so using 2.00.140, i noticed (is it new ?) that when you invoke FARR you can briefly see the previous search in the search box.

Fixed error where you were unable to delete user aliases and instead got an error about them being readonly.
that's great, i will be able to clean up my aliases a little !

Added a slight delay when triggering hotkey with the copytext option, to give more time for the copy to work.
could you make this delay an option (even through a file) i noticed quite a difference...
it's no big deal for me since now i use autohotkey before invoking FARR (when i'm using FARR with aliases)
this little peace of ahk code works wonders :
clipboard =
SendPlay ^c
ClipWait, 1
there is no delay per se, since clipwait ends when it detects clipboard content
(could you do something similar ?)

Keep up the good work
Cheers, Nitrix

PS: :( i'm still waiting desperatly for a fix concerning the "too smart action modifier"
first thing i checked after the update...

second was is the search box free again ?  :D

422
Find And Run Robot / [tip] paste command + %cliptext%
« on: August 15, 2007, 05:16 AM »
the paste command is really nice...

for example you can create the bbcode alias (just call the alias bbcode, no regex...)
with the following result :

paste [quote]%cliptext%[/quote]
paste [url]http://%cliptext%[/url]
paste [b]%cliptext%[/b]
paste [i]%cliptext%[/i]

handy :
invoke FARR with the autocopy
type "bbocde quo"
press enter
that's it you selected text is now surrounded by
[quote][/quote]

@mouser, i did not manage to get the clipboard content in the result display
[i]%cliptext%[/i] | paste [i]%cliptext%[/i]
the first %cliptext% does not show

423
Find And Run Robot / [bug report] can't delete my aliases !!
« on: August 15, 2007, 04:32 AM »
Hi mouser,

i can't delete my very own aliases

see captures :
farr.png

it says there are read-only item...
maybe i'm doing something wrong...

424
Find And Run Robot / [bug report] infinite loop with $$c... ?
« on: August 15, 2007, 04:29 AM »
Hi mouser,

Farr just crashed many times...(FARR not responding, skin gone, cpu 100%, have to kill it) i don't really know why
i just discovered that $$c was my clipboard content....

and i use $cc a lot in my aliases maybe there is an infinite loop

unfortunately i can't reproduce it everytime
sorry i'm not precise enough  :o

425
Find And Run Robot / Re: search in startup folders ?
« on: August 15, 2007, 03:54 AM »
Nitrix how would you feel about preparing a little guide like: Advanced FARR Hacking?
I think you are the only one (and yes I'm including myself) that has discovered all these little tricks.

i feel proud  :D, i also feel the majority of people did not get the power of dosearch commands yet...
i could prepare a little guide about all the FARR tricks i use, but it would take some time
does it have to be ready for the V2 release ??  :o

maybe we can collaborate on this : i could prepare a draft...
that you could review, and so on (plus english is not my mother's tongue  :P)

Pages: prev1 ... 12 13 14 15 16 [17] 18 19 20 21 22 23next