Re: Feature Requests

2008-02-27 Thread John Chennells

On 26/2/08 Michael Shaff wrote:

Would be nice if we could click on a URL and go there this 
is particularly true of password objects. Currently, I copy the 
URL and paste it into a browser.. that's clunky. I should 
be able to click on a arrow bullet next to the URL or the URL 
itself with a modifier key (command?) and go to that URL.


While I agree that would be a nice feature, but until it's 
implemented I simply right (or Control) click the URL in the 
password object and select Open URL. It is the first option.


Cheers

John


--
--
This message is sent to you because you are subscribed to
 the mailing list yojimbo-talk@barebones.com.
To unsubscribe, send mail to: [EMAIL PROTECTED]
List archives:  http://www.listsearch.com/yojimbotalk.lasso
Have a feature request, or not sure if the software's working
correctly? Please send mail to: [EMAIL PROTECTED]


Re: Yojimbo and 10.5.2

2008-02-13 Thread John Chennells

On 13/2/08 John Cradock wrote:


Ever since I updated my
system from Mac OS X 10.5.1 to 10.5.2, Yojimbo hangs when I launch it.
I cannot get it to launch completely. Anyone else seen this issue?


Bit of a long shot...

Do you use Linotype FontExplorer X? This stopped a few apps 
launching on my system after the 10.5.2 update.


There is an update available to fix this.

Cheers

John


--
--
This message is sent to you because you are subscribed to
 the mailing list yojimbo-talk@barebones.com.
To unsubscribe, send mail to: [EMAIL PROTECTED]
List archives:  http://www.listsearch.com/yojimbotalk.lasso
Have a feature request, or not sure if the software's working
correctly? Please send mail to: [EMAIL PROTECTED]


Re: Tagging several items at once

2007-04-20 Thread John Chennells

On 20/4/07 Patrick Gilmour wrote:

Though remember that if there are pre-existing tags they will 
be removed, so be careful with items that are already tagged.



or to get around that, try this:

-- Start Script
(*
Here's a script to batch add tags to Yojimbo items.
Select the items you wish to add a tag or tags to, in the form 
of single words or phrases ensuring they are comma delimited. 
(Without spaces, 'cos I don't know how to strip them just now)

*)

tell application Yojimbo
set _targets to (selected items of browser window 1)
set ct to count items of _targets
set tag_list to 
set AppleScript's text item delimiters to ,
set t to 
set s to text returned of ¬
(display dialog Tag(s) - comma delimited: default 
answer t)

set the tag_list to every text item of s
repeat with i from 1 to ct
try
add tags tag_list to item i of _targets
on error
beep
end try
end repeat
end tell
-- End Script

Cheers

John


--
--
This message is sent to you because you are subscribed to
 the mailing list yojimbo-talk@barebones.com.
To unsubscribe, send mail to: [EMAIL PROTECTED]
List archives:  http://www.listsearch.com/yojimbotalk.lasso
Have a feature request, or not sure if the software's working
correctly? Please send mail to: [EMAIL PROTECTED]