I currently (still) use InDesign CS4 and I am thinking about getting CS6 (using the Cloud). However, I use a LOT of scripts and I wonder if I can keep on using that scripts or not...
Um...
Peter, that's really bad advice. That'll make any subsequent script which relies on CS5 or later features not work.
Either you should wrap that in a try/catch/finally, or use version folders.
Approach 1:
try{
app.scriptPreferences.version = 6;
// your script
}catch(err){
throw err;
} finally{
app.scriptPreferences.version = parseFloat(app.version);
}
Approach 2:
Create a folder in your scripts panel called "Version 6.0 Scripts", and place the script in that subfolder.
North America
Europe, Middle East and Africa
Asia Pacific