Hi,
I am evaluating flipabit right now and wonder how I can persist a page state. It seems that the page state is purged after a navigation through several other pages, maybe due to memory handling issues.
I wan to come back to any specific page and see the same things (e.g. selected images from an image widget) as when I left the page. Right now widgets get reset to their default state sometimes, which I think is due to memory handling issues.
How can I either ensure that widgets states are kept or how to persist and restore then upon page leave/enter?
W.
Update:
Seems to be a bug in the Image widget. The index is correct but the image shown is the first one. If I run the following code upon entering the page the correct state is displayed.
function () {
var w = document.childByName(“IMG”);
w.content.script.actionListForward();
w.content.script.actionListBackward();
}
Any suggestions? Known issue? The workaround above results in flickering of all images everytime the page is entered, this isn’t a real solution.