a beginner Script which simply opens
http://dict.leo.org with the right word to search, - while the content of your clipboard is pasted as a proposal
Code:
InputBox, UserInput , dict.leo - Translator, , , 300, 100,,,,, %clipboard%
If Not ErrorLevel {
Run,
http://dict.leo.org/?search=%UserInput%
}
return
Planned extensions:
1. Interaction with browser:
- open a new browser window with dict.leo.org search results.
- every new search request must be send to this particular browser window and not to any other.
-> for this i bet i,can't use the fast Run command anymore and I have to work with something like "If Winactive" ...