Storing/restoring/sharing state information for import/export scripts?

Hello,

My apologies in advance if this question is too ignorant for this forum.

Back in Blender 2.69, I was able to set the state of a button for an import/export script interface panel and it would retain that state between repeated invocations during the same session. After I migrated to 2.71, that functionality stopped working; now the interface always comes up with the defaults. Please could somebody let me know if there is a way to store state information for use by these scripts? If possible, I’d even like to store it across sessions.

Thank you.

do you use bl_options = {‘REGISTER’, ‘UNDO’} ?

If you register properties with options={‘SKIP_SAVE’}, that individual property shouldn’t remember the settings from a previous run (op props only). Maybe this is a default in 2.71?

I’ll check that. Thank you CoDEmanX.