Reply
 
Thread Tools Display Modes
  #1   Report Post  
Jerome
 
Posts: n/a
Default How do I import autocorrect entries from Word 2003 to Mac Office 2

Hello
I use two computers at work : one is with Word 2003 and OneNote : the two
software share the same Autocorrect file. I've used the Macro tool
Support.dot to backup it.
Do you know a way to share/import this file with/to Mac Office 2004? This
one use a file named Microsoft Office ACL. How can I replace it by the other
one?
Thanks.
  #2   Report Post  
Jay Freedman
 
Posts: n/a
Default

On Fri, 12 Aug 2005 01:21:07 -0700, Jerome
wrote:

Hello
I use two computers at work : one is with Word 2003 and OneNote : the two
software share the same Autocorrect file. I've used the Macro tool
Support.dot to backup it.
Do you know a way to share/import this file with/to Mac Office 2004? This
one use a file named Microsoft Office ACL. How can I replace it by the other
one?
Thanks.


I don't have a Mac, so I'm guessing... have you tried loading the same
Support.dot template in Word 2004 and using its Restore command? I've
looked at the macro code, and it looks like it should work the same on
a Mac as on Windows.

If that works, there's an improved version of the AutoCorrect
backup/restore at
http://www.word.mvps.org/FAQs/Custom...utocorrect.htm.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
  #3   Report Post  
Daiya Mitchell
 
Posts: n/a
Default

Cross-posting to the MacWord group for extra input--but last time I tried to
run that macro, I think my MacWord 2004 froze up. Someone else posted it as
a suggestion--not sure if they had tested it or knew they were making the
post on a Mac group.

I didn't try very hard to make this work. All information welcomed. On the
Mac, it is also a .acl file, but I would think the file format is different.
Just switching out the file seems unlikely to work.

The macro will likely need tweaking for a different location and filename on
the Mac.


On 8/12/05 8:06 AM, "Jay Freedman" wrote:

On Fri, 12 Aug 2005 01:21:07 -0700, Jerome
wrote:

Hello
I use two computers at work : one is with Word 2003 and OneNote : the two
software share the same Autocorrect file. I've used the Macro tool
Support.dot to backup it.
Do you know a way to share/import this file with/to Mac Office 2004? This
one use a file named Microsoft Office ACL. How can I replace it by the other
one?
Thanks.


I don't have a Mac, so I'm guessing... have you tried loading the same
Support.dot template in Word 2004 and using its Restore command? I've
looked at the macro code, and it looks like it should work the same on
a Mac as on Windows.

If that works, there's an improved version of the AutoCorrect
backup/restore at
http://www.word.mvps.org/FAQs/Custom...utocorrect.htm.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org


--
Daiya Mitchell, MVP Mac/Word
Word FAQ: http://www.word.mvps.org/
MacWord Tips: http://www.word.mvps.org/MacWordNew/
What's an MVP? A volunteer! Read the FAQ: http://mvp.support.microsoft.com/

  #4   Report Post  
Jay Freedman
 
Posts: n/a
Default

Hi Daiya,

The code of the macro doesn't make any direct reference to the .acl
file; it uses the Application.Autocorrect.Entries.AddRichText method,
which lets VBA figure out where the entry goes.

The part of the macro that may be Windows-only is where it chooses the
document file that contains the entries to be restored. It calls the
FileOpen dialog and passes the name "*.doc"; I don't know whether that
would cause a problem. Other than that, I don't see anything that's
obviously platform-specific.

You're probably correct that a .acl file can't be transferred
directly. That wouldn't be the whole story anyway: formatted AC
entries are stored in Normal.dot, and only unformatted ones are stored
in the .acl file.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org

On Sat, 13 Aug 2005 07:32:18 -0400, Daiya Mitchell
wrote:

Cross-posting to the MacWord group for extra input--but last time I tried to
run that macro, I think my MacWord 2004 froze up. Someone else posted it as
a suggestion--not sure if they had tested it or knew they were making the
post on a Mac group.

I didn't try very hard to make this work. All information welcomed. On the
Mac, it is also a .acl file, but I would think the file format is different.
Just switching out the file seems unlikely to work.

The macro will likely need tweaking for a different location and filename on
the Mac.


On 8/12/05 8:06 AM, "Jay Freedman" wrote:

On Fri, 12 Aug 2005 01:21:07 -0700, Jerome
wrote:

Hello
I use two computers at work : one is with Word 2003 and OneNote : the two
software share the same Autocorrect file. I've used the Macro tool
Support.dot to backup it.
Do you know a way to share/import this file with/to Mac Office 2004? This
one use a file named Microsoft Office ACL. How can I replace it by the other
one?
Thanks.


I don't have a Mac, so I'm guessing... have you tried loading the same
Support.dot template in Word 2004 and using its Restore command? I've
looked at the macro code, and it looks like it should work the same on
a Mac as on Windows.

If that works, there's an improved version of the AutoCorrect
backup/restore at
http://www.word.mvps.org/FAQs/Custom...utocorrect.htm.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org

  #5   Report Post  
John McGhie [MVP - Word and Word Macintosh]
 
Posts: n/a
Default

Yes, I believe Daiya is correct: that macro does hang Mac Word.

I'll take Jay's word for it that there's nothing "Mac-specific" in the code,
but even so it appears to hang Win2004. Then again, that macro sometimes
hangs PC Word too.

On 14/8/05 12:38 AM, in article ,
"Jay Freedman" wrote:

Hi Daiya,

The code of the macro doesn't make any direct reference to the .acl
file; it uses the Application.Autocorrect.Entries.AddRichText method,
which lets VBA figure out where the entry goes.

The part of the macro that may be Windows-only is where it chooses the
document file that contains the entries to be restored. It calls the
FileOpen dialog and passes the name "*.doc"; I don't know whether that
would cause a problem. Other than that, I don't see anything that's
obviously platform-specific.

You're probably correct that a .acl file can't be transferred
directly. That wouldn't be the whole story anyway: formatted AC
entries are stored in Normal.dot, and only unformatted ones are stored
in the .acl file.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ:
http://word.mvps.org

On Sat, 13 Aug 2005 07:32:18 -0400, Daiya Mitchell
wrote:

Cross-posting to the MacWord group for extra input--but last time I tried to
run that macro, I think my MacWord 2004 froze up. Someone else posted it as
a suggestion--not sure if they had tested it or knew they were making the
post on a Mac group.

I didn't try very hard to make this work. All information welcomed. On the
Mac, it is also a .acl file, but I would think the file format is different.
Just switching out the file seems unlikely to work.

The macro will likely need tweaking for a different location and filename on
the Mac.


On 8/12/05 8:06 AM, "Jay Freedman" wrote:

On Fri, 12 Aug 2005 01:21:07 -0700, Jerome
wrote:

Hello
I use two computers at work : one is with Word 2003 and OneNote : the two
software share the same Autocorrect file. I've used the Macro tool
Support.dot to backup it.
Do you know a way to share/import this file with/to Mac Office 2004? This
one use a file named Microsoft Office ACL. How can I replace it by the
other
one?
Thanks.

I don't have a Mac, so I'm guessing... have you tried loading the same
Support.dot template in Word 2004 and using its Restore command? I've
looked at the macro code, and it looks like it should work the same on
a Mac as on Windows.

If that works, there's an improved version of the AutoCorrect
backup/restore at
http://www.word.mvps.org/FAQs/Custom...utocorrect.htm.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org


--

Please reply to the newsgroup to maintain the thread. Please do not email
me unless I ask you to.

John McGhie
Microsoft MVP, Word and Word for Macintosh. Consultant Technical Writer
Sydney, Australia +61 4 1209 1410

Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Word 2003 Mailmerge problem - works in Word 2000 Rick Robinson Mailmerge 2 April 28th 05 10:16 AM
Envelope Address GR New Users 5 April 24th 05 09:48 PM
WP Delay Code - Word Equiv Mike G - Milw, WI Microsoft Word Help 6 January 10th 05 04:12 PM
How to change merge forms from Word Perfect to Microsoft Word dollfindance Microsoft Word Help 2 December 30th 04 03:35 PM
macro in word js Microsoft Word Help 1 December 28th 04 03:01 AM


All times are GMT +1. The time now is 01:04 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"