Gotta love Opus HTML5.
It is possible to add restore state functionality. The code is:
Code:
function objectByStateVisibility(obj,state){
var o = obj.m_objectName;
var p = obj.m_parent.m_objectName
if (state == "hide") {
window._DWPub[p][o].m_initiallyVisible = false
obj.Hide();
} else {
window._DWPub[p][o].m_initiallyVisible = true
obj.Show();
}
}
It works by overriding the default value (m_initiallyVisible) used to build the page. It is used like this:
Code:
objectByStateVisibility(blueFrame,'hide')
Where 'blueFrame' is the name of the object and then whether to hide or show the object.
Please remember that because this is code based, you should ensure that both the page and object names are code compliant.
Download a working example from
http://www.live.interaktiv.co.uk/?section=files
code:
restorestate@digitalgrapevine.info</mack>