Jump to content

are there any Alfred workflows to trigger a HoudahSpot Template based search?


Recommended Posts

Here's what I use - called from a keyword with space & argument required, in a Run Script object set to osascript (AS) with input as {query}

 

on run
	set theQuery to "{query}"
	tell application "HoudahSpot"
		search theQuery template POSIX file "/Users/username/Library/Application Support/com.houdah.HoudahSpot4/Templates/templatename.hstemplate"
	activate
	end tell
end run

 

Link to comment
45 minutes ago, dfay said:

Here's what I use - called from a keyword with space & argument required, in a Run Script object set to osascript (AS) with input as {query}

 


on run
	set theQuery to "{query}"
	tell application "HoudahSpot"
		search theQuery template POSIX file "/Users/username/Library/Application Support/com.houdah.HoudahSpot4/Templates/templatename.hstemplate"
	activate
	end tell
end run

 

 

thank you very much @dfay !

Link to comment
  • 1 year later...
On 2/10/2021 at 4:56 AM, dfay said:

Here's what I use - called from a keyword with space & argument required, in a Run Script object set to osascript (AS) with input as {query}

 

on run
	set theQuery to "{query}"
	tell application "HoudahSpot"
		search theQuery template POSIX file "/Users/username/Library/Application Support/com.houdah.HoudahSpot4/Templates/templatename.hstemplate"
	activate
	end tell
end run

 

 

Hi, @dfay and @rob213, Is possible to share your workflow so I can modify to my use? I don't know how to get this done...

 

Bruno

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...