Tip: Quick Exit from Quick Search
Posted: Wed Aug 22, 2007 12:34 pm
We're really loving the Quick Search feature in the new calendar, but often want to dismiss the search results after we've clicked through to our destination record. This little mod will close the search results window if you hold down the shift key while clicking on a result.
1. Edit the script "Search - Go to Results ( Line )" and declare a new variable at the beginning of the script:
2. At the very end of the script add this:
That's it.
1. Edit the script "Search - Go to Results ( Line )" and declare a new variable at the beginning of the script:
- Code: Select all
Set Variable [ $Window; Value: Get ( WindowName )]
2. At the very end of the script add this:
- Code: Select all
If [ Mod(Get ( ActiveModifierKeys );2)=1 ]
Close Window [ Name: $Window; Current file ]
End If
That's it.