I have two arrays in my frame 1 root timeline
clips[menu,middle,background,bottom]
colours['0x336666', '0xCC9933', '0x1234cc', '0x1111BB']
When a user clicks on certain buttons it adds colors to the colours array, at specific places
on(release){
colours[1]=0x123456
}
on(release){
colours[3]=0x546534
}
Several buttons will add colour value elements to the array
When the user hits the 'save' button the 'colours' array should be saved on his computer as a saved object (.sol)
When the user returns, the array elements he saved should be loaded into the colours array.
How should I do this?
clips[menu,middle,background,bottom]
colours['0x336666', '0xCC9933', '0x1234cc', '0x1111BB']
When a user clicks on certain buttons it adds colors to the colours array, at specific places
on(release){
colours[1]=0x123456
}
on(release){
colours[3]=0x546534
}
Several buttons will add colour value elements to the array
When the user hits the 'save' button the 'colours' array should be saved on his computer as a saved object (.sol)
When the user returns, the array elements he saved should be loaded into the colours array.
How should I do this?