Re: Missin tag Collection for Serial Numbers

2007-07-21 Thread TjL


On Jul 21, 2007, at 10:02 AM, Gerrit Kruijer wrote:

Op 20-jul-2007, om 13:53 heeft Patrick Gilmour het volgende  
geschreven:



On Jul 20, 2007, at 7:48 AM, Gerrit Kruijer wrote:

Isn't there standard a tag collection for serial numbers? I only  
have archives and bookmarks.


Click on the cog wheel at the bottom left of your Yojimbo screen  
and choose the "Smart Collections" flyout. It's in there.


thank you. I have searched through the menu and missed this option.


You're not alone.  I was looking for that the other day.

It's also in View > Smart Collections

TjL
who re-ordered the space-time continuum of the previous replies in  
this thread to restore balance, harmony, and peace.




--
--
This message is sent to you because you are subscribed to
 the mailing list .
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: <[EMAIL PROTECTED]>


Re: How do you remove default Collections?

2007-07-21 Thread Jan Erik Moström

tedd <[EMAIL PROTECTED]> 07-07-21 11:38

How do you remove default Collections, such as "Serial Numbers" 
and "Passwords" -- I never use them and they just take up 
Collection space.


Select which ones you want to show using the "cog wheel" at the 
bottom of the list.


jem
--
Jan Erik Moström, www.mostrom.pp.se


--
--
This message is sent to you because you are subscribed to
 the mailing list .
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  
Have a feature request, or not sure if the software's working
correctly? Please send mail to: <[EMAIL PROTECTED]>


How do you remove default Collections?

2007-07-21 Thread tedd

Hi:

How do you remove default Collections, such as "Serial Numbers" and 
"Passwords" -- I never use them and they just take up Collection 
space.


Thanks,

tedd
--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
--
This message is sent to you because you are subscribed to
 the mailing list .
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: <[EMAIL PROTECTED]>


Re: Save PDF to Yojimbo and file

2007-07-21 Thread Mark F
I have figured out how to get Yojimbo to add the PDF to multiple folder 
collections (see below).


Does anyone know how I could also encrypt the PDF in applescript as well?

[code]
--
-- Save PDF to Yojimbo and Tag
--
-- Allows you to rename and add tags to a Yojimbo item you add using print
-- to PDF.
--
-- Save as a script to ~Library/PDF Services
--
on open (theFile)

--
	-- set chooseTagsfromList to true if you want the script to present you 
with
	-- a list of tags to pick from. Set it to false if you want to manually 
enter the

-- tags. If you manually enter tags, separate tags with commas.
--

set chooseTagsFromList to true
set chooseCollectionsFromList to true
set theName to text returned of (display dialog "Name:" default answer 
"")

if not chooseTagsFromList then
set restoreDelimiters to AppleScript's text item delimiters

set AppleScript's text item delimiters to ","
set theTags to text returned of (display dialog "Tags:" default answer 
"")

set the chosenTagList to every text item of theTags
end if


tell application "Yojimbo"

set allTags to name of every tag
if chooseTagsFromList then
set chosenTagList to choose from list allTags ¬
with title ¬
"Tags" with prompt ¬
¬
"Choose Tags:" multiple selections 
allowed true ¬
with empty selection allowed
end if

set allCollections to (name of every folder collection)
if chooseCollectionsFromList then
set chosenCollectionList to choose from list 
allCollections ¬
with title ¬
"Collections" with prompt ¬
¬
"Add PDF to which collection?" multiple 
selections allowed true ¬
with empty selection allowed
end if

set n to import theFile
set name of n to theName
add tags chosenTagList to n
repeat with i from 1 to the count of chosenCollectionList
add n to folder collection named (item i of 
chosenCollectionList)
end repeat

end tell

if not chooseTagsFromList then
set AppleScript's text item delimiters to restoreDelimiters
end if
end open
[/code]

_
Advertisement: New jobsjobsjobs.com.au. Find thousands of jobs online now! 
http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Fad%2Eau%2Edoubleclick%2Enet%2Fclk%3B114014868%3B17770752%3Bi%3Fhttp%3A%2F%2Fwww%2Ejobsjobsjobs%2Ecom%2Eau&_t=762242361&_r=Hotmail_email_tagline_July07&_m=EXT



--
--
This message is sent to you because you are subscribed to
 the mailing list .
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: <[EMAIL PROTECTED]>


Re: Missin tag Collection for Serial Numbers

2007-07-21 Thread Gerrit Kruijer

Pat,
thank you. I have searched through the menu and missed this option.
Regards,
Gerrit
Op 20-jul-2007, om 13:53 heeft Patrick Gilmour het volgende geschreven:


There is a standard Smart Collection for serial numbers.
Click on the cog wheel at the bottom left of your Yojimbo screen  
and choose the "Smart Collections" flyout. It's in there.


Pat


On Jul 20, 2007, at 7:48 AM, Gerrit Kruijer wrote:

Isn't there standard a tag collection for serial numbers? I only  
have archives and bookmarks.

Regards,
Gerrit

--
--
This message is sent to you because you are subscribed to
 the mailing list .
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  
Have a feature request, or not sure if the software's  
workingcorrectly? Please send mail to: <[EMAIL PROTECTED]>



--
--
This message is sent to you because you are subscribed to
 the mailing list .
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  
Have a feature request, or not sure if the software's  
workingcorrectly? Please send mail to: <[EMAIL PROTECTED]>



--
--
This message is sent to you because you are subscribed to
 the mailing list .
To unsubscribe, send mail to: <[EMAIL PROTECTED]>
List archives:  
Have a feature request, or not sure if the software's working 
correctly? Please send mail to: <[EMAIL PROTECTED]>