CeraBox only works with anchor tags, so there should be real tags
there that hold the information.
What you could do in your situation is make an anchor element that is
added to the CerBox, example;
<a href="
http://google.com" id="flash-use-me" title="Google"
style="display:none"></a>
<script>box.addItems('#flash-use-me');</script>
Then make a function that flash can execute and pass arguments to so
you can edit the anchor for different results. Also the box.addItems
method detects which type of content it will be, so if you are gonna
pass image links your anchor href should end with an image type like
".jpg". So instead of
http://google.com it should be something like
http://blabla.com/.jpg. I don't think it has to be a valid URL as it
will not be loaded until requested.
flashCallMe(href) {
$('flash-use-me').set('href',href).fireEvent('click');
}
I haven't tested this code and don't think it is a very clean way.
CeraBox is not really mend to be used in this way. I will throw this
in the group and see if we can make it more dynamic in the future.