Converting A Slide Show Into A Movie File
How can I take a slide show (with several frames) and convert it into a movie?
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Slide Show Image Dispears 3 Minutes After Slide Show Is Stopped - Why?
I have created a slide show with a stop button. The buttons stops; but after about 3 minutes of being stopped, the image just disappears and all I see is the movie's background. Does anyone know why this is occuring? If so, is there a quick fix for this issue?
PS: I used one of the goToAndPlay Key Frame events built right into my software; I assume it was this (to make movie stop):
Code:
on(release) {
stop();
}
SLIDE SHOW FROM EXTERNAL TXT FILE
Hi!
I want to make a text slideshow from the data stored in an external text file ... but dont know how to do it.
I didn't found no useful fla or tutorial
here on flash kit.
Do you know any solution???
Thanks!
Cejko
Slide Show With External XML File
Hi,
I'm working on a slideshow that generates images and also thumbnails of the images from an external XML file. The next and back buttons work by going up and down nodes in the XML object; the thumbnails also access the XML file, but they target the specific node of the image, as opposed to using relative commands. The problem is that if you click on a thumbnail and then go back to using the next and back buttons, the order goes back to wherever the sequence had last stopped with the next and back buttons as opposed to giving you the image after the thumb you just clicked, which is what you would expect. Can someone point me in the right direction for how to fix this?
Here's the URL to an uploaded sample of the code below:
http://shrink-art.com/susan/school/as2/lab2/lab2.html
Code:
var rootNode:XML; // the main XML node that contains all data
var totalSlides:Number; // the number of child nodes inside rootNode
var firstSlideNode:XML; // the first node in rootNode
var lastSlideNode:XML; // the last node in rootNode
var currentSlideNode:XML; // the currently diplayed node of information
var currentIndex:Number; // the number of the current slide.
var myXML = new XML();
myXML.load("slides.xml");
myXML.ignoreWhite = true;
myXML.onLoad = function() {
rootNode = myXML.firstChild;
totalSlides = rootNode.childNodes.length;
firstSlideNode = rootNode.firstChild;
lastSlideNode = rootNode.lastChild;
currentSlideNode = firstSlideNode;
currentIndex = 1;
updateSlide(firstSlideNode);
for (i=0; i<totalSlides; i++) {
makeThumb(rootNode.childNodes[i], i);
}
};
function makeThumb(newThumbNode, index) {
imagePath = newThumbNode.attributes.thumb;
this.createEmptyMovieClip("thumb_mc" + index, index);
with (this["thumb_mc" + index]) {
createTextField("slide_txt", index, 0, 40, 50, 20);
var my_fmt:TextFormat = new TextFormat();
my_fmt.font = "Verdana";
my_fmt.size = 10;
slide_txt.text = "Slide " + (index + 1);
slide_txt.setNewTextFormat(my_fmt);
_x = 220 + (35 * index);
_y = 80;
beginFill(0x996699);
lineStyle(1, 0x000000, 100);
moveTo(-1, -1);
lineTo(31, -1);
lineTo(31, 35);
lineTo(-1, 35);
lineTo(-1, -1);
endFill();
createEmptyMovieClip("holder_mc", -1);
holder_mc.loadMovie(imagePath);
}
this["thumb_mc" + index].onRelease = function() {
updateSlide(newThumbNode);
};
}
function updateSlide(newSlideNode) {
imagePath = newSlideNode.attributes.jpegURL;
slideText = newSlideNode.firstChild.nodeValue;
targetClip.loadMovie(imagePath);
}
next_btn.onRelease = function() {
nextSlideNode = currentSlideNode.nextSibling;
if (nextSlideNode == null) {
nextSlideNode = firstSlideNode;
currentIndex = 1;
updateSlide(nextSlideNode);
currentSlideNode = nextSlideNode;
} else {
currentIndex++;
updateSlide(nextSlideNode);
currentSlideNode = nextSlideNode;
}
};
back_btn.onRelease = function() {
previousSlideNode = currentSlideNode.previousSibling;
if (previousSlideNode == null) {
previousSlideNode = lastSlideNode;
currentIndex = totalSlides;
currentSlideNode = previousSlideNode;
updateSlide(previousSlideNode);
} else {
currentIndex--;
currentSlideNode = previousSlideNode;
updateSlide(previousSlideNode);
}
};
var bToggle:Boolean;
switch_btn.onRelease = function() {
if (bToggle == true) {
myXML.load("slides.xml");
bToggle = false;
} else {
myXML.load("slides2.xml");
bToggle = true;
}
}
stop();
Here's slides.xml if you need that -- slides2.xml is essentially the same:
Code:
<Slides>
<slideNode jpegURL="images/image1.jpg" thumb="images/thumbs/staff1.jpg">Shannon Dammann</slideNode>
<slideNode jpegURL="images/image2.jpg" thumb="images/thumbs/staff2.jpg">Stephanie Ezust</slideNode>
<slideNode jpegURL="images/image3.jpg" thumb="images/thumbs/staff3.jpg">Henry Harsch</slideNode>
<slideNode jpegURL="images/image4.jpg" thumb="images/thumbs/staff4.jpg">Jean Harsch</slideNode>
<slideNode jpegURL="images/image5.jpg" thumb="images/thumbs/staff5.jpg">Gus Kaufman</slideNode>
<slideNode jpegURL="images/image6.jpg" thumb="images/thumbs/staff6.jpg">Jo Lewis</slideNode>
</Slides>
Help With Movie Slide Show
was wondering if i might get a hand with this code.
I want to create a movie slideshow - so... i would need a root FLA...and load subsequent and unlimited movies into it. ex//
when movie_1.swf is over, move_2.swf starts, followed by movie_3.swf, and then looping back to moive_1.swf, but make it dynamic so you can add more files later....just by simply copying and pasting a previous SWF in the same directory and simply editing its associated text file to change content.
I think i've got the logic somewhat down....but i think i need it spelled out as i'm not much of an Action Scripter
Code:
//first, make a blank new symbol named mcLoader in root.fla then add this line
mcLoader.addListener(mcListener)
//in the index movie i.e. movie1.swf
var varNum = 1
mcLoader.loadClip(varMovieName)
function movieOver() {
varNum+1
mcLoader.loadClip "movie_"+varNum+".swf"
}
mcListener.onLoadError() = function(errorCode) {
varNum = 1
mcLoader.loadClip
}
//then stick this in the other movies on the last frame
_root.movieOver
would that work at all....i thank you for your help.
Newbie
Movie Control - Slide Show
hi,
need help with my movie. i want to control moving pictures like in a slideshow...with the difference that the pictures i want to show should move from right to left and vice verca. the whole thing should be controlable via 'next' and 'previous'-buttons. so far with the idea. the problem is, that i just don't know how to do that. the movie attached shows an example how i figured it out. can anyone help?
noodle
[F8] Can I Have A Slide Show Preload Later In The Movie?
If I wanna have one movie that has a lot of images not exported to first frame....
Can i have a movie work on the first three frames.. and when it goes to the 4th, it preloads the images, then goes to the 5th...
working like two SWFs
would that work?
Movie Clip Slide Show
Hello! I am placing the slide show template from Flash CS3 inside of a movie clip, but it is not working! I’ve exhausted any ideas I had during the past 8 hrs! I’ve even tried using other slide shows, but no luck! What I am trying to do is, once a button is clicked from the home page (the site has only 1 scene), a movie clip slides in, holding a slide show… Is this possible? Would you be able to direct me to a tutorial or give me an idea of what I am doing wrong?
I really appreciate your help!
Thanks!
Slide Show Question Load Movie?
Hey All.
I was wondering if it is possible to create a movie clip that will load .jpg's and fade them in and then on unload fade them out. I would also want to build a preloader into the movie clip that would show a spinning symbol or something until the image was loaded.
If the answwer is yes maybe someone could point me in the direction of a tutiorial.
Thank you, D
Resizing Movie In Image Slide Show
i'm trying to make a slide show
under the image is a grey bar that has to resize to every new image width.
i found this kind of effect on this very nice site of a german photographer
http://www.schmidtfoto.de/
i would like to implement this into my design
however ... how do you make this kind of thing?
http://www.danda.be/shared/kvd.jpg
i tried to make it by making some changes to a script i found a kirupa, but ... i don't get the right result.
regards
stijn
Resizing Movie In Image Slide Show
i'm trying to make a slide show
under the image is a grey bar that has to resize to every new image width.
i found this kind of effect on this very nice site of a german photographer
http://www.schmidtfoto.de/
i would like to implement this into my design
however ... how do you make this kind of thing?
http://www.danda.be/shared/kvd.jpg
i tried to make it by making some changes to a script i found a kirupa, but ... i don't get the right result.
regards
stijn
Slide In Photo Slide Show(actionscript Newbie)
Hello good pple of the forum,
I have about four jpeg pictures, wat i want to do is a slide show. What i want is a movie whereby the first pic would slide up vertically, followed by the second pictures, third and fourth.
Thank you so much for your anticipate reply.
Cheers
Why Does Slide Show Image Dispears After 3 Minutes (When Show Is Stopped)
I made a slide show with navigation buttons, but when the slide show is stopped for more then 3 minutes; the image just disappears. Here is the code I am using:
First Actionscript
Code:
loadMovie(""+photo1+"","mc1");
_root.mc1._xscale = 80;
_root.mc1._yscale = 70;
_root.mc1._alpha = 0;
Second Actionscript
Code:
var speed = 5
onEnterFrame = function() {
_root.mc1._alpha += speed
}
Then I tried this; the image did not disappear this way, but the transitional effect did not work.
First Actionscript
Code:
_root.loadMovie(""+photo1+"","mc1");
_root.mc1._xscale = 80;
_root.mc1._yscale = 70;
_root.mc1._alpha = 0;
Second Actionscript
Code:
var speed = 5
onEnterFrame = function() {
_root.mc1._alpha += speed
}
What do I need to do, too make sure image continues to display?
PS: I am sending query string from HTML to Flash to display variables (ie. movie.swf?photo1=mypic.JPG)
Converting Swf File To Broadcast Quality Movie File
I'm using a Patrick Jansen effect in flash and if I try to export it the way I usually do for movie credits - ie export to quicktime - all I get is a grey box. The only way I can get the movie into a quicktime file correctly is to save the file as an swf then use "swf and flv player" to export each frame as a tif then recompile in quicktime.
Is there a program that will convert the SWF to quicktime in one go and keep the quality? It's for a movie, so I need it very high res.
thanks in advance,
(mac os x 10.4.9 G5 dual 2ghz, internal 250 and 350hd, external 500gb, 4gb ram)
[CS3] Slide Out Menu W/ Flash Slide Show
I stumbled across this website and figured you may be able to help me. Since I am the "computer guy" at our church, I have been asked to design a website for them. I know the very basics of website design but figured I'd give flash a try. I have attached what I would like our menu to look like. This was designed in Photoshop as is the rest of the website (not shown). Basically, I want the pictures to become a Flash slideshow and then the menu to slide out to the left when the mouse is over it and whichever word (HOME, ABOUT US, etc) the mouse is over, that word will slide back to the right to the original position. Then, if someone clicks HOME it will go to the Home page and such. I also want the menu to slide back when the mouse is not over it. How in the world do I do this? It's an idea I had in my mind but unfortunately I don't know enough about Flash to do this. If someone can step me through this step-by-step or has any code, that'd be great. Thanks in advance guys!
Importing Strings Into A Text File And Converting Them In The Movie For Use.
I have a text file, in that text file there are several strings that look like this.
&&S1=[room,250,1]&&
&&S2=[room,252,1]&&
&&totalRooms =2&&
Any they go on like that. Now what I am wanting to do is to load this text file and convert the strings into items that can be used in the movie.
The code I have tried using for this is
code:
function buildInfo() {
for (i=1; i<=totalrooms; ++i) {
foo = "T"+i;
foo2 = "S" + i;
foo = foo2.split(",");
trace("foo:"+foo[0]);
}
}
Now I was expecting this to make the S1 into T1 with the information from text file. This is not working, when I run the movie the trace("foo:"+foo[0]); returns the actual name of the S1 file and that is it. I am just not sure what I am doing wrong. Thank you for any help. I f I have not made myself clear enough, please let me know.
Converting A PDF To A Flash FLA File Without Converting To An Image First?
Basically, I'm building a digital catalogue that runs off a CD and uses a Flash 'page turning component' to display the pages. Certain pages will have links that use Flash's Fscommand call to open Word and Excel documents.
Has anyone got any bright ideas of how to Convert a PDF to a Flash FLA file without converting to an image first?
I know I can open a PDF in Photoshop, save as a PNG or JPG and then import this into Flash, however the quality isn't brilliant. If you use a hi-res image, then you get a hi-res file size...
Currently, the best way I have found, is to open the PDF in Illustrator, then export it as a SWF. Illustrator converts all text to shapes and you end up with a small SWF, yet great quality when displayed in larger sizes. As I'm currently using a page turning flash component that loads SWF files, I need the quality to be good for the 'Zoom' function.
I've found an Illustrator script that will do the hard work via a 'batch' process, so I can take a 100 page PDF and convert the whole lot to 100 SWF files while I drink tea and 'look busy' and read a magazine, but the problem I have is that I need to add a layer of buttons to several of the SWF files to add a little functionality....
I do have a SWF to FLA decompiler which does a good job, however because Illustrator turns everything into shapes, the decompiler does the same and you end up with thousands of files in the library.... Plus there are a lot of error messages when the file is first loaded...
Many layers are masked, (for some reason without a fill), so if you publish the decompiled file straight away, you just get a blank file. Once you go through and fill the masks needed, it shows when you publish, but this really is a lot of work and I've had a few pages that show when you open the SWF file, but don't show when the SWF is called into the page turning file.... Hmmm....
So in short, I'd like to take a PDF and convert it to a FLA file, add a layer of buttons and publish as a SWF file....
Anyone got any 'Pearls of Wisdom'?
Clere
Clere Print
Slide Show
Hi I am making a slide show where you can cycle backwards and forwards through .swf files.
I have them loading and cycling though but I am having trouble with the sizing is there any way to size them dynamicly.
Slide Show
Does anyone know of a good way to dynamicly set up and play a massive amount of pictures in a slide show format?
Slide Show Help Please
Hello,
I nned help creating a slide show file like the one seen here: http://www.hollywood.com . It's the animation at the top that has three different images flashing in the frame with the words "get full story" on one of the buttons at the bottom. If someone can tell me how they would approach doing this in Flash I would greatly appreciate it.
Thanks,
tdsilk2
Slide Show
I want to make a simple slide show with some family pictures. I would like to put the pics in an array and loop my program to call out each picture in the array instead of having a program with 1000 frames.
Is this possible or is there a better way to accomplish this?
I looked through the tutorials, but didn't see anything off hand. If there is one please give me the link.
thanks.
Slide Show Of .swf's
Hi,
This might be silly. I have a movie that contains thumbnails (buttons) that call each an .swf movie, that is basically a big photo. This was done with loadMovie, etc.
Now I also need that the big images can be controlled by a forward and back arrows, so this arrows would call in a relative way, the next movie. I have named the swf files consecutive numbering...
http://studiocom.com/scott/work.html
Can I do this? Is it an action script? Does anyone here can help me out?
Thank you!
Slide Show
Is there a way to make a slide show in Flash as you do it in go-live with a next and prev button. I want each photo to load upon request, when either button is pushed. All the photos are located on a server allready! Is there a way to do this? I know that you can make a slideshow within flash but then all the pictures would have to be included in the swf file right? Or is there a way to do it like that in Flash?
Slide Show
im trying to use flash as some sort of a slide show showing a lot of pictures, words and music.
im having trouble with it when i view it in .swf (fullscreen)...the fade in fade out sequence of the pictures are really choppy and not smooth.
can somebody suggest a way to smoothebn the fadein and fade out of the pictures.
hope sombody can help.
thanks!!
Slide Show Help
how do i do a slide show and position it anywhere i want it to....
like 1 pic by 1.... for an example, "|" represent one pic... "<---"moving to the left
Example:
<---- | | | | | | | |
and it keeps on moving to the left non stop.... ect..
Slide Show Help
can u teach me how to do this flash sample i have for u,,,, this is a porn slide show.... i hope u can mature enough to view this file...
http://members.shaw.ca/trash-can/flash/filmroll.swf
send me a sample and teach me how to make this filmroll... thx
Slide Show
First off, I want to say thanks in advance to anyone who can help me with this problem.
I am very new to flash, and I was creating a form of a slideshow. The thing is all the information I have seen on here has been slideshows that have buttons on them, and I want mine to switch an image every second.
The solution I came up with. I inserted the following code on every 12th frame: loadMovieNum("logo.JPG",1); and did this with all the pictures i wanted to load. I am sure there is a better way of doing this. The movie seems a bit choppy with this method. The reason I did this is because I do not want to load all the images becauae they are arounf 30-45 kb a piece and it would take the film forever to load.
Any ideas in how to make this better would be greatly apprciated. Also, I have read the sound tut, but it was still a little fuzzy. I have a 2 meg mp3 i want to play as the slides move, but again is there a way it can play without having to load the whole file first.
I have tried mySound = new Sound();
loadSound = ("music.mp3",true) but it does not seem to work when I put that on the first frame of the main movie.
Slide Show
I'm new and I'm being quite stupid but...
I've created a nice flash intro into the slideshow but as the jpgs load the show goes slower, slower, slower...etc. One fades out, the next fades in...etc. while music plays.
The show will have a minimum of 50 slides and will be put on CD...this is NOT for web use.
Help! And thanks from a good, fast learner.
George
Help.. Help.. Help.. For Slide Show
Hi Folks,
I need your great help for slide show with interval of few seconds or on click and fade-in-out transitions.
Thanks in advance.
Regards
nikul
Help With Slide Show
Hi,
I need some help in creating a slideshow in Flash MX.
I have 200 fotos that I want them to automaticly appear on the screen every 1 second.
I'd like to have all the fotos as external .jpgs or .swfs that are then up loaded, so I'd probably need to pre-load the next image while the previous is showing.
Also I'd like the images to appear in random order, but to be able to control this so that the same image wouldn't appear twice until all the others have been shown.
Does anyone have any ideas on how to do this?
And I have searched the tutorials and forums, but there are none that I can find like this, as I don't want to use masks on the images, etc.
Thanks for any help,
Slide Show
hi, a client of mine has asked me to buld him a slide show demonstrating a job from start to finish, he has provided about 60 photo's and there will also be descriptive text to go with each one, can any one suggest an easy way of doing this,
open to any suggestions.
thanks in advance
brian
Slide Show
hello,
i just started teaching myself flash about 2 weeks ago, and im trying to put together a slideshow of my backpacking trip to europe.
the file size itself is already getting huge - its about 35 mb and im only about 2/3 done (because i put in an mp3 soundtrack and customized intros to each city i visited, not to mention about 300 pictures from 10 different cities), but im going to burn it onto CD to give to friends - so no downloading worries. i am trying to compress the mp3s down further and do what i can to shrink the size.
anyway, i was wondering if anyone could help answer ANY ONE of the following questions for me... (don't have to answer all of em)
so question 1): i know i should have divided the show up into scenes or separate flash files but i only learned how to do that very recently so now the show's timeline is just one jumbled mess that goes up to about 8000 frames. just started teaching myself some actionscript, so i was wondering if a flash file that is about 50 mb plays faster as a single file or one that is divided up into ten 5 mb flash files strung together by actionscript, because at this size, its starting to slow down my computer midway through the movie.
2) I want to add captions to the show for certain pictures, but i want to make them optional to see. so on my main menu page before the show begins, i want the user to be able to select an option to turn captions on/off. does anyone have tips on how to do this?
3) I also need help with a preloader. i want the movie to load onto the viewer's computer so the sound plays smoothly in sync with the pictures. Does a preloader even help in this case if the flash file is already on the harddrive and not being loaded? or is the file size just too big and will slow down any computer with insufficient memory?
if you can help with any of these, please respond. thanks for reading this through.
ricky
Slide Show
I'm trying to build something very similar to the flash piece on http://49ers.com (the 3 photos that scroll below the main photo) and to be completely honest, I don't know where to start...dang designers with no coding skills!
Basically, I have 4 photos, displaying 3 at a time. If you click on the next button or the right phototr, the photos shift left. If you click on the back button or the left photo it, the photos shift right. I really don't know how to make it animate backwards without jumping around to a million different frames and making it loop. Is anyone able to help.
Thanks MUCH in advance.
Slide Show
I'm trying to create a flash presentation. It has 6 "slides" I need when you click on [1] slide one moves in from right. when you click then on any other slide, the current one slides out and the selected on slides in.
Can anyone suggest the easiest way in flash to get the buttons (1, 2, 3, 4, & 6), when clicked, to make the current slide move out, and the one selected move in?
I had it set up to when clicked, it would go to a frame and play the tween to move the slide off the stage, then at the end of that tween, it would go to a different scene. (ie. scene 2 if slide 2 was selected) It just seems that there should be an easier way to do this.
Thanks.
Slide Show-help
im not really a newb at falsh but i just dont know how to script. so can someone please give me a code for using a button to go to the next and previous frame by pressing it. and also i got this button called "autoplay", if you could give a code for that too please. and thank you. i would really apprciate it.
Slide Show
Hi,
I want to create a auto playing slide show (fadein and fadeout effect)using images in an external folder. This I could do with the help from this forum.
I want the slide show that
Displays thumbnails (Maximum around 15 - 20 Images)which can be selectiable and the user can select more than one thumbnail and after selecting the Images and clicking a button say submit, the selected Images will play a fade in and fade out slideshow.
Second question, can the use save this and send to a friend.
Is the above possible?. Can somebody help me in this regard.
Thanks in advance.
Slide Show Help
I'm trying to create a photo slideshow similar to the one used on this page:
http://www.sharethejoy.net/050303/050303.html
I need to create several slide shows with over 50 photos and music in each show. I also want the slide show too load fast, or at least start fast. Should I be using an XML based slide show for this? If so is there any existing code that I can download and manipulate for my purposes?
Any help would be greatly appreciated,
Frank DePino
Slide Show
Hi
I have made a simple slide show and i would like the movie clip to get the jpg pics from outside of the swf file,so i can update the pics without entering the fla. Is there away to do this in flash mx.
Thanks for your help
Slide Show Help
I have a very large (6.7MB) slide show.
I would like to have only part of the slide upload and while the user navigates through the beginning of the slide the remaining of the show uploads.
Anyone know what script I should add to my preloader to make this happen?
Thanks
Ecinele
Slide Show - Help...
hi there,
i am creating a slideshow which consists of 13-16 images that scroll horizontally. when the user rolls over an image the scrolling speed increases and the image moves to the middle of the viewer.
i am close, but am getting an unacceptable result when the image moves to the middle (the image goes mental!).
Click here to view the swf
in brief the movie consists of the following actionscript:
main timeline:
---------------------------------------------
initSpeed = -10;
pieces = 13;
startLoc = 606;
function setSpeed(speed, xStop, stopped) {
imageSpeed = speed;
imageXStop = xStop;
imageStopped = stopped;
}
---------------------------------------------
scrolling mc
---------------------------------------------
onClipEvent (load) {
_root.largePieceWidth = _width/_root.pieces;
_root.largeWidth = _width;
_root.imageSpeed = _root.initSpeed;
endPoint = _root.startLoc - _root.largeWidth + _root.largePieceWidth;
}
onClipEvent (enterFrame) {
// first determine if mc needs to loop
if (_x <= -15074) {
_x = -7196;
} else {
if (_root.imageStopped == 1) {
if (_x > _root.imageXStop) {
dx = _root.imageSpeed;
_x = _x + dx;
} else if (_x < _root.imageXStop) {
dx = -(_root.imageSpeed);
_x = _x + dx;
} else {
_x = _root.imageXStop;
}
} else {
dx = _root.imageSpeed;
_x = _x + dx;
}
}
}
---------------------------------------------
each image:
---------------------------------------------
on (rollOver, keyPress "<Enter>") {
xStop = 0;
stopped = 1;
_root.setSpeed(-20, xStop, stopped);
_root.mcTextVirtu.gotoandplay("startText");
}
on (rollOut, keyPress "<Enter>") {
xStop = 0;
stopped = 0;
_root.setSpeed(_root.initSpeed, xStop, stopped);
_root.mcTextVirtu.gotoandplay("stopText");
}
---------------------------------------------
sorry for the long post, any help would be MOST greatly appreciated.
mike
Slide Show
Hi, I have made a slide show, w/o buttons, I would like for the slide show to run through the course of pictures and then stop, however, I would like for each picture to pause for a few seconds. Is there an action script for this? If there is, can someone please post it here.
Thank you.
Slide Show
i have this slide show, but i want it to fade in and out when the pictures change. can anyone help me with that? thanks.
Slide Show
I have multiple photos that I want to place in a slide show - does anyone have a link where I can get some action script for this?
thanks!
Slide Show ?
Slide show help please, Im a real newbie, but lucky enough to have flash mx pro, Id love to make a slide show, with flash, but, cant find any help files on how to do this ? any info, would be very much apprieciated
Slide Show
How can I make a functional slide show on Flash MX without uploading JPGs onto the actual file? All the pictures I have are different sizes so how do I take that into account?
Slide Show
Please could someone help me on a photo viewer?
With a next and previous button that loads the next picture?
I cant even think where to start? Would the pictures load into another small movie?
I would appreciate any help...thanks
JAMES
|