Hi everyone, first thanks to take the time to read this message!
Now the problem, i am using this gallery component
http://www.mr10.net/components/gallery/
what im trying to do is, when you click on the large image or on a button it open this image in a pop-up.
What they say on the site
c. Optional: you can assign a clickHandler to the large pictures for enabling pop-ups or download options:
01 function clickMe(id) {
02 //get imagenode for this thumbnail
03 //βidβ counts from 1, XML counts from 0: hence the β-1β
04 var imageNode = myGallery.getXMLNode().firstChild.childNodes[id - 1];
05 trace(imageNode);
06 }
07 myGallery.setClickHandler(βclickMeβ, _root);
this is only example code and will do nothing more than display the xml node assigned the clicked picture in the output box.
http://www.mr10.net/components/gallery/manual/
Please help me!
thanks!