If you are using something like
tell application "Finder"
open "HD:System Folder:Control Panels:Appletalk"
then you are going about it the wrong way.
What you need to use is Network Setup Scripting addition.
*********
tell application "Network Setup Scripting"
try
open database
begin transaction
set AppleTalk active of AppleTalk options "AppleTalk Globals" to true
end transaction
close database
on error
abort transaction
close database
end try
end tell
**********
It took me a couple of hours to track this down. NSS is not well documented.
Any other questions just post a reply here.
Numero