ActionScript 2.0 :: Control A Sort Of Interactive Slideshow Sound
Apr 13, 2011
I am using this code to control a sort of interactive slideshow. I have an array which contains framelabels and when you press a button it moves on to the next framelabel
[Code]...
to stop it. But i really need the fade in and out effect because the visual transition is gradual and the sound transition isn't.
View 5 Replies
Similar Posts:
Sep 14, 2009
I have an interactive slideshow that I need to do which display pictures. Upon hitting the "next" or "previous" button one pictures needs to slide off to the left with motion blur and easing while the next one comes on from the right.
Sounds simple enough right!
As far as I have been able to find out, the best way to do this would be using XML. I have looked at a ton of tutorials on xml for AS3 and I can't seem to adapt them to match what I am trying to do. There seems to be so many different ways that one can go about loading xml and all of them are different so I don't see how to make the different tutorials integrate into what I need. I found tutorials that do pictures and text, or just text, or pictures that go automatically but not with buttons etc - and what I need is just pictures with buttons and motion easing (which I can probably figure out once I learn how to load the xml pics and get them moving with buttons).
I was not expecting to get some code that I could just copy and paste but I have not been able to figure out to adjust the code to fit what I need.
I am doing the AS in an .as file and I am trying not to put any AS in the fla document because this slideshow is just one section of a bigger framework.
View 4 Replies
Apr 22, 2010
I am pretty new to flash but I am kind of getting the hang of things. I am trying to create a interactive slideshow in flash that will not end up on the web. These are three quick questions I currently have. Thanks for any help you can provide
1. Let's say I have an icon of a person in my flash file, how can I make it so that when my moves rolls over the person a thinking bubble appears and when it rolls off the bubble disappears?
2. If I have a small image of a page version of a .pdf file in my flash file, how can I make it so that when the little .pdf page icon is click the .pdf file is launched?
3. I understand how to create a square button over text and mess with its up/down/over/click settings, but I am wondering how I can do something like change the color of the text when it is clicked or when the mouse is over it? Right now I only know how to change the color of the square button.
View 2 Replies
Feb 7, 2008
What I try to make in Flash is some kind of interactive slideshow, with .swf files instead of static images. I want to have kind of control pannel with buttons numbered from 1 to n, always visible at the front layer. In the background, there will be swf files that change, for example, every 30 seconds. And each change consists of fade in and fade out effect of the swf container (and so the loaded swf file itself). During the swf changes, the buttons should change too by switching their states from 0 to 1 and so on. User should be able to skip to any frame he wants by clicking the corresponding button.This is the code I already have:
Code:
// Preparation
button1_mc.framenumber_txt.text = "1";
[code].....
View 1 Replies
Mar 22, 2011
I am a multimedia student and I want to create an interactive slide show to put in the Portfolio section of my web site. How would I do that? Would it be easier to do in Dreamweaver CS5 or create in After effects then import in Dreamweaver? I have never done slideshows. What I want; is a slide show of my work to scroll on the screen, when the person hovers their mouse over the picture from left to right, the slideshow moves, when you click on a specific image, you are able to see the image in a bigger size.
View 1 Replies
May 3, 2011
I need to create an interactive slideshow where the each image automatically slides to the left every 10 seconds. There should also be the option of clicking a button to move both back and forth as well.
View 1 Replies
Mar 4, 2010
mainBar.onRollOver = function()
{
mainBar._alpha = 100;
}
mainBar.onRollOut = function()
{
mainBar._alpha = 0;
}
My mainBar(movieClip type) consists of several buttons. If i don't put the codes above, the buttons would work as per normal. but if i put these codes, the buttons do not respond when i click on them. I want to make the mainBar, which is some sort of a control bar, transparent when the mouse cursor is not over it. when the mouse cursor is over it, then it will re-appear. but the buttons on the control bar doesn't seem to work when i try to use this feature.
View 1 Replies
Aug 15, 2005
I have to design a game for a school project that I have to redo to pass my year, but so far I have encountered several problems. My game is for children from 6 to 8 years old, so the game has to have a lot of sound (voice recordings) to explain the menus and the stuff they have to do.
[Code]...
View 8 Replies
Mar 21, 2011
im trying to make a music/sound control and FX sounds control,so i have my FX volume level as a variable(FX_vol) and also the Music/sound volume level as a diffrent variable(M_vol),so i set them as sounds that i can use trough coding:
[Code]...
View 2 Replies
Jan 21, 2010
How to import sound with AS? Cuz i have tried it and my sound just wount play. Can you explain me where my sound should be and what is the as code for importing cuz i use
mysound = new Sound();
mysound.attachSound("SoundOn");
mysound.start();
and this SoundON from where i get it, i try to add linkage to the sound file but in CS4 i cant find the option;. I do it from the library, adding text into the linkage field but still my sound doesn't want to play?
View 15 Replies
Mar 15, 2008
I have been at this for about 19 hours straight! I am going to go to bed immediately after this post, but for crying out loud, I have NEVER had this problem before today! Before anyone reads ahead and says 'you have to attach your sound object to a completely separate mc to be able to control it independently from all other sound/root volumes.' see if the following code accomplishes just that:
[Code]...
View 2 Replies
Jan 21, 2003
I want to incorporate sound into my main movie but I also want to be able to turn the sound off and on.
View 1 Replies
Jan 16, 2010
So I've been following a youtube tutorial to make a mouse controlled scrolling slideshow. [URL] I cannot get the thumbnails to slide...I used this action code:
[Code].....
View 0 Replies
Mar 25, 2005
I need help with page "Thumbs" (as first frame), page "List" (as second frame) and Image gallery (as third and base). So, every frame have one own XML file...When you choose some thumb or list line, you must came to this image in the gallery. Easy, sure.. but i don't know what Function exactly i need to use.It's one flash move, hence it doesn't work with getURL or loadMovie...Some exemple with 3 separate pages here: yuri.fr
View 1 Replies
Jun 22, 2009
I want to add a slideshow to a web page. I have made a slide show with flash however I really want to add the play controls. Is this possible using CS4 Flash
View 10 Replies
Jan 12, 2007
I am not a programmer, but have managed to combine the slideshow, image gallery and hover features of the provided scripts to create a slideshow that you can control with the previous and next buttons. I have also been able to connect it to an access database so you can control the images / info through Content Management console. once this has been sorted I will post the code here, if its any use to anyone. Here is the script!
[Code]...
View 3 Replies
Apr 16, 2010
I am trying to embed some sound controls, and have hit a dead end. I made my play and stop buttons, imported my mp3,, assigned it proper linkage, and inserted this AS2 :
[Code]...
The buttons are named "play_btn" and "stop_btn" respectively. When I export it or preview it, hitting the play button does not do anything.... I hear no sound. What could be up with this?
View 4 Replies
Mar 19, 2010
I want to trim a sound and then let it loop in a slideshow. The sound -- a roaring crowd at a soccer game-- should loop as a slideshow plays. As the movie repeats the sound should continue to play. It doesn't have to be in sync.
This works if I use Streaming, but there's a gap at the beginning of the movie as if the sound was being loaded over and over again.
I've been advised not to use Streaming, but if I don't, the sound is reproduced in its entirety-- there is no trimming.
View 2 Replies
Nov 27, 2010
I have an array that is structured like so.
[Code]....
Normally, I'd just like to sort the array alphabetically using the name field, which is easy enough using the following code. However, I'd like to create a radio button called 'loadedRadioButton' and when it's click on, I'd like to sort the array on the loaded value first(any items with loaded=true should be at the top, sorted alphabetically), then afterwards, any other items with loaded=false, sorted alphabetically should follow afterwards, how can I do it?
View 0 Replies
Mar 5, 2010
Here is a website that needs a sort function to sort the video by Last name. [URL] I would like to have a link that popped up videos sorted by last name. Please take a look at the following site for an example. [URL] When you click on seconds in the menu below, it opens a pop-up window that sort the videos in a certain way. If you are willing to,I will give you the source file of what it currently has on [URL]
View 1 Replies
Jun 24, 2009
I am having problems with a flash file i am working on. Basically i have created a slideshow/ebook that includes two buttons that move forward and backward on the timeline. On each page or frame of the main timeline are other buttons and movie clips. Anyways, I am trying to figure out how ,for example , if the user flips forward quickly through the slideshow that the sounds do not continue to play on the next or previous frames. Everything else on the file works great , it's just a matter of keeping the sounds from overlapping.
View 2 Replies
Jun 30, 2011
When I get a collection back from the service tier, I create an ArrayCollection and apply a sort. When I add an item to the collection later on, the sort is still in place? It seems to be the case. I thought I was only sorting it once, not applying a sort that will stick??Here is the method for adding an item:
private function onAddNewClick():void
{
var fileTemplate:FileTemplateDetailDTO = new FileTemplateDetailDTO();
[code].....
View 4 Replies
May 22, 2009
I have an application with a collection of sounds in the timeline. One sound file is recorded at a slightly lower volume than the others. I know I could change this in Audacity but I'm wondering whether I could attach a line of actionscript to its button to raise its volume slightly.I know its possible to do this when playing sounds with actionscript directly from the library, but that would be too big a departure from the development style used.
View 1 Replies
Dec 23, 2008
If I have library song playing using a simple code like: var mySong:Song = new Song();mySong.play(); How do I use a button to control its volume so that each time it is clicked the volume goes up or down by a little.
View 14 Replies
Sep 8, 2009
I have sound on the timeline.
Also I have the following buttontns[code]...
View 1 Replies
Feb 27, 2010
After browsing the documentation for the sound classes, it seems there is no way to control sound pitch with Actionscript 3.0. there is only the ability to control volume and pan. why is there no pitch property? it's the only sound property missing for the ability to create a full featured sound engine in Actionscript?
i hope i'm misinformed, but in case i'm not are there any alternatives / workarounds to control pitch in AS3?
View 1 Replies
Aug 8, 2009
My english is not too stron, but i'll try to explain my problem...I've got 2 swf's, first is main, second is loaded to he first(flv player) throught the command "loadMovie("player.swf", myPlayer)".In the second swf there are such code:
vol.onRelease = function() {
vol.bar._width = _root.myPlayer.vol._xmouse;
sound.setVolume(_root.myPlayer.vol._xmouse/vol._width * 100);
[code].....
View 2 Replies
Jun 26, 2010
I have multiple swfs in one HTML page and I would like to create the simple sound control (on / off) to control all the mouse over sounds.
View 3 Replies
Nov 11, 2010
I am trying to control external swf sound and I have created volume slider. But when I am running the code I am getting following error..
ArgumentError: Error #2068: Invalid sound.
at flash.media::Sound/play()
at volumeControl_fla::MainTimeline/volumeControl_fla::frame1()
[Code]....
i.e. when I load theexternal swf..how to catch the sound embedded in that swf
View 5 Replies
Aug 11, 2011
how to control sound volume via AS3?[code]
View 4 Replies