Message 1 of 13
Save max file twice
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
hi guys,
I've a question
I'm trying to create a script which can save my file in 2 different files at the same time.
I just started with it, but i've some problems.
this my code for now
but it didn't save anything.... :-S
I tried with this code:
but it save only one of the 2 files (the last i saved).
so I don't know how to keep in memory the file path for each button.
And when i press on the btn03 button, how can i save the 2 files at the same time????
thx in advance for your help 😉
I've a question
I'm trying to create a script which can save my file in 2 different files at the same time.
I just started with it, but i've some problems.
this my code for now
rollout rollout01 "Save Clone" width:223 height:194
(
GroupBox grp1 "Save As" pos: width:206 height:130
button btn01 "File 01" pos: width:186 height:28
button btn02 "File 02" pos: width:186 height:28
button btn03 "Save" pos: width:186 height:28
on btn01 pressed do
(
save01 = getMAXSaveFileName ()
)
on btn02 pressed do
(
save02 = getMAXSaveFileName ()
)
on btn03 pressed do
(
)
)
createDialog rollout01
but it didn't save anything.... :-S
I tried with this code:
actionMan.executeAction 0 "40007"
but it save only one of the 2 files (the last i saved).
so I don't know how to keep in memory the file path for each button.
And when i press on the btn03 button, how can i save the 2 files at the same time????
thx in advance for your help 😉