Is that possiable? Load pictures inside flash, tho the pictures is stored inside a folder directory? Or do I have to import it in flash? I dont want to do that because, it makes my swf larger, and I have about 60 photos…or do I make seperate swf movie files? and tell target etc to center on it? If anyone knows this, can you please explain to me how to process is done or a dircet tutorial? I want to minimize storage space, and have it show faster for people…So far I got the flash movie up, loaders etc, and sections, and words, now its just for the pictures part, I have a total of 8 sections, with information etc. and total size of the swf is about 600kb-1mb, and the others tuff if i import/embed tos how will amke it 5mb, thats too much…Help please:*( - Thank you everyone whos helped me so far
use loadmovie comand it will look somethignlike this
loadmovie(“image.jpg”, level or target clip goes here)
Grim
Try this tutorial:
I’m assuming you have Flash 5, so you’ll need to make a separate swf for each one.
actually it works…The Flash MX tutorial works for flash 5, I just had to edit some codes around, took a while…most flash MX doesnt work with flash 5, but some do, if you change some codings around, and that what sucks, cus you gotta figure which one needs to be, but thanks alot guys…
I also had another question, I posted it, about centering a chromless window, i posted below here, I didnt use the kirupa chrmoless tutorial instead i got it from chromless themself, tho they dont have a centering as in postioning it in the middle of any screen resoultion…800x600 to 15378612 etc
(the flash button) with its java script,
below is in the html
script language=“javascript”>
function openIT(u,W,H,X,Y,n) {
// CHECK THE BROWSERS
is=[];
is.dom = document.getElementById?1:0;
is.ua = navigator.userAgent.toLowerCase();
is.ie = is.ua.match(/msie/)||0;
// ONLY FOR IE
if (is.ie){
var CWIN=window.open(u,n,"fullscreen=1")
CWIN.moveTo(5000,0)
CWIN.resizeTo(W,H)
CWIN.moveTo(X,Y)
} else {
var CWIN=window.open(u,n,"fullscreen=1")
}
CWIN.moveTo(X,Y)
}
</script
where do i put ceneter etc? I dont know where it goes, i tried it all, where x and y is but it just makes my window disappear- thanks