ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Find And Run Robot

Using FARR to open website in different locations?

(1/2) > >>

You4eea:
I have websites that I access at different URL's and different pages on those URL's all the time.
For example: (I will use a wordpress site as my example.)
www.example.com - Homepage
www.example.com/wp-login.php - login page

What I would like to be able to do the following:

1) hit the [break] key -> then start typing "clients" [space] example.com [space] home

and for the login page

2) hit the [break] key -> then start typing "clients" [space] example.com [space] login

Is this possible?

I have figured out how to do just the "clients" [space] example.com
But not how to add the login or home part.

Thanks.

mouser:
You can do it fairly easily, in several different ways.

Am I correct in assuming you purposefully want to be able to type whatever url pattern you want for the "example.com" and have it work on any such site, and you plan to have dozens of them?

In that case you could make one regex aliases that matched on like "clients (.*) (.*)"

So for example:


That will work because the second phrase you type will filter out the result you want.

mouser:
Now another way you could do it is create TWO aliases, one matching regex "clients (.+) home" and one matching "clients (.+) login"
each containing one of the two results i've listed in the previous alias.

mouser:
And yet another way if you only have only a handful of such sites and dont need it to work on arbitrary urls, would be to make one alias called simply "clients" with no regex and in that alias put all of the urls of all of your sites, like:


Now when you type "clients" you would see a list of ALL urls, but as you typed more you would filter/restrict the list, so if you typed "clients examp" you would see the two example links, and if you typed "clients ex log" you would see only the clients examples.com login result:



This works because farr will automatically filter multiple results based on what you type.

You4eea:
WOW... Mouser... You are a god!...

That is awesome... Thanks! I'll give it a try and report back.

Navigation

[0] Message Index

[#] Next page

Go to full version