iacopo
27-02-07, 15:15
ciao a tutti...
sto cercando di installare un programma che sembra molto interessante, per modellazione e rendering 3d.. si chiama modo 202 ( http://www.luxology.com/ ) [EDIT by gabod3: ho aggiunto il link...]
dopo aver installato il programma bisogna installare la licenza droppando il file .lic su uno script che forniscono assieme a modo... però quando faccio questo esce un messaggio di errore perchè lo script non ha i privilegi sufficienti... il processo dello script mi sembra facile, dovrei copiare il file .lic da qualche parte penso.. qualcuno mi può aiutare?
grazie in anticipo!
posto lo script qui:
-- We copy over any file with lic extension into
-- /Library/Application Support/Luxology
property extension_list : {"lic"}
on open these_items
repeat with i from 1 to the count of these_items
set this_item to item i of these_items
set the item_info to info for this_item
if (folder of the item_info is false) and ¬
(alias of the item_info is false) and ¬
(the name extension of the item_info is in the extension_list) then
process_item(this_item)
end if
end repeat
set posPath to POSIX path of ((path to application support as string) & "Luxology:")
set message to "License installed to " & posPath
display dialog message
end open
-- this sub-routine processes files
on process_item(this_item)
set licLoc to (path to application support as string) & "Luxology:"
tell application "Finder"
duplicate file this_item to folder licLoc with replacing
end tell
end process_item
sto cercando di installare un programma che sembra molto interessante, per modellazione e rendering 3d.. si chiama modo 202 ( http://www.luxology.com/ ) [EDIT by gabod3: ho aggiunto il link...]
dopo aver installato il programma bisogna installare la licenza droppando il file .lic su uno script che forniscono assieme a modo... però quando faccio questo esce un messaggio di errore perchè lo script non ha i privilegi sufficienti... il processo dello script mi sembra facile, dovrei copiare il file .lic da qualche parte penso.. qualcuno mi può aiutare?
grazie in anticipo!
posto lo script qui:
-- We copy over any file with lic extension into
-- /Library/Application Support/Luxology
property extension_list : {"lic"}
on open these_items
repeat with i from 1 to the count of these_items
set this_item to item i of these_items
set the item_info to info for this_item
if (folder of the item_info is false) and ¬
(alias of the item_info is false) and ¬
(the name extension of the item_info is in the extension_list) then
process_item(this_item)
end if
end repeat
set posPath to POSIX path of ((path to application support as string) & "Luxology:")
set message to "License installed to " & posPath
display dialog message
end open
-- this sub-routine processes files
on process_item(this_item)
set licLoc to (path to application support as string) & "Luxology:"
tell application "Finder"
duplicate file this_item to folder licLoc with replacing
end tell
end process_item