Sliding Slide Show With ActionScript?
Using MX here !
is something like this possible with ActionScript?
http://www.studio209.com/aubergine_test.htm
I'm using masks... and it really bogs down.
FlashKit > Flash Help > Flash ActionScript
Posted on: 06-26-2007, 08:55 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Really Sliding Slide Show
Can anyone tell me how this is done, or send me to a tutorial? I would like to use one long horizontal picture where only 800 pixels shows. When the user presses advance, the picture slides to the left 800 (1000?, my choice) pixels to reveal the next segment, and so on. Ease the start and end of each movement. So this is literally a "slide" show. And have a "previous" option to do the same thing backwards.
Flash 7 Mac OSX
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
Slide Show Actionscript
Dears,
I'm trying to build a photo album in Flash5.
I've more than 400 pics I want to display so I guess I have to store them into a seperate database.
I want to use Flash because I want to have the album animated and also I want do some animations - like mouse-overs - on the pictures.
Now I have 2 problems:
1) can anyone help me with ActionSripting for the album itself (is there a script already made for an album)
2) which is the most appropriate database I can use to store my pics and to call them from Flash5
Thanks in advance!!!!!!!!!!!!!!!!!!!!!!
Bestoutr
Actionscript For Slide Show
Hi anyone!!
I need the code for a slide show of thumbnails when placing the mouse over to the right side goes faster to the right - or the left goes faster to the left. Then when you place the mouse over a thumbnail image it slows down and once clicked goes to a bigger picture above the thumbnail..
Does anyone know - I need it urgently
I only know basic actionscript..
Thanks
Slide Show Actionscript
Hi, how do I create a slideshow that scroll seamlessly from right to left and upon rollover, the scrolling will stop and centralised itself? I can only make it scroll from right to left with tweening currently....
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();
}
Actionscript For An Image Slide Show
I have a button that when pushed, goes to a frame with a movie clip on that frame called slide show. In this MC, is another MC called slides in which I have 24 images. I'd like the person who will be using this application to have the option of either automating the slide show, or clicking forward and back buttons to get to each image. Can some one tell me what would be the best way to go about doing this? On the auto-play option, I would like each image to rotate every 2-3 seconds(depending on which i like best when is see it). Is there a script that can automatically advance to each frame assuming there is an image on every frame of the MC? Also what is the code for forward and back buttons. Your help is greatly appreciated....btw this will be published as an .EXE file....it's a presentation i'm working on that is due EXTREMELY SOON!
Slide Show Actionscript Not Working
Im having a problem getting the previous and next buttons to work in my image viewer. Please help
thanks in advance
heres a link to the file
ActionScript Slide Show Woes
I am writing a simple slideshow using ActionScript in Flash MX and everything works great except for something I cannot seem to find a problem in the "swap()" function.
I have been beating my keyboard for hours trying to figure out where I am going wrong here, but it just is not obvious what is wrong (maybe I have been up too long)
How it works...
1. Call "swap()"
2. Load JPEG into "mc1"
3. Increment "idx" or reset it to zero
4. Load JPEG into "mc2"
5. Start fading "mc1"
6. When "mc1._alpha == 0" call "swap()" again to set "mc1" to "mc2" JPEG and advance "mc2" JPEG
Problem...
Occurs in "swap()" function. There is a brief moment where both images disappear completely. Check out the code below and you'll see how I am managing the slides. "mc1" is in a layer above "mc2".
Code:
/* Position movie clips */
mc1._y = -75;
mc1._x = -100;
mc2._y = mc1._y;
mc2._x = mc1._x;
/* Initialize Variables and Settings */
var loc = "http://www.conservancynaturecenter.org/images/uploaded_flash_images/";
var images = new Array(loc+"a1.jpg", loc+"a2.jpg", loc+"a3.jpg", loc+"a4.jpg", loc+"a5.jpg", loc+"a6.jpg");
var idx = Math.floor(Math.random() * images.length);
var swap_interval = 50;
/* Reset Top Image (mc1) when _alpha reaches 0 */
function swap() {
if (fade_interval) clearInterval(fade_interval);
loadMovie(images[idx], mc1);
mc1._alpha = 100;
idx = (idx >= images.length - 1) ? 0 : idx + 1;
loadMovie(images[idx], mc2);
fade_interval = setInterval(fade, swap_interval);
}
/* Fade Foreground Movie (mc1) Out */
function fade() {
if (mc1._alpha > 0) {
mc1._alpha--;
} else {
swap();
}
}
/* Begin Sequence */
swap();
Please review SWF file located in attached ZIP to actually see what is happening.
Actionscript Based Slide Show For Flash 5?
Hey there guys...
I'm looking for something that I would think would be fairly simple. I've got 6 images that I need to flip through in a Flash ecard that I'm building.
I do this fairly often and each time until now it's been manual. I'm getting tired of manually setting keyframes for each of these images so what I'd like is to automate this somewhat.
A great way to do it would be to set each image on a keyframe, then code some sort of time function that would jump to the next frame after a preset amount of time had elapsed.
Does anyone have something like this or can you point me in the right direction?
andy
Simple Panning Slide Show Flash Actionscript Help
I'm trying to make a simple panning slide show. Right now I animated the images to pan but now I'm trying to get the movie clip to reset to it original position once its panned all the way across. Here is the action script I'm using to move the movieclip. The way I have it reseting is by clicking but how can I change this to happen when the clip reaches a specific place on the x axis. Here's what I have (My movie clip's instance name is pictures)
onClipEvent(enterFrame) {
speed = -1;
this._x += speed;
}
on (release) {
_root.pictures._x = 1383;
}
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)
[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!
The Sliding Menu Doesn't Slide
hi everybody,
its a new year(happy new year!) and i have a new problem in flash. my sliding menu doesn't slide like i want it to.
well, when i hit the '1' button, the '1' movie clip doesn't slide but
when i hit the '2' and '3' buttons, the menu works! also the menu doesn't show the '4' movie clip fully when the '4' button is clicked.
i have attached the fla file in case you couldn't follow my problem.
help me guys!
bye
susheel.j
ps:my new year resolution, is l to do things in (a) "FLASH"!
[F8] Limiting The Sliding Menu's Slide Area..
hi guys..
i have problem with this script in the file.. im a designer and u know, i dont know much about codes. so i need your help
i tell u shortly.. as u can see there is a dynamic sliding menu in the file.. but its masked. i want that its slide move limited to the masked area. i mean the first box at the left comes to a stop at the left begining of the masked area.. and the last box end of it.. i guess its just needs mathematical formula =]
Code:
difference = _xmouse - arrow._x;
arrow._x = arrow._x + (difference/delay);
menu._x = - arrow._x;
Sliding, Growing, Stop Shrink And Slide Some More
Hi,
I have file that has a slider. It already moves left and right.
When the x position reaches a specific point it stops. What I want it to do is when it reaches that sepcific point is to stop, which it does, and then scale up, with _xscale and _yscale and stop again. When the user clicks on a different button it shrinks and then goes on sliding left or right and repeats the process. Any help would be great!
This is the code. there are a series of buttons related to the slider. The slider code is at the bottom.
stop();
about_btn.onRelease = function(){
_global.final = 0;
stopAllSounds();
}
services_btn.onRelease = function(){
_global.final = 650;
stopAllSounds();
}
projects_btn.onRelease = function(){
_global.final = 1450;
stopAllSounds();
}
news_btn.onRelease = function(){
loadMovie("pagemarker.jpg", _root.news_mc);
_global.final = 2100;
stopAllSounds();
}
jobs_btn.onRelease = function(){
loadMovie("pagemarker.jpg", _root.jobs_mc);
_global.final = 2800;
stopAllSounds();
}
contact_btn.onRelease = function(){
loadMovie("pagemarker.jpg", _root.contact_mc);
_global.final = 3400;
stopAllSounds();
}
//slider coder is below
menu_mc.slider_mc.onEnterFrame = function(){
//moves slider to the right
if(this._x < final){
this._x += 100;
//the conditional to make the slider stop
if(this._x >= final){
this._x = final;
}
//scaling of slider up--is this even the right spot to put it? How would I
// fix this code?
if(this._x = final._x){
this._xscale = this._xscale + 2;
this._yscale = this._yscale + 2;
}
if (this._xscale==110) // <-- 110 percent!
{
return;
}
//scaling of slider down to 100 and then continue on sliding
//now for the opposite, we add an else if
} else if (final < this._x){
//change this to a -=
this._x -= 100;
//flip the greater than to a less than
if(this._x <= final){
this._x = final;
}
}
}
stop();
Sliding Calendar Won't Slide To Current Month.
I have a scrolling calendar with twelve buttons for each month. When you click on the buttons, the calendar scrolls. However, I want the calendar to scroll to the current month when the movie is played. This is easy for someone that knows anything about "else if" statements. I must be missing something simple, because the calendar won't go beyond the second "else if" statement, and stops on February.
The file can be found here:
http://www.mrerskine.com/scroller.fla
Thank you
Sliding Calendar Won't Slide To Current Month.
I have a scrolling calendar with twelve buttons for each month. When you click on the buttons, the calendar scrolls. However, I want the calendar to scroll to the current month when the movie is played. This is easy for someone that knows anything about "else if" statements. I must be missing something simple, because the calendar won't go beyond the second "else if" statement, and stops on February.
The file can be found here:
http://www.mrerskine.com/scroller.fla
Thank you
Sliding Menu Script Causing Whole Page To Slide
hey!
in my flash scene i placed the same kind of actionscript used in the Panoroma 360 tutorial. i just wanted to control the one movie clip in the scene with the slide actionscript, and it slides side to side perfectly when i just play the movie in flash player. it's when i put it out on the web that it starts messing up. instead of controlling the one clip, the cursor drags the entire movie around the screen with it. to see what i mean check out http://www.bigmouthpost.com/flashtest.html wait for the main menu, go to the gallery section, and you'll see what i mean. if you'd like to see the code let me know. you can also check out the tutorial i got the code from at virtual-fx in the expert actionscript section.i've also noticed that this tends to happen more often in netscape as opposed to iexplorer. thanks for any help you can give me, if you think more info about the what i did would help then please let me know. i will work with you on this.
My boss is going to eat my head!
Adam
[Edited by Adam Shumaker on 07-06-2001 at 09:32 AM]
[Help] Flash Sliding Show
hey all,
I'm looking for af flash sliding show as this one on this page
http://azn-con.dk/ on the right top...
Anyone here with a link or something....
Thankz
How Did They Do It (sliding Photo Show)?
http://www.detremmerie.be/
I'm very impressed by the loading technique: images are obviously loaded on the runtime and they stayed cached so the site works significantly faster if you let it simmer for a while. But what I'm truly transfixed by, is the wipe in/out transition (I figured out colors fade). Is it the bg covering the image from left and right or the image width and x position expanding and contracting (or both)?
Another thing: no matter how far from each other buttons are positions, images seem to be placed next to each other when called (are they in stack on different levels and then buttons just swap their depths as needed?)
Sliding In/sliding Out Images Using Actionscript
I know I should probably know how to do this by know but I'm stuck.
How do I create this effect using Actionscript?
http://synap-sys.com/in_out_slide.html
When a user clicks on button "1" the image slides in from the left. When the user chooses to view image "2" image one slides out of the way and image two then slides in. I would like to do this using Actionscript because there's going to be a bunch of pictures that are part of this slideshow. It's how to tell the Flash player how to slide out the current image and slide in the new image that I'm struggling with. Forgive my lameness.
I'm also trying to do this without dynamically loading each image everytime they click on a button. The reason for this is so all the images load at once, thereby eliminating the delay that would occur as each image loads after a user clicks a button. A fellow Flashkit member(Garbage) suggested I do this using a Library clip (all the images placed on a keyframe of a movieClip that are referenced per button click) but I'm not sure how to do this (goToAndPlay?).
Any help or guidance would be most appreciated.
I've attached the .fla if anybody wants to look at it.
Thanks
Adam
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
|