Dynamically Loading Multiple Images On One Frame
Hi,
If some one could help me with this I would be very grateful. Is it possible to dynamically load more than one jpg into a frame at one time? My actionscript only loads the last image.
KirupaForum > Flash > Flash 8 (and earlier) > Flash MX
Posted on: 10-31-2003, 03:47 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Loading Multiple Images Dynamically
Ok, i've searched the Forums and tried to figure this out, with other people's examples, but I have no luck so far.
I am making a online catalog and want to dynamically load multiple JPGs at the same time, so that say, 6, jpgs will be shown on the stage at one time. I could go about this by making individual movieclips, but I want to make them dynamically. I'm not sure positive how to do this, and maybe it's staring me in the face, but if somebody could help me i'd appreciate it.
Thanks.
Loading Multiple Images Dynamically
Hi Folks
Would appreciate some help on this AS3.0 problem. I'm reading an XML file no problem and getting a list of images.
The problem I'm having is trying to get them to load into dynamic movie clips.
The code is below if anyone can help, I'd be very grateful.
Code:
package {
import flash.display.*;
import flash.events.*;
import flash.ui.Keyboard;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.text.*;
public class MyContent extends MovieClip {
private var externalXML:XML;
private var loader:URLLoader = new URLLoader();
private var request:URLRequest = new URLRequest("five.xml");
private var myLoader:Loader = new Loader();
private var yPos=0;
public function MyContent() {
init();
}
private function init():void {
loader.addEventListener(Event.COMPLETE, onComplete);
loader.load(request);
}
public function onComplete(event:Event):void {
var loader:URLLoader = event.target as URLLoader;
if (loader != null) {
externalXML = new XML(loader.data);
var pictLdr:Loader = new Loader();
var max:Number = externalXML.entry.length();
trace(max);
for (var i:uint=0; i < max; i++) {
var mc:MovieClip= new MovieClip();
mc.name="clip"+i
stage.addChild(mc);
mc.addChild(myLoader);
trace(externalXML.entry[i].img);
var url:URLRequest = new URLRequest(externalXML.entry[i].img);
myLoader.load(url);
mc.x=0;
mc.y=yPos;
yPos+=150;
myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imgLoaded);
function imgLoaded(event:Event):void {
trace("image Loaded");
}
}
} else {
trace("loader is not a URLLoader!");
}
}
public function linkHandler(linkEvent:TextEvent):void {
trace(linkEvent.text);
}
}
}
I am managing to trace that they're all loaded, they just don't display! Yet it works with 1 when not using the for loop.
Monkey
Dynamically Loading Images Into Dynamically Loaded MovieClips
I'm read through many of the posts and found several on this topic, none, however, that addressed all that I need addressed. I've tried several of the suggestions but so far nothing seems to work.
What I want to do is alter the width of images loaded dynamically into a dynamically loaded set of movieclips. all of the widths of the images are different, but i want them set to the same width. The width seems to stay at zero, however, and I cannot seem to change it.
Here is my code:
for (var i:Number = 0; i < 8; i++){
var mc = attachMovie("rect_mc", "r" + i, this.getNextHighestDepth());
mc._x = 90 + (i * (mc._width+5));
mc._y = 375;
mc.img_txt.text = "image" + (i+1);
mc.img_mc.loadMovie("myPic" + (i+1) + ".jpg");
mc.img_mc._xscale = mc.img_mc._yscale = (50/mc.img_mc._width) * 100;
};
The last line is the one that does not function properly.
I'd appreciate any help anyone can provide. thanks.
Dynamically Preloading Multiple Images
I've been searching on how to dynamically preload multiple images into my site. I know how to set it up to load dynamically each time someone clicks a thumbnail, but I'm looking for how it's done on "livebooks" where all the images of X gallery are preloaded so fast once the gallery is clicked, I'm assuming it's done dynamically because of the size of each image and the speed that "livebooks" allows. Any ideas?
Bid Problem To Load Multiple Images Dynamically
hello there, am a newbie to Flash.
i need to do something like http://www.habitclothing.com but entirely in flash and PHP . i need to have the scrolling and dynamic loading of the small images in Flash/php( currently it is in DHTML and php).
can somebody tell me how do this plz help me out
Load Multiple External Images Dynamically?
I'm probably being an idiot here but is it possible to load a series of images into a dynamically created movieclip? I'm under the impression you can't create an empty movieclip and add frames to it dynamically?
Basically I would like the equivilant of loading a series of images into flash and placing them on seperate frames in a movieclip so they animate when the movieclip is played?
jbw
Preloading Multiple, Dynamically Loaded, Thumbnail Images
Hi,
I'm trying to preload 5 dynamically loaded jpegs... I'm stuck. Here's what I have so far:
Code:
//Preloader for images
allthumbs = _root.Content.gallery.imageall.image1_mc + _root.Content.gallery.imageall.image2_mc + _root.Content.gallery.imageall.image3_mc + _root.Content.gallery.imageall.image4_mc + _root.Content.gallery.imageall.image5_mc;
bytesLoaded = getBytesLoaded(allthumbs);
percent = bytesLoaded/getBytesTotal(allthumbs)*100;
percent = Math.round(percent);
imagePercent = percent;
preLoadBar._width = percent*3.4;
if (percent == 100) {
_root.Content.gallery.preLoader1._visible = false;
} else {
_root.Content.gallery.preLoader1._visible = true;
}
Any ideas?
-Craig
Preloading Multiple Images And Audio Clips Dynamically
Does anyone have pre-exisiting code that would allow me to preload multiple images and audio clips dynamically? I have created a XML-driven image slideshow with audio clips and I would like to preload everything before the slideshow begins, preferably with a progress bar. Please help, this is really urgent!!
Many Thanks.
Preloading Multiple Images And Audio Clips Dynamically - Urgent
Does anyone have pre-exisiting code that would allow me to preload multiple images and audio clips dynamically? I have created a XML-driven image slideshow with audio clips and I would like to preload everything before the slideshow begins, preferably with a progress bar. Please help, this is really urgent!! I am using Flash MX 2004.
Many Thanks.
Loading Swf Dynamically (multiple)
i am new to flash
I want to create an application/movie that does the following:
main page has navigation buttons...
main page has a 'container' where i load different movies depending on the button clicked...
is the a sample fla file or tutorial out there that can help me?
Dynamically Loading Images?
Coincidentally, I have two clients who are both wanting photo gallery type applications for their sites...
Is there a way to dynamically load images into your movie from a directory (i.e. without putting them into your .swf beforehand)?
I'm pretty sure there isn't, but I wondered if anyone else had thought about it...
Dynamically Loading Images.... Help
Thanks for coming in.
Pardon my inquiry if this is a common question, but I searched the forums and didn't get an answer.
How do I dynamically load images by themselves? This as always something that amazed me about MX but I have no clue how to do it and all my help and supports don't list it (at least where I'm looking).
Thanks,
-Kac
Dynamically Loading Images
I know how to dynamically load a jpeg image using the loadMovie() function, but is there a way to load .gif or .png images dynamically?
Thanks.
Loading Images Dynamically
Hello! there
i am trying to Load images Dynamically on Square Graphic,Which was created dynamically.
like,i got horizontal scrolling Slides,on each slide .Jpg Images has to be loaded dynamically.
If you are not following what I am trying to say,here i am sending FLAa & SWF Files,please take a look and send me the solution for this
Thanks
Sridhar
Loading Images Dynamically
I just read something about loading images dynamically - does that mean that the images will load only when referenced? I have a file that contains a lot of images, and I don't want them all to load right away - the file takes far too long to load. Is it possible, then, to have the images load only when called on? In other words, have an image load only when the user clicks the button that is referencing the image?
Thanks,
Michelle
Loading Images Dynamically?
Hello... Thanks for any help in advance.
I am trying create a slide show type of thing for my website. The problem is I do not want to keep opening up the Flash movie and re exporting it everytime I need to add a picture. Is there any way that I can create an Object that will hold the place of the picture and then point it to the directory with the pictures in it? Then it (the action script or something) would just look for more picutres or something in the folder? Im sure there is aname for this..
Apologies for my dumbness... Im a musician not a programmer.
Thanhs again
Dynamically Loading Images
So I tried to do a tutorial for dynamically loading images from a UI List.
but the tutorial was outdated and I'm using MX 2004.
Apparently, Macromedia changed the syntax around a bit, and some things are different.. thats why I need help
In Flash MX, there was Change Handler for the UI List, in MX 2004 there isn't one, what do I do now?
Also, .getSelectedItem isn't recognized, but .getSelected is, is it the same thing?
Dynamically Loading Images
Hey,
First of all, i apologise if this has been posted elsewhere (which im sure it has been) but i cant find it
Ive made an image gallery with various thumbnails on, and when i roll over a thumbnail i want it to load the larger image into a textbox with variable and instance name 'image'
The button actionscript is as follows:
on (rollOver) {
title="title_1";
number="image 1";
image.htmlText="<img scr='./image_1.jpg'>";
}
on (rollOut) {
title="";
number="";
}
the settings for the textbox are:
dynamic
render as html
multiline, no wrap
the title and image variables there are just other text boxes...
thanks for any help
-Ross
Loading Images Dynamically
Hey people! I designed a photo gallery but something tells me that there has to be a better way. I loaded 40 images onto a page and I had to link from the thumbnail to the main image.
Can anyone point me to a tutorial that will help me learn to make dynamic (actionscript) photo galleris? Thanks
Help With Dynamically Loading Images
I am making a menu that loads things dynamically. So far I have it loading a link, button title, and a short description of something. I need a background image for each of the 5 "slots" in the menu and I dont know how to load a certain image into that certain spot. I hope that is clear enough... I hope you can help me out with this!
Dynamically Loading .png Images
I'm using this tutorial and Flash MX Pro 2004:
http://www.webwasp.co.uk/tutorials/b...MX04/index.php
It works find with .jpg images ... but I have issues when trying to use .pngs they never load ... is their something special I need to know about .png images?
[F8] Loading Images Dynamically
I am able to load images dynamically into a space after a thumbnail is clicked . However i want a fancy little loading animation to display whilst the image is being dynamically loaded, how is this done? furthermore, can i load a movieclip into this space by simply changing the path to refer to a movielcip instrance name. i ask this because instead of just an image i would like the image to fade in as well as some text to appear with a typewriter effect which i can do...
thanks
AC
Loading Images Dynamically
Well a little different from the usual, I have already built a small flash gallery that loads images in from a folder using xml etc but this there a way that I can simply read the images in directly from the folder.
In php/ASP I can program a small piece of code that can simply look into a given folder and display the contents of that folder etc, but is there a similar way rather than using xml, basically so if I add a new image to the folder the flash would pick this up, rather than me also up date my xml page as well
[F8] Dynamically Loading Images
I know that text can be dynamically loaded, can images be dynamically loaded?
If so is there a good tutorial or example out there?
Loading Images Dynamically
I am loading images dynamically into a movieclip. When I test the movie locally on the server it works fine but as soon as I test it through the browser the images done load. Keeps saying waiting for server ??
cheers
firdosh
Loading Images Dynamically From Xml
I have text loading in from and xml document, but I"m having trouble loading in the images.
Code within flash:
var questionArray:Array = new Array();
var currentQuestion:Number = 0;
var availableAnswers = new Array();
img = new Array();
xmlData = new XML();
xmlData.ignoreWhite = true;
LoadQuestion();
if (success) {
//questionXML = RandomizeArray(this.firstChild.childNodes);
questionXML = this.firstChild.childNodes;
for (i=0; i<questionXML.length; i++) {
answerXML = questionXML[i].childNodes;
var answerSet:Array = [];
for (z=0; z<answerXML.length; z++) {
answerSet[z] = new Array();
answerSet[z].push(answerXML[z].attributes.txt, answerXML[z].attributes.correct);
}
newQuestion = new Question(questionXML[i].attributes.txt, answerSet);
questionArray.push(newQuestion);
}
NextQuestion();
code in xml document:
<question txt="In a cardiac arrest episode, atropine might be administered to: " img="Sunset.jpg">
<answer1 correct="true" txt="Treat severe bradycardia" />
<answer2 correct="false" txt="Suppress PVC’s" />
<answer3 correct="false" txt="Treat severe tachycardia" />
<answer4 correct="false" txt="Treat cardiac preload" />
</question>
Can anyone help me pull in the images
Dynamically Loading Images, But With .......
a pain in the neck addition
Hi All
wonderin if someone could help or point me in the right direction
What i am trying to do is load images dynamically and have them scrolling from right to left, the problem lies in the fact that i need to pick on certain images and have them increase in size when at the centre of the movie and have some added text appear
is this possible to do with action script, i sort of know how it would work structurally, but lack in the code department
I have struggled with this for a while and searched endlessly for some examples, but to no avail, any help would be appreciated
regards
Al
Help Loading Images Dynamically
Hi, I'm new here.
I have a question, I have a slideshow created in Flash MX 2004 which transitions through 3 images with a fade between each slide. It runs by itself and requires no action from the viewer to change slides unless they want to stop it on one slide they can then navigate through using the buttons.
My problem is that I would like to have these images load from an external folder rather than be placed in the movie themselves because they change every week and it would be more convenient if all we had to do was replace images and keep using the same swf. Every tutorial for this requires the user to click on something to make an image load. Is there a way to just call on the images as soon as the slideshow loads?
Loading Images Dynamically
When you load an image into flash using the code
Code:
loadMovie("images/"+vh_p3graphic+".jpg", "Pic3");
is there away to resize the image or control the image size so that no matter what the original image size is, it fits into the mc? I don't want the mc resizing to fit the image.
Is there away to specifiy the mc dimensions and lock them in?
If my user uploads an image to big for the diplayed area, I want to fit the image into a specified area?
Or instead of doing that, can I somehow check the image size and if it's bigger than I want for my mc, replace it with a custom image that says something like "Sorry your image is to big to fit here"
Thanks
Dynamically Loading Images
Could someone help?
Is there a way of loading images in flash dynamically, from a certain folder, that do not have set filenames with a recurring naming convention?
e.g. loading images to a flash slide show from a folder that contains images downloaded from a digital camera such as Dsc001.jpg, Dsc003.jpg, Dsc004.jpg (certain files in the sequence missing)
The Slideshow sample provided with flash MX uses the increment method (which is what I had in mind), but what happens if certain files in the sequence have been deleted? Perhaps using a loop would be suitable, that loops until it finds a file and then displays it?
Any suggestions would be appreciated along with code as I am fairly new to Actionscript (I do have a fair idea though!). Thanx
Loading Images Dynamically
I have seen a lot of questions and support on loading images dynamically into Flash but I am pretty rusty with my Actionscript and have not used XML. Is there some very simple actionscript code that can load various images into my flash movie from a specific directory. Or is there a good step-by-step tutorial on loading external images that does not get too bogged down in technical detail. Any help for a newbie would be appreciated.
Loading Images Dynamically
I have seen a lot of questions and support on loading images dynamically into Flash but I am pretty rusty with my Actionscript and have not used XML. Is there some very simple actionscript code that can load various images into my flash movie from a specific directory. Or is there a good step-by-step tutorial on loading external images that does not get too bogged down in technical detail. Any help for a newbie would be appreciated.
Dynamically Loading Images
I want to be able to load images dynamically. Like I call them 01.jpg, 02.jpg and so on…
Now, if I only have say 5 images, when it gets to the fifth and you click next it takes you back to the first one again BUT if I add more images [06.jpg, 07.jpg…] it finds them without me having to update the script.
I know this must be a pretty easy one, but I’m all alone in the office and I can’t figure it out.
Would it be possible to customize this code to do what I want or is it a job for PHP??
_root.createEmptyMovieClip("imageloader",1);
container.loadMovie("photo.jpg");
container._x = container._y = 50 ;
Any help will be greatly appreciated.
Thanx in advance
Dynamically Loading Images?
Hi, I am trying to dynamically load a set of images into flash.
I have the current file made in PHP and HTML which I am converting to flash.
http://gazler.com/bd/gallery.php
I have then printed the values from one of the photos in this page.
http://www.gazler.com/bd/galleryflash.php
I can display the image width, height, filename, etc. fine, but when it comes to loading the image, I get an error.
Code:
Error opening URL "http://gazler.com/bd/photos/thumbs/undefined"
ActionScript Code:
stop(); loadVariables("<a href="http://gazler.com/bd/galleryflash.php" target="_blank">http://gazler.com/bd/galleryflash.php</a>", textStatus, "GET");this.pathToPics = "<a href="http://gazler.com/bd/photos/thumbs/" target="_blank">http://gazler.com/bd/photos/thumbs/</a>";this.pArray = [textThumb];this.fadeSpeed = 20;this.pIndex = 0;loadMovie(this.pathToPics+this.pArray[0], _root.photo)MovieClip.prototype.changePhoto = function(d) { this.pIndex = (this.pIndex+d)%this.pArray.length; if (this.pIndex<0) { this.pIndex += this.pArray.length; } this.onEnterFrame = fadeOut;};MovieClip.prototype.fadeOut = function() { if (this.photo._alpha>this.fadeSpeed) { this.photo._alpha -= this.fadeSpeed; } else { this.loadPhoto(); }};MovieClip.prototype.loadPhoto = function() { var p = _root.photo; p._alpha = 0; p.loadMovie(this.pathToPics+this.pArray[this.pIndex]); this.onEnterFrame = loadMeter;};MovieClip.prototype.loadMeter = function() { var i, l, t; l = this.photo.getBytesLoaded(); t = this.photo.getBytesTotal(); if (t>0 && t == l) { this.onEnterFrame = fadeIn; } else { trace(l/t); }};MovieClip.prototype.fadeIn = function() { if (this.photo._alpha<100-this.fadeSpeed) { this.photo._alpha += this.fadeSpeed; } else { this.photo._alpha = 100; this.onEnterFrame = null; }};this.onKeyDown = function() { if (Key.getCode() == Key.LEFT) { this.changePhoto(-1); } else if (Key.getCode() == Key.RIGHT) { this.changePhoto(1); }};Key.addListener(this);
The code is from the photo gallery in the tutorials.
Any help is appreciated. Cheers, Gaz.
Dynamically Loading Images
Hey, I'm having some trouble with dynamically loading images. I just want to load one, plain and simple. Just... doesn't seem to be working for me. Could someone make me an example of this and just have the image load onto a plain background?? Help on this would be much appreciated.
Loading Images Dynamically:(
Don't beat me up if its been asked before >_<
I done a search but it was all photogalleries and loading random images without caching etc...
I was wondering how to load an Image externally. If i replace that image in the directory then the new image ill be loaded in flash.
thanks in advance ppl
Take care and good luck
Loading Images Dynamically
i would like to load my images from external files, and have them come in with a preloader for users on a slower connection
i would like to be able to specify properties such as _x, _y, _width etc. for the loaded images
thank you very much for any help you can provide
Dynamically Loading Images
i have done a bit of actionscripting involving loading .jpgs from an xml list based on a drop down menu, but i was trying to figure out if there was any way to load either gifs with transparent backgrounds, or similar, different shaped image files from an external source.
basically, im trying to load an image of a doorknob and an image of a door and have a user drag the doorknob onto the door and see what it looks like
any help would be greatly appreciated. thanks!
Dynamically Loading Images
I need 20 images dynamically loaded, horizontally and separated by 10px of space. The images are in my images folder, named 1.jpg, 2.jpg, 3.jpg., etc, and are the same height (432px). The images are to be controlled by two buttons that scroll the images left or right. Can anybody help me out with this? (FLASH MX 2004)
I'm quite the amateur when it comes to dynamically loaded MCs and OOP (if that even applies).
Dynamically Loading Images
Hey everyone ive been trying to get this figured out for weeks with no help
Im trying to dynamically load images form a serer in Flash, i know it can be done for JPG, but i need the transparent properties of GIF.
I checked out this tutorial at kirupa
http://www.kirupa.com/developer/mx/loading.htm
But it too talks about only JPGs
Anyone have any ideas suggestion??
Dynamically Loading Images?
Hi, I am trying to dynamically load a set of images into flash.
I have the current file made in PHP and HTML which I am converting to flash.
http://gazler.com/bd/gallery.php
I have then printed the values from one of the photos in this page.
http://www.gazler.com/bd/galleryflash.php
I can display the image width, height, filename, etc. fine, but when it comes to loading the image, I get an error.
Code:
Error opening URL "http://gazler.com/bd/photos/thumbs/undefined"
ActionScript Code:
stop(); loadVariables("<a href="http://gazler.com/bd/galleryflash.php" target="_blank">http://gazler.com/bd/galleryflash.php</a>", textStatus, "GET");this.pathToPics = "<a href="http://gazler.com/bd/photos/thumbs/" target="_blank">http://gazler.com/bd/photos/thumbs/</a>";this.pArray = [textThumb];this.fadeSpeed = 20;this.pIndex = 0;loadMovie(this.pathToPics+this.pArray[0], _root.photo)MovieClip.prototype.changePhoto = function(d) { this.pIndex = (this.pIndex+d)%this.pArray.length; if (this.pIndex<0) { this.pIndex += this.pArray.length; } this.onEnterFrame = fadeOut;};MovieClip.prototype.fadeOut = function() { if (this.photo._alpha>this.fadeSpeed) { this.photo._alpha -= this.fadeSpeed; } else { this.loadPhoto(); }};MovieClip.prototype.loadPhoto = function() { var p = _root.photo; p._alpha = 0; p.loadMovie(this.pathToPics+this.pArray[this.pIndex]); this.onEnterFrame = loadMeter;};MovieClip.prototype.loadMeter = function() { var i, l, t; l = this.photo.getBytesLoaded(); t = this.photo.getBytesTotal(); if (t>0 && t == l) { this.onEnterFrame = fadeIn; } else { trace(l/t); }};MovieClip.prototype.fadeIn = function() { if (this.photo._alpha<100-this.fadeSpeed) { this.photo._alpha += this.fadeSpeed; } else { this.photo._alpha = 100; this.onEnterFrame = null; }};this.onKeyDown = function() { if (Key.getCode() == Key.LEFT) { this.changePhoto(-1); } else if (Key.getCode() == Key.RIGHT) { this.changePhoto(1); }};Key.addListener(this);
The code is from the photo gallery in the tutorials.
Any help is appreciated. Cheers, Gaz.
Dynamically Loading Images
Hey, I'm having some trouble with dynamically loading images. I just want to load one, plain and simple. Just... doesn't seem to be working for me. Could someone make me an example of this and just have the image load onto a plain background?? Help on this would be much appreciated.
Loading Images Dynamically:(
Don't beat me up if its been asked before >_<
I done a search but it was all photogalleries and loading random images without caching etc...
I was wondering how to load an Image externally. If i replace that image in the directory then the new image ill be loaded in flash.
thanks in advance ppl
Take care and good luck
Loading Images Dynamically?
I would like to know if it is possible to load an image on top of another one using load movie, but without loading it on the same level. My problem is that I can get an image to load, and one on top of that, but they are on the same level and so there is a blank black screen where the images are in between loading.
I tried using loadMovieNum() method which worked perfectly because I could specify the level they were on, but with loadMovie() I am unable to do this.
Right now in my code I have this:
StagePictures.createEmptyMovieClip("e_mc" , 1);
Stage Pictures is a movie clip I created manually and placed into the main stage.
Within StagePictures I have this actionscript code:
onClipEvent (load) {
StagePictures._lockroot = true;
e_mc.loadMovie("somejpg");
}
onClipEvent(enterFrame) {
if (Key.isDown(17)) {
if (Key.isDown(Key.CONTROL)) {
if (Key.isDown(65)) {
e_mc.loadMovie("ANewJpg");
}
}
}
}
My problem is when it loads the new image, The screen refreshes making a black spot in the stage because they are being loaded on the same level. Is it possible for me to use loadMovie to load the image on a new level within the StagePicture MC in the nested clip e_mc? If not, how can I go about switching between images on a conditional event without using the same level?
Thanks
Sam
Loading Images Dynamically
Hi can anyone tell me how can i load a different image each time i load a flash movie ?
for eg. i have an image in the library, now each time i hit the refresh button of my browser or load the movie again, i want flash to load a different image from the library on each reload.
Loading Order - Dynamically Loading Images
Flash 5
I am trying to control the loading order of dynamically loading images. If I have 12 placeholders (4 columns by 3 rows) for the images (e.g. 12 instances of a movie clip) each of which loads a different JPG or SWF. I want the 1st instance/placeholder to completely load the image dynamically before the next instance starts to load the next image and so on. How can I ensure image1 is dynamically loaded before image2 and then image3 etc...
If I put each instance on a separate frame on the timeline will it stop on each frame until the instance is loaded before moving onto the next frame? I have seen the effect im trying to recreate on both:- www.rui-camilo.de and www.andyfoulds.co.uk
Many Thanks in advance.
Dynamically Loading Images With Flash
Hey all,
I have an interesting question and am wondering who has explored this idea. We have created an application that dynamically creates an image with "company logo" and saves it in the desired format. I would like to extend this functionality with Flash. All I need Flash to do is be able to make a call to this dynamically generated image file and put it inside Flash. I have some ideas about how I "might" be able to get this to work. Do any of you guys have any bright ideas?
Basically I beleive that PHP can write Flash files. That being the case, can PHP take an image and "wrap" it in a Flash movie(or extensions). I think I would then be able to call the image a MAIN Flash movie that way.....
Any ideas are greatly appreciated! Thanks all!
- Sigma
|