Hi all, I have two macros one creates a jpg the other a cgm. what do I need to do to make them work as one.
Macro export jpeg
# recorded with Arbortext IsoDraw 7.3
Save
Define final as string
final="X:\Photos\" + stripext(activedoc.name) + ".jpg"
Export final "JPEG"
End Macro
Macro export CGM to sp_windrower image folder
# recorded with Arbortext IsoDraw 7.3
app.interaction=false
Save
Define final as string
final="X:\Dita Documents\English\Products\sp_windrower\Images\" + stripext(activedoc.name) + ".cgm"
Export final "cgm"
app.interaction=true
End Macro
thanks
Bryon