Aply: No space between k and the value for k
Also since the value contains a space you'll need quotes
Code:
FindClick("image.png","a x-20 k""{LButton Down}""")
You need to double the quotes since it is in an expression.
Alternatively you could do this:
Code:
Options = a x-20 k"{LButton Down}" ;traditional declaration means the text is literal
FindClick("image.png", Options)
I know it's not the most intuitive thing in the world, sorry about that

Also if you're going to be holding down the key you'll probably want to release it after a while.
Code:
If FindClick("image.png","a x-20 k""{LButton Down}""") { ;if the image is found & the click occurs
Sleep 1000 ;sleep for a bit
Send {LButton Up} ;and then release the key
}
_________________
★★★ Email me at berban at aim full stop com
★★★