hey! could someone help me with this code…
right now im using…
this code for my button
[AS]
on (release) {
address = “media_data/drums600_450.jpg”;
target_winName = “photo”;
width = 600;
height = 450;
toolbar = 0;
location = 0;
directories = 0;
status = 0;
menubar = 0;
scrollbars = 0;
resizable = 0;
// sends data back to the function
openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);
}
[/AS]
and this code in that frame
[AS]
_global.openWinCentre = function(url, winName, w, h, toolbar, location, directories, status, menubar, scrollbars, resizable) {
getURL(“javascript:var myWin; if(!myWin || myWin.closed){myWin = window.open(’”+url+"’,’"+winName+"’,’"+“width=”+w+",height="+h+",toolbar="+toolbar+",location="+location+",directories="+directories+",status="+status+",menubar="+menubar+",scrollbars="+scrollbars+",resizable="+resizable+",top=’+((screen.height/2)-("+h/2+"))+’,left=’+((screen.width/2)-("+w/2+"))+’"+"’)}else{myWin.focus();};void(0);");
};
[/AS]
When it pops up the .jpg it obviously has a white border… I was wondering how I could make one html page maybe… or is there a way without making a html too pop up images in a browser without the white border… thing is have tonez of pics… soo its a hassel to make htmls for each pic please help