Hey guys
I did a pretty complicated “smart clip” that receives information from php (receives JPEG file names and their sizes). I figured out how to make a galery of all these Images but theres a small bug: I can use the movieClipLoader.loadClip(“url”, target) URL only with " " but not with variables.
myImage.loadClip(folder+“1.jpeg”, nowerwe.photo); works
myImage.loadClip(“Images/thumbs/1.jpeg”, nowerwe.photo); works
but
myImage.loadClip(“Images/thumbs/”+file, nowerwe.photo); doesn’t work
and
myImage.loadClip(“Images/thumbs/”+filestring+“jpeg”, nowerwe.photo); doesn’twork
I tried to figure it out like
path = “Images/thumbs/”+file
myImage.loadClip(path, nowerwe.photo);
file = 1.jpeg
path = “Images/thumbs/”+file
path = String(path)
myImage.loadClip(“Images/thumbs/”+filestring+“jpeg”, nowerwe.photo);
but there’s nothing that works…
Please, please help me!!!