Re: Word to pages batch converter?

2016-09-27 Thread Jonathan Cohn
OK, I had never used the open handler  so I needed to play a bit.

It looks like it returns a list of files. I am not quite sure if the file items 
are themselves lists, but am working that out, it did appear that your repeat 
was not properly enclosing the logic. 

I am going to break it down to a couple more handlers  and then give it a try
So, I will have a SetPagesExtension handler that will take arguments and return 
a POSIX file object with proper name for the save.
I will also create a handler that will just open the given file and  save it. 
 again. For testing purposes, I created a run handler

on run 
set aList to the files of Window 1 of Application Finder whose name contains 
".docx"   
repeat with anItem in aList 
set NewName to  SetPagesType(anItem )  
try OpenAndClose(anItem,  NewName) 
on error 
say "something went wrong"
end try 
end repeat 
end run 

Best wishes,

Jonathan



> On Sep 26, 2016, at 4:21 PM, Tim Kilburn <kilbu...@me.com> wrote:
> 
> Hi Jonathan,
> 
> Using the below Apple Script compiled as an application:
> 
> on open filist
>   repeat with lvar in filist
>   tell application "Finder"
>   set thename to name of lvar
>   end tell
>   set x to the offset of "." in thename   set nuname to 
> text 1 thru text item x of thename
>   set nuname to text 1 thru text item x of thename
>   tell application "Pages"
>   activate
>   set filname to (path to desktop folder as text) & 
> nuname & "pages"
>   open lvar
>   save document 1 in filname
>   close every window saving no
>   end tell
>   end repeat
> end open
> 
> I'm having frustrations.  How this normally should work, is that you would 
> drag and drop a Word file, or folder full of Word files on to my W2P app 
> icon.  The app would then open the Word file, get rid of the .docx extension, 
> change it to a .pages extension then save the file on the Desktop.  Doing 
> this manually, everything works as it should.  Using the app, though, Pages 
> spins its wheels for a bit then returns an error.  If I do the same action 
> with a Pages document instead, then it works properly.  I have played with a 
> number of variations of this with no real good results as of yet.
> 
> You, or anyone else is welcome to mess with it an d see if you can determine 
> how to make it work properly.
> 
> Later...
> 
> Tim Kilburn
> Fort McMurray, AB Canada
> 
> On Sep 25, 2016, at 10:09, Jonathan Cohn <jon.c.c...@gmail.com 
> <mailto:jon.c.c...@gmail.com>> wrote:
> 
> I don't see a automator library for Pages, but certainly I would expect that 
> the standard save action in AppleScript should work. The question is how 
> would you want your batch processor to work probably the easiest would be to 
> create a folder and then create a folder action AppleScript for that folder. 
> 
> A lot of us use the folder action script that announces when a new file is 
> placed in the downloads folder, so I could see modifying this. 
> 
> How much interest is there in this? 
> 
> . 
> 
> 
>   Best wishes,
> 
> Jonathan
> 
> 
> 
>> On Sep 25, 2016, at 6:41 AM, Anne Robertson <a...@anarchie.org.uk 
>> <mailto:a...@anarchie.org.uk>> wrote:
>> 
>> Pages does not handle RTF, but opening a Word document in Pages and then 
>> saving it will convert the document to Pages format.
>> 
>> Maybe Automator could be used for batch conversion.
>> 
>> Cheers,
>> 
>> Anne
>> 
>> .
>> 
>>> On 25 Sep 2016, at 03:51, Simon Fogarty <si...@blinky-net.com 
>>> <mailto:si...@blinky-net.com>> wrote:
>>> 
>>> What about using an RTF format document?
>>> 
>>> Surely RTF would be picked up by Pages 
>>> 
>>> -Original Message-
>>> From: macvisionaries@googlegroups.com 
>>> <mailto:macvisionaries@googlegroups.com> 
>>> [mailto:macvisionaries@googlegroups.com 
>>> <mailto:macvisionaries@googlegroups.com>] On Behalf Of Kliphton Miller
>>> Sent: Sunday, 25 September 2016 12:28 AM
>>> To: macvisionaries@googlegroups.com <mailto:macvisionaries@googlegroups.com>
>>> Subject: Word to pages batch converter?
>>> 
>>> So, I have searched the App Store, googled, and came up with nothing.  All 
>>> the apps that come up want to do pages to word, and pdf to word.  So is 
>>> there an app that do

Re: Word to pages batch converter?

2016-09-27 Thread Grant
 wrote:
>>> 
>>> Pages does not handle RTF, but opening a Word document in Pages and then 
>>> saving it will convert the document to Pages format.
>>> 
>>> Maybe Automator could be used for batch conversion.
>>> 
>>> Cheers,
>>> 
>>> Anne
>>> 
>>> .
>>> 
>>>> On 25 Sep 2016, at 03:51, Simon Fogarty <si...@blinky-net.com> wrote:
>>>> 
>>>> What about using an RTF format document?
>>>> 
>>>> Surely RTF would be picked up by Pages 
>>>> 
>>>> -Original Message-
>>>> From: macvisionaries@googlegroups.com 
>>>> [mailto:macvisionaries@googlegroups.com] On Behalf Of Kliphton Miller
>>>> Sent: Sunday, 25 September 2016 12:28 AM
>>>> To: macvisionaries@googlegroups.com
>>>> Subject: Word to pages batch converter?
>>>> 
>>>> So, I have searched the App Store, googled, and came up with nothing.  All 
>>>> the apps that come up want to do pages to word, and pdf to word.  So is 
>>>> there an app that does word to pages, or am I reaching here?  Thanks.
>>>> 
>>>> -- 
>>>> The following information is important for all members of the Mac 
>>>> Visionaries list.
>>>> 
>>>> If you have any questions or concerns about the running of this list, or 
>>>> if you feel that a member's post is inappropriate, please contact the 
>>>> owners or moderators directly rather than posting on the list itself.
>>>> 
>>>> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark 
>>>> at:  macvisionaries+modera...@googlegroups.com and your owner is Cara 
>>>> Quinn - you can reach Cara at caraqu...@caraquinn.com
>>>> 
>>>> The archives for this list can be searched at:
>>>> http://www.mail-archive.com/macvisionaries@googlegroups.com/
>>>> --- 
>>>> You received this message because you are subscribed to the Google Groups 
>>>> "MacVisionaries" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>>> email to macvisionaries+unsubscr...@googlegroups.com.
>>>> To post to this group, send email to macvisionaries@googlegroups.com.
>>>> Visit this group at https://groups.google.com/group/macvisionaries.
>>>> For more options, visit https://groups.google.com/d/optout.
>>>> 
>>>> -- 
>>>> The following information is important for all members of the Mac 
>>>> Visionaries list.
>>>> 
>>>> If you have any questions or concerns about the running of this list, or 
>>>> if you feel that a member's post is inappropriate, please contact the 
>>>> owners or moderators directly rather than posting on the list itself.
>>>> 
>>>> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark 
>>>> at:  macvisionaries+modera...@googlegroups.com and your owner is Cara 
>>>> Quinn - you can reach Cara at caraqu...@caraquinn.com
>>>> 
>>>> The archives for this list can be searched at:
>>>> http://www.mail-archive.com/macvisionaries@googlegroups.com/
>>>> --- 
>>>> You received this message because you are subscribed to the Google Groups 
>>>> "MacVisionaries" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>>> email to macvisionaries+unsubscr...@googlegroups.com.
>>>> To post to this group, send email to macvisionaries@googlegroups.com.
>>>> Visit this group at https://groups.google.com/group/macvisionaries.
>>>> For more options, visit https://groups.google.com/d/optout.
>>> 
>>> -- 
>>> The following information is important for all members of the Mac 
>>> Visionaries list.
>>> 
>>> If you have any questions or concerns about the running of this list, or if 
>>> you feel that a member's post is inappropriate, please contact the owners 
>>> or moderators directly rather than posting on the list itself.
>>> 
>>> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at: 
>>>  macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - 
>>> you can reach Cara at caraqu...@caraquinn.com
>>> 
>>> The archives for this list can be searched at:
>>> http://www.mail-archive.com/macvisionaries@googlegroups.com/
>>> --- 
>>> You r

Re: Word to pages batch converter?

2016-09-27 Thread Tim Kilburn
Grant,

Good thought, but the idea here is that we're trying to open a Word document 
and save it to Pages format.  So, if one has a Word document, manually opens it 
in Pages, then chooses Save, the Save dialog will pop up and will be ready to 
save the document as a Pages document.  The conversion was done on open so that 
Pages could properly display the Word document.  This script automates the open 
then save process, but does not properly follow through with the save.  I 
suspect that it does have something to do with it being a Word document, but 
running this script on a Pages document doesn't always do things correct 
either.  I've even forced the save line to use the Pages format by adding "as 
Pages Format" to the line, still with no joy.

Thanks for your ideas.

Later...
  
Tim Kilburn
Fort McMurray, AB Canada

On Sep 26, 2016, at 19:01, Grant <grant.li...@icloud.com> wrote:

Hi Tim,

This is just a guess on my part, but Pages of course doesn't "save" to Word 
format; it "exports" to Word. Do you think that could be why your app doesn't 
function as expected? It actually causes features like auto-save to work 
differently, too.

Grant

On Sep 26, 2016, at 1:21 PM, Tim Kilburn <kilbu...@me.com 
<mailto:kilbu...@me.com>> wrote:

> Hi Jonathan,
> 
> Using the below Apple Script compiled as an application:
> 
> on open filist
>   repeat with lvar in filist
>   tell application "Finder"
>   set thename to name of lvar
>   end tell
>   set x to the offset of "." in thename   set nuname to 
> text 1 thru text item x of thename
>   set nuname to text 1 thru text item x of thename
>   tell application "Pages"
>   activate
>   set filname to (path to desktop folder as text) & 
> nuname & "pages"
>   open lvar
>   save document 1 in filname
>   close every window saving no
>   end tell
>   end repeat
> end open
> 
> I'm having frustrations.  How this normally should work, is that you would 
> drag and drop a Word file, or folder full of Word files on to my W2P app 
> icon.  The app would then open the Word file, get rid of the .docx extension, 
> change it to a .pages extension then save the file on the Desktop.  Doing 
> this manually, everything works as it should.  Using the app, though, Pages 
> spins its wheels for a bit then returns an error.  If I do the same action 
> with a Pages document instead, then it works properly.  I have played with a 
> number of variations of this with no real good results as of yet.
> 
> You, or anyone else is welcome to mess with it an d see if you can determine 
> how to make it work properly.
> 
> Later...
> 
> Tim Kilburn
> Fort McMurray, AB Canada
> 
> On Sep 25, 2016, at 10:09, Jonathan Cohn <jon.c.c...@gmail.com 
> <mailto:jon.c.c...@gmail.com>> wrote:
> 
> I don't see a automator library for Pages, but certainly I would expect that 
> the standard save action in AppleScript should work. The question is how 
> would you want your batch processor to work probably the easiest would be to 
> create a folder and then create a folder action AppleScript for that folder. 
> 
> A lot of us use the folder action script that announces when a new file is 
> placed in the downloads folder, so I could see modifying this. 
> 
> How much interest is there in this? 
> 
> . 
> 
> 
>   Best wishes,
> 
> Jonathan
> 
> 
> 
>> On Sep 25, 2016, at 6:41 AM, Anne Robertson <a...@anarchie.org.uk 
>> <mailto:a...@anarchie.org.uk>> wrote:
>> 
>> Pages does not handle RTF, but opening a Word document in Pages and then 
>> saving it will convert the document to Pages format.
>> 
>> Maybe Automator could be used for batch conversion.
>> 
>> Cheers,
>> 
>> Anne
>> 
>> .
>> 
>>> On 25 Sep 2016, at 03:51, Simon Fogarty <si...@blinky-net.com 
>>> <mailto:si...@blinky-net.com>> wrote:
>>> 
>>> What about using an RTF format document?
>>> 
>>> Surely RTF would be picked up by Pages 
>>> 
>>> -Original Message-
>>> From: macvisionaries@googlegroups.com 
>>> <mailto:macvisionaries@googlegroups.com> 
>>> [mailto:macvisionaries@googlegroups.com 
>>> <mailto:macvisionaries@googlegroups.com>] On Behalf Of Kliphton Miller
>>> Sent: Sunday, 25 September 2016 12:28 AM
>>> To: macvisionaries@googlegroups.com <mailto:macvisionaries@googlegroups.

Re: Word to pages batch converter?

2016-09-26 Thread Grant
Hi Tim,

This is just a guess on my part, but Pages of course doesn't "save" to Word 
format; it "exports" to Word. Do you think that could be why your app doesn't 
function as expected? It actually causes features like auto-save to work 
differently, too.

Grant

> On Sep 26, 2016, at 1:21 PM, Tim Kilburn <kilbu...@me.com> wrote:
> 
> Hi Jonathan,
> 
> Using the below Apple Script compiled as an application:
> 
> on open filist
>   repeat with lvar in filist
>   tell application "Finder"
>   set thename to name of lvar
>   end tell
>   set x to the offset of "." in thename   set nuname to 
> text 1 thru text item x of thename
>   set nuname to text 1 thru text item x of thename
>   tell application "Pages"
>   activate
>   set filname to (path to desktop folder as text) & 
> nuname & "pages"
>   open lvar
>   save document 1 in filname
>   close every window saving no
>   end tell
>   end repeat
> end open
> 
> I'm having frustrations.  How this normally should work, is that you would 
> drag and drop a Word file, or folder full of Word files on to my W2P app 
> icon.  The app would then open the Word file, get rid of the .docx extension, 
> change it to a .pages extension then save the file on the Desktop.  Doing 
> this manually, everything works as it should.  Using the app, though, Pages 
> spins its wheels for a bit then returns an error.  If I do the same action 
> with a Pages document instead, then it works properly.  I have played with a 
> number of variations of this with no real good results as of yet.
> 
> You, or anyone else is welcome to mess with it an d see if you can determine 
> how to make it work properly.
> 
> Later...
> 
> Tim Kilburn
> Fort McMurray, AB Canada
> 
> On Sep 25, 2016, at 10:09, Jonathan Cohn <jon.c.c...@gmail.com> wrote:
> 
> I don't see a automator library for Pages, but certainly I would expect that 
> the standard save action in AppleScript should work. The question is how 
> would you want your batch processor to work probably the easiest would be to 
> create a folder and then create a folder action AppleScript for that folder. 
> 
> A lot of us use the folder action script that announces when a new file is 
> placed in the downloads folder, so I could see modifying this. 
> 
> How much interest is there in this? 
> 
> . 
> 
> 
>   Best wishes,
> 
> Jonathan
> 
> 
> 
>> On Sep 25, 2016, at 6:41 AM, Anne Robertson <a...@anarchie.org.uk> wrote:
>> 
>> Pages does not handle RTF, but opening a Word document in Pages and then 
>> saving it will convert the document to Pages format.
>> 
>> Maybe Automator could be used for batch conversion.
>> 
>> Cheers,
>> 
>> Anne
>> 
>> .
>> 
>>> On 25 Sep 2016, at 03:51, Simon Fogarty <si...@blinky-net.com> wrote:
>>> 
>>> What about using an RTF format document?
>>> 
>>> Surely RTF would be picked up by Pages 
>>> 
>>> -Original Message-
>>> From: macvisionaries@googlegroups.com 
>>> [mailto:macvisionaries@googlegroups.com] On Behalf Of Kliphton Miller
>>> Sent: Sunday, 25 September 2016 12:28 AM
>>> To: macvisionaries@googlegroups.com
>>> Subject: Word to pages batch converter?
>>> 
>>> So, I have searched the App Store, googled, and came up with nothing.  All 
>>> the apps that come up want to do pages to word, and pdf to word.  So is 
>>> there an app that does word to pages, or am I reaching here?  Thanks.
>>> 
>>> -- 
>>> The following information is important for all members of the Mac 
>>> Visionaries list.
>>> 
>>> If you have any questions or concerns about the running of this list, or if 
>>> you feel that a member's post is inappropriate, please contact the owners 
>>> or moderators directly rather than posting on the list itself.
>>> 
>>> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at: 
>>>  macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - 
>>> you can reach Cara at caraqu...@caraquinn.com
>>> 
>>> The archives for this list can be searched at:
>>> http://www.mail-archive.com/macvisionaries@googlegroups.com/
>>> --- 
>>> You received this message because you are subscribed to the Goo

Re: Word to pages batch converter?

2016-09-26 Thread Tim Kilburn
Hi Jonathan,

Using the below Apple Script compiled as an application:

on open filist
repeat with lvar in filist
tell application "Finder"
set thename to name of lvar
end tell
set x to the offset of "." in thename   set nuname to 
text 1 thru text item x of thename
set nuname to text 1 thru text item x of thename
tell application "Pages"
activate
set filname to (path to desktop folder as text) & 
nuname & "pages"
open lvar
save document 1 in filname
close every window saving no
end tell
end repeat
end open

I'm having frustrations.  How this normally should work, is that you would drag 
and drop a Word file, or folder full of Word files on to my W2P app icon.  The 
app would then open the Word file, get rid of the .docx extension, change it to 
a .pages extension then save the file on the Desktop.  Doing this manually, 
everything works as it should.  Using the app, though, Pages spins its wheels 
for a bit then returns an error.  If I do the same action with a Pages document 
instead, then it works properly.  I have played with a number of variations of 
this with no real good results as of yet.

You, or anyone else is welcome to mess with it an d see if you can determine 
how to make it work properly.

Later...

Tim Kilburn
Fort McMurray, AB Canada

On Sep 25, 2016, at 10:09, Jonathan Cohn <jon.c.c...@gmail.com> wrote:

I don't see a automator library for Pages, but certainly I would expect that 
the standard save action in AppleScript should work. The question is how would 
you want your batch processor to work probably the easiest would be to create a 
folder and then create a folder action AppleScript for that folder. 

A lot of us use the folder action script that announces when a new file is 
placed in the downloads folder, so I could see modifying this. 

How much interest is there in this? 

. 


Best wishes,

Jonathan



> On Sep 25, 2016, at 6:41 AM, Anne Robertson <a...@anarchie.org.uk> wrote:
> 
> Pages does not handle RTF, but opening a Word document in Pages and then 
> saving it will convert the document to Pages format.
> 
> Maybe Automator could be used for batch conversion.
> 
> Cheers,
> 
> Anne
> 
> .
> 
>> On 25 Sep 2016, at 03:51, Simon Fogarty <si...@blinky-net.com> wrote:
>> 
>> What about using an RTF format document?
>> 
>> Surely RTF would be picked up by Pages 
>> 
>> -Original Message-
>> From: macvisionaries@googlegroups.com 
>> [mailto:macvisionaries@googlegroups.com] On Behalf Of Kliphton Miller
>> Sent: Sunday, 25 September 2016 12:28 AM
>> To: macvisionaries@googlegroups.com
>> Subject: Word to pages batch converter?
>> 
>> So, I have searched the App Store, googled, and came up with nothing.  All 
>> the apps that come up want to do pages to word, and pdf to word.  So is 
>> there an app that does word to pages, or am I reaching here?  Thanks.
>> 
>> -- 
>> The following information is important for all members of the Mac 
>> Visionaries list.
>> 
>> If you have any questions or concerns about the running of this list, or if 
>> you feel that a member's post is inappropriate, please contact the owners or 
>> moderators directly rather than posting on the list itself.
>> 
>> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
>> macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
>> can reach Cara at caraqu...@caraquinn.com
>> 
>> The archives for this list can be searched at:
>> http://www.mail-archive.com/macvisionaries@googlegroups.com/
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "MacVisionaries" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to macvisionaries+unsubscr...@googlegroups.com.
>> To post to this group, send email to macvisionaries@googlegroups.com.
>> Visit this group at https://groups.google.com/group/macvisionaries.
>> For more options, visit https://groups.google.com/d/optout.
>> 
>> -- 
>> The following information is important for all members of the Mac 
>> Visionaries list.
>> 
>> If you have any questions or concerns about the running of this list, or if 
>> you feel that a member's post is inappropriate, please contact the owners or 
>> moderators directly rather than posting on the list itself.
>> 
>> Your Mac Visionar

Re: Word to pages batch converter?

2016-09-26 Thread Anne Robertson
Hello Simon,

Yes, Pages can read and export to plain text.
I agree that it’s very strange that Pages can’t handle RTF.

Cheers,

Anne



> On 26 Sep 2016, at 07:35, Simon Fogarty <si...@blinky-net.com> wrote:
> 
> Hi Ann
> 
> Really Pages doesn't handle RTF?
> 
> Crazy wht about txt files?
> 
> 
> -Original Message-
> From: macvisionaries@googlegroups.com 
> [mailto:macvisionaries@googlegroups.com] On Behalf Of Anne Robertson
> Sent: Sunday, 25 September 2016 11:42 PM
> To: macvisionaries@googlegroups.com
> Subject: Re: Word to pages batch converter?
> 
> Pages does not handle RTF, but opening a Word document in Pages and then 
> saving it will convert the document to Pages format.
> 
> Maybe Automator could be used for batch conversion.
> 
> Cheers,
> 
> Anne
> 
> .
> 
>> On 25 Sep 2016, at 03:51, Simon Fogarty <si...@blinky-net.com> wrote:
>> 
>> What about using an RTF format document?
>> 
>> Surely RTF would be picked up by Pages 
>> 
>> -Original Message-
>> From: macvisionaries@googlegroups.com 
>> [mailto:macvisionaries@googlegroups.com] On Behalf Of Kliphton Miller
>> Sent: Sunday, 25 September 2016 12:28 AM
>> To: macvisionaries@googlegroups.com
>> Subject: Word to pages batch converter?
>> 
>> So, I have searched the App Store, googled, and came up with nothing.  All 
>> the apps that come up want to do pages to word, and pdf to word.  So is 
>> there an app that does word to pages, or am I reaching here?  Thanks.
>> 
>> -- 
>> The following information is important for all members of the Mac 
>> Visionaries list.
>> 
>> If you have any questions or concerns about the running of this list, or if 
>> you feel that a member's post is inappropriate, please contact the owners or 
>> moderators directly rather than posting on the list itself.
>> 
>> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
>> macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
>> can reach Cara at caraqu...@caraquinn.com
>> 
>> The archives for this list can be searched at:
>> http://www.mail-archive.com/macvisionaries@googlegroups.com/
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "MacVisionaries" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to macvisionaries+unsubscr...@googlegroups.com.
>> To post to this group, send email to macvisionaries@googlegroups.com.
>> Visit this group at https://groups.google.com/group/macvisionaries.
>> For more options, visit https://groups.google.com/d/optout.
>> 
>> -- 
>> The following information is important for all members of the Mac 
>> Visionaries list.
>> 
>> If you have any questions or concerns about the running of this list, or if 
>> you feel that a member's post is inappropriate, please contact the owners or 
>> moderators directly rather than posting on the list itself.
>> 
>> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
>> macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
>> can reach Cara at caraqu...@caraquinn.com
>> 
>> The archives for this list can be searched at:
>> http://www.mail-archive.com/macvisionaries@googlegroups.com/
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "MacVisionaries" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to macvisionaries+unsubscr...@googlegroups.com.
>> To post to this group, send email to macvisionaries@googlegroups.com.
>> Visit this group at https://groups.google.com/group/macvisionaries.
>> For more options, visit https://groups.google.com/d/optout.
> 
> -- 
> The following information is important for all members of the Mac Visionaries 
> list.
> 
> If you have any questions or concerns about the running of this list, or if 
> you feel that a member's post is inappropriate, please contact the owners or 
> moderators directly rather than posting on the list itself.
> 
> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
> macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
> can reach Cara at caraqu...@caraquinn.com
> 
> The archives for this list can be searched at:
> http://www.mail-archive.com/macvisionaries@googlegroups.com/
> --- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.

RE: Word to pages batch converter?

2016-09-25 Thread Simon Fogarty
Hi Ann

Really Pages doesn't handle RTF?

 Crazy wht about txt files?


-Original Message-
From: macvisionaries@googlegroups.com [mailto:macvisionaries@googlegroups.com] 
On Behalf Of Anne Robertson
Sent: Sunday, 25 September 2016 11:42 PM
To: macvisionaries@googlegroups.com
Subject: Re: Word to pages batch converter?

Pages does not handle RTF, but opening a Word document in Pages and then saving 
it will convert the document to Pages format.

Maybe Automator could be used for batch conversion.

Cheers,

Anne

.

> On 25 Sep 2016, at 03:51, Simon Fogarty <si...@blinky-net.com> wrote:
> 
> What about using an RTF format document?
> 
>  Surely RTF would be picked up by Pages 
> 
> -Original Message-
> From: macvisionaries@googlegroups.com 
> [mailto:macvisionaries@googlegroups.com] On Behalf Of Kliphton Miller
> Sent: Sunday, 25 September 2016 12:28 AM
> To: macvisionaries@googlegroups.com
> Subject: Word to pages batch converter?
> 
> So, I have searched the App Store, googled, and came up with nothing.  All 
> the apps that come up want to do pages to word, and pdf to word.  So is there 
> an app that does word to pages, or am I reaching here?  Thanks.
> 
> -- 
> The following information is important for all members of the Mac Visionaries 
> list.
> 
> If you have any questions or concerns about the running of this list, or if 
> you feel that a member's post is inappropriate, please contact the owners or 
> moderators directly rather than posting on the list itself.
> 
> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
> macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
> can reach Cara at caraqu...@caraquinn.com
> 
> The archives for this list can be searched at:
> http://www.mail-archive.com/macvisionaries@googlegroups.com/
> --- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at https://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.
> 
> -- 
> The following information is important for all members of the Mac Visionaries 
> list.
> 
> If you have any questions or concerns about the running of this list, or if 
> you feel that a member's post is inappropriate, please contact the owners or 
> moderators directly rather than posting on the list itself.
> 
> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
> macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
> can reach Cara at caraqu...@caraquinn.com
> 
> The archives for this list can be searched at:
> http://www.mail-archive.com/macvisionaries@googlegroups.com/
> --- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at https://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
can reach Cara at caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.

-- 
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.

Re: Word to pages batch converter?

2016-09-25 Thread Jonathan Cohn
I don't see a automator library for Pages, but certainly I would expect that 
the standard save action in AppleScript should work. The question is how would 
you want your batch processor to work probably the easiest would be to create a 
folder and then create a folder action AppleScript for that folder. 

A lot of us use the folder action script that announces when a new file is 
placed in the downloads folder, so I could see modifying this. 

How much interest is there in this? 

. 


Best wishes,

Jonathan



> On Sep 25, 2016, at 6:41 AM, Anne Robertson <a...@anarchie.org.uk> wrote:
> 
> Pages does not handle RTF, but opening a Word document in Pages and then 
> saving it will convert the document to Pages format.
> 
> Maybe Automator could be used for batch conversion.
> 
> Cheers,
> 
> Anne
> 
> .
> 
>> On 25 Sep 2016, at 03:51, Simon Fogarty <si...@blinky-net.com> wrote:
>> 
>> What about using an RTF format document?
>> 
>> Surely RTF would be picked up by Pages 
>> 
>> -Original Message-
>> From: macvisionaries@googlegroups.com 
>> [mailto:macvisionaries@googlegroups.com] On Behalf Of Kliphton Miller
>> Sent: Sunday, 25 September 2016 12:28 AM
>> To: macvisionaries@googlegroups.com
>> Subject: Word to pages batch converter?
>> 
>> So, I have searched the App Store, googled, and came up with nothing.  All 
>> the apps that come up want to do pages to word, and pdf to word.  So is 
>> there an app that does word to pages, or am I reaching here?  Thanks.
>> 
>> -- 
>> The following information is important for all members of the Mac 
>> Visionaries list.
>> 
>> If you have any questions or concerns about the running of this list, or if 
>> you feel that a member's post is inappropriate, please contact the owners or 
>> moderators directly rather than posting on the list itself.
>> 
>> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
>> macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
>> can reach Cara at caraqu...@caraquinn.com
>> 
>> The archives for this list can be searched at:
>> http://www.mail-archive.com/macvisionaries@googlegroups.com/
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "MacVisionaries" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to macvisionaries+unsubscr...@googlegroups.com.
>> To post to this group, send email to macvisionaries@googlegroups.com.
>> Visit this group at https://groups.google.com/group/macvisionaries.
>> For more options, visit https://groups.google.com/d/optout.
>> 
>> -- 
>> The following information is important for all members of the Mac 
>> Visionaries list.
>> 
>> If you have any questions or concerns about the running of this list, or if 
>> you feel that a member's post is inappropriate, please contact the owners or 
>> moderators directly rather than posting on the list itself.
>> 
>> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
>> macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
>> can reach Cara at caraqu...@caraquinn.com
>> 
>> The archives for this list can be searched at:
>> http://www.mail-archive.com/macvisionaries@googlegroups.com/
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "MacVisionaries" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to macvisionaries+unsubscr...@googlegroups.com.
>> To post to this group, send email to macvisionaries@googlegroups.com.
>> Visit this group at https://groups.google.com/group/macvisionaries.
>> For more options, visit https://groups.google.com/d/optout.
> 
> -- 
> The following information is important for all members of the Mac Visionaries 
> list.
> 
> If you have any questions or concerns about the running of this list, or if 
> you feel that a member's post is inappropriate, please contact the owners or 
> moderators directly rather than posting on the list itself.
> 
> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
> macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
> can reach Cara at caraqu...@caraquinn.com
> 
> The archives for this list can be searched at:
> http://www.mail-archive.com/macvisionaries@googlegroups.com/
> --- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries&qu

Re: Word to pages batch converter?

2016-09-25 Thread Anne Robertson
Pages does not handle RTF, but opening a Word document in Pages and then saving 
it will convert the document to Pages format.

Maybe Automator could be used for batch conversion.

Cheers,

Anne

.

> On 25 Sep 2016, at 03:51, Simon Fogarty <si...@blinky-net.com> wrote:
> 
> What about using an RTF format document?
> 
>  Surely RTF would be picked up by Pages 
> 
> -Original Message-
> From: macvisionaries@googlegroups.com 
> [mailto:macvisionaries@googlegroups.com] On Behalf Of Kliphton Miller
> Sent: Sunday, 25 September 2016 12:28 AM
> To: macvisionaries@googlegroups.com
> Subject: Word to pages batch converter?
> 
> So, I have searched the App Store, googled, and came up with nothing.  All 
> the apps that come up want to do pages to word, and pdf to word.  So is there 
> an app that does word to pages, or am I reaching here?  Thanks.
> 
> -- 
> The following information is important for all members of the Mac Visionaries 
> list.
> 
> If you have any questions or concerns about the running of this list, or if 
> you feel that a member's post is inappropriate, please contact the owners or 
> moderators directly rather than posting on the list itself.
> 
> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
> macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
> can reach Cara at caraqu...@caraquinn.com
> 
> The archives for this list can be searched at:
> http://www.mail-archive.com/macvisionaries@googlegroups.com/
> --- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at https://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.
> 
> -- 
> The following information is important for all members of the Mac Visionaries 
> list.
> 
> If you have any questions or concerns about the running of this list, or if 
> you feel that a member's post is inappropriate, please contact the owners or 
> moderators directly rather than posting on the list itself.
> 
> Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
> macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
> can reach Cara at caraqu...@caraquinn.com
> 
> The archives for this list can be searched at:
> http://www.mail-archive.com/macvisionaries@googlegroups.com/
> --- 
> You received this message because you are subscribed to the Google Groups 
> "MacVisionaries" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to macvisionaries+unsubscr...@googlegroups.com.
> To post to this group, send email to macvisionaries@googlegroups.com.
> Visit this group at https://groups.google.com/group/macvisionaries.
> For more options, visit https://groups.google.com/d/optout.

-- 
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
can reach Cara at caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


RE: Word to pages batch converter?

2016-09-24 Thread Simon Fogarty
What about using an RTF format document?

  Surely RTF would be picked up by Pages 

-Original Message-
From: macvisionaries@googlegroups.com [mailto:macvisionaries@googlegroups.com] 
On Behalf Of Kliphton Miller
Sent: Sunday, 25 September 2016 12:28 AM
To: macvisionaries@googlegroups.com
Subject: Word to pages batch converter?

So, I have searched the App Store, googled, and came up with nothing.  All the 
apps that come up want to do pages to word, and pdf to word.  So is there an 
app that does word to pages, or am I reaching here?  Thanks.

-- 
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
can reach Cara at caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.

-- 
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
can reach Cara at caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.


Word to pages batch converter?

2016-09-24 Thread Kliphton Miller
So, I have searched the App Store, googled, and came up with nothing.  All the 
apps that come up want to do pages to word, and pdf to word.  So is there an 
app that does word to pages, or am I reaching here?  Thanks.

-- 
The following information is important for all members of the Mac Visionaries 
list.

If you have any questions or concerns about the running of this list, or if you 
feel that a member's post is inappropriate, please contact the owners or 
moderators directly rather than posting on the list itself.

Your Mac Visionaries list moderator is Mark Taylor.  You can reach mark at:  
macvisionaries+modera...@googlegroups.com and your owner is Cara Quinn - you 
can reach Cara at caraqu...@caraquinn.com

The archives for this list can be searched at:
http://www.mail-archive.com/macvisionaries@googlegroups.com/
--- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to macvisionaries+unsubscr...@googlegroups.com.
To post to this group, send email to macvisionaries@googlegroups.com.
Visit this group at https://groups.google.com/group/macvisionaries.
For more options, visit https://groups.google.com/d/optout.