IDE :: Fading Stops Working On Thumbnails/main Images?
Mar 29, 2009
got the fading working on an xml driven gallery i made, but after clicking the images a few times the fade effect gets faster and faster and eventually stops working.
link to test file:
[URL]
code: (all in one frame)
Code:
var showVar = new Number();
var fadeDone = new Boolean();
showVar = 0;
[Code]....
View 2 Replies
Similar Posts:
Dec 28, 2004
I`m experiencing problems with an XML menu. It works fine, but when I try to insert it into a mc other than the main timeline it stops working. I believe that I have trouble with the names of the mc (or instance name). could the "menu" in this string be a signifier for an instance (mc) ??
[Code]...
View 2 Replies
Aug 3, 2010
I know I've seen a tutorial for this before, but I just cant seem to find it. I have many thumbnails being placed into a container and I would like each thumbnail to fade in as it is placed. Should I be using an Event.COMPLETE listener and then tween the alpha of currentTarget or something?I assume the code would go in/around here:
function thumbLoaded(e:Event):void{
var my_thumb:Loader = Loader(e.target.loader);
container_mc.addChild(my_thumb);
[code].....
View 2 Replies
Sep 8, 2007
how to have say... 5 images fading from one to another, looping using action script. I found a tut which does it using tweening, that's simple enough but apparently action script will reduce the file size and make it smoother.
View 14 Replies
Jul 19, 2004
I�ve made this photo galery but i�d like to add some extra things but don�t know how to do it.
#1 - a preloader for the image loading,
#2 - make the image to show gradually like fading in in the box.
View 1 Replies
Apr 15, 2009
I'm trying to do an animation in which 4 images will fade from one to the other. The problem is that they need to fade on a button command as opposed to a timed base. Meaning... there will be four buttons on top of the images, pretty much like onbut instead of the images going away and then having the new one come in, they have to fade from one to the other. Since the user can go from one to the next randomly, the image that's displaying has to fade out and the image whose number the user clicked has to fade in on top.
View 1 Replies
Aug 16, 2010
I'm using the Loader class in AS3.0 to load external images. I need to load a random image each time and I'm using a timer to load a new image after 5 seconds or so. When I load the first image,
[Code]...
The problem is that my fading routine does not work. One image loads, and the next one appears straight away when it is finished loading.
My code feels like a bit of a hack...is there a nicer way that actually works...?
View 2 Replies
Nov 19, 2010
I am trying to take ten images, load them into an array, and then show them one at a time,fading out each one in turn. I keep getting this error.
ReferenceError: Error #1056: Cannot create property alpha on String.
at fl.transitions::Tween/setPosition()
at fl.transitions::Tween/set position()
at fl.transitions::Tween()
[Code]....
View 2 Replies
Apr 11, 2011
I'm currently working on this site, which was made on a linear timeline and just rewinds and fast fowards to the frame with each page on [URL]
This was done with limited Actionscript, but now I need to redo it almost entirely in AS
I figure I need to keep everything on one frame (separate vertical frames, but no animation horizontally) and create movieclips for each page's content and tell it to fade in the content of whatever page is clicked on the nav, and fade out the rest. I will also need to do the same, but with the background images in fullscreen. I also have a problem with the bottom nav. It adjusts to window height on resize, but I can't get it to adjust automatically.
So how do I
1. Tell the movieclips to fade in and out when a button is clicked
2. Get the background images to fit full screen, and also fade in/out for each page
3. Get a movieclip to adjust to screen size without using onResize
View 0 Replies
Sep 15, 2006
I already created my photo gallery with : down thumbnails and up a display with the big picture appearing when I pass my mouse over the thumbnails. Till now the pictures are just appearing in the display with no effect . How can I make them appear fading in the main display. May'be see my fla for better idea.
View 3 Replies
Mar 20, 2007
my Flash file loads 1 of 6 random images onto the stage when it loads using the following code, how can I make the random images fade onto the stage? Starting at alpha 0 and ending at 100?
[code]
var myClip = this.createEmptyMovieClip("mcl", this.getNextHighestDepth());
var myLoader = new MovieClipLoader();
var myListener = new Object();
[Code]....
View 1 Replies
Aug 8, 2008
I'm working on a little slideshow that loads images on an interval. The images load on the stage fine. But there are no transitions. I want it so it fades. But at the moment they just go on the stage.[code]...
View 14 Replies
Mar 2, 2009
I've always struggled with this for some reason, but say I have 5 images loading from XML. How would I make it so they would cross fade each other on an endless loop? I can make it so it gets to the end by loading them on top of each other and then fading each one out, but once I get to the end I'm lost.
View 1 Replies
Jun 9, 2010
I'm still new to flash and I'm working on image transition. I have 3 movie clips on the main stage, frame 1. The 3 clips are called 'mc1', 'mc2' and 'mc3'. I've managed to load images in to the 3 movie clips by calling a php script (Select.php) to pass the image paths back to my flash movie in an array. This is all the actionscript I have on frame 1:
Code:
myVars = new LoadVars()
// Load the vars from the external Php file
myVars.load("Select.php")
myVars.onLoad = function(success) {
// Split the variables
[Code] .....
This seems to work ok. Now I want to fade the images in rather than have them just pop up. I think I'll need to put in some kind of pause to wait until the images are loaded before I try any fading but I don't know how to do that. What I need to do to fade my images in once they have loaded rather than just have them pop up?
View 5 Replies
Mar 5, 2010
I'm still an amateur at flash (more precisely, actionscript), how to do a simple gallery with static thumbnails which, when clicked, dynamically load an image into an empty movie clip, fading in and out (using actionscript)? By that I mean, click on a thumbnail, main image fades in, click on another thumbnail, loaded image fades out, image of clicked thumbnail fades in. Is it possible? I have successfully achieved thumbnails that load an image externally using both XML and using the ordinary loadMovie function, opting in the end for the loadMovie function and modifying AnaS' [URL] code (some of his comments are still in there). The reasons being that I'm not particularly concerned if I can't use XML for this, but I do want the images to load externally to save space.
I figure that the thumbnails are small enough in file size for me to afford to put them in, but just in case anyone think that XML is better for the job, I'm also including my XML file. On top of AnaS' code, I have added an if-else statement (lines 13-21) but, as I have said before, I'm an amateur, so I can get my head around the 'if' part of the statement, but haven't figured out the 'else' section (namely, the fade out). From what I have seen (I've been looking for the solution for a long time), most people just settle for fading the image either in or out, but rarely both. If there IS a gallery with both fades, it is usually done professionally and the code is either unavailable or goes over my head.
How to click on a thumbnail and load and unload the image using in and out fades. I have seen something which is almost what I need (both fade in and fade out are present) in the form of Kirupa's XML gallery, but I wanted to make mine just the bare essentials and really simple (i.e., no carousel/sliding effects). I just noticed that there is no tutorial for something like this. Kirupa has two very, very good tutorials (the XML portfolio, which is very simple, and the XML gallery with the slide, which is quite advanced) but not an 'in-between' one, such as the one I'm trying to create. [URL]. I have an empty movie clip ('loader') and three thumbnails ('thumb1', 'thumb2' and 'thumb3') on the stage.
My code:
this.onEnterFrame=function() {
if (loader._alpha <100) {
loader._alpha += 5;
} /*else {
if (loader._alpha > 0) {
loader._alpha -= 5;
[Code] .....
View 2 Replies
Jul 19, 2004
I've made this photo gallery but I'd like to add some extra things but don't know how to do it.
#1 - a preloader for the image loading,
#2 - make the image to show gradually like fading in in the box.
View 1 Replies
Oct 16, 2009
I have some movie clips that hold the contents. (ie I have a movie clip to hold my navigation buttons and another to hold the actual content.) I wrote some action script on a separate layer that is outside of the movie clips, the AS adds event listeners and a few simple functions. All my navigational buttons work prefectly, I have a button that I use for email, this works the first the frame is loaded. If I go to another frame (another page of the website), and then go back, the button no longer works, I tested with just using trace("the email button was clicked"); oh, I thought I might add that each page of the website is a different frame, that is inside my content movie clip. my AS looks like this:
stop();
navigation_mc.home_btn.addEventListener(MouseEvent .CLICK, homeClickF);
navigation_mc.rates_btn.addEventListener(MouseEven t.CLICK, ratesClickF);
[code].....
View 3 Replies
Jun 18, 2009
I updated FlashPro from 10.0 to 10.0.2 through the adobe updater.After the update applied, Flash ignores any code entered on my action layers as if it were not there, even simple stop(); command.
View 2 Replies
Oct 17, 2010
I have a Flash Animation which i am running in a Browser Window .. Suppose a Man moving from Left to Right and also a BackGround MusicNow when I change the browser Tab to suppose check my gmail account while the man completes his walk from Left to Right .. The problem is the music is running but the man freezes at his place and continues his animation only after i return to the Flash animation containing browser Tab.
View 2 Replies
May 19, 2010
I'm trying to create a simple slide gallery with one main canvas + thumbnails.Usually the main canvas has auto slide feature.Users can choose the picture on main canvas from thumbnails.When the mouse is over thumbnails I want Canvas to stop auto slide show until that mouse is outside of thumbnails.So I start creating this, and I finish coding for auto slide show and choosing picture from thumbnails. Now I need to code if the mouse is on the thumbnail then temporary stop auto slide show.I thought the right way is to write the code like this,[code]but when I do this, the timer won't stop.
View 2 Replies
May 30, 2007
1 main flash movie called game.swf 1 external flash movie called maze.swf
The thing is from my main movie game.swf I load the external "maze.swf" true the LoadClip procedure. This works "fine".
The maze.swf as you can guess contains a maze game, and as you all will know this works with the Hittest commando to check if the character doesn't walk up against the wall.
If I start the maze.swf as a stand-a-lone this works fine, but as soon as I load maze.swf in my main movie. The hittest doesn't work anymore, because in some way the hittest is now checking with the coordinates of the entire main movie instead of only the boundaries of the maze.
I checked If I was calling to the right path, with _root and _level0 and etc. This is al correct because I can trace all the properties from maze.swf in my main movie. But the hittest simply won't work.
View 7 Replies
Mar 12, 2009
I'm trying to set up an app that moves one movie clip to the top of the screen, regardless of where it is or how deeply it is nested. To do this, I take the full path of the movie clip and go in, movie clip by movie clip, putting the depth of each nested clip on top. This part works perfectly. Afterwards, I want to move everything back to where it was. In the first step, I store the current depths of everything in an array before changing depths. In the second step, I'm trying to change everything back to its original depth, as shown in the array.
The code is below:
_global.videoPath = _root.clip1.clip2;
var pathString = String(_global.videoPath);
var videoPathArray = pathString.split(".");
var depthArray:Array = new Array();
[Code] .....
View 1 Replies
Dec 6, 2009
I imported a .aif sound in to my library and gave it a class name of "Beat". I'm using this sound as a rollover effect. So I have my variable initiated at the top like so:
Code:
var snd:Beat= new Beat();
My listener's function like so:
[code].....
View 1 Replies
Feb 23, 2010
When creating a dropdown for a button, I noticed the dropdown will stop working if the button does not run the entire length of the timeline. i.e.: if you navigate to a page that is out of that button's "range" it will stop working unless reset by returning to the root page. Nesting the problematic button in a movie, however, solves this problem...
View 3 Replies
Jul 14, 2009
I have installed FMS 3.5 on an Intranet server, and it installs its own version of Apache.This has now caused the localhost to open the FMS page. Disabling FMS 3.5 returns back to the Localhost page.It is not possible to run FMS 3.5 on an existing Webserver with Apache?
View 1 Replies
Jul 26, 2009
The following code is from the CS3 Language Reference.Pasted into a new file it works.Pasted into my current project it doesn't.what settings I might have that are disabling it?
this.createTextField("news_txt", this.getNextHighestDepth(), 10, 10, 320, 240);news_txt.border = true;news_txt.wordWrap = true;news_txt.multiline = true;news_txt.text = "To see the custom context menu item, right click (PC) or ";news_txt.text += "control [code]....
View 7 Replies
Mar 12, 2010
I've tried it on several different copies on Flash(on college computers and at home) with different files and no matter what, once I save the file, any action script I had will stop working and will never work again no matter what.
When I create a new document and put in some Actionscript (3), it will work at first. For example if I have one line telling an object to have a lower alpha. Then, consistantly, when I go to "save" it'll stop working.
View 19 Replies
May 14, 2010
I have a class which extends a SWC , in the swc i have two boxes, front and back and an animation on the same timeline. The animation works fine without swapping when I swap them the animation stops working.[code]...
View 7 Replies
Mar 24, 2011
My friend and I have been working on a game for about a year. There's a few buttons on the stage that have been on the stage for six months, and always worked fine, but today my friend moved them and I just realized they don't work anymore. They are literally completely unresponsive to all mouse input, they have event listeners for mouseover and click but the events never get triggered (I checked for sure with breakpoints and traces).
I tried the obvious things first; move the buttons to the top layer and set .mouseEnabled = true, but that didn't do anything. I tried moving them around the stage in case something invisible was covering them but that didn't work.
We've got one button instance named "btnSell" that is broken, and another named "btnMenu" that works. They are instances of different objects in the library, but I tried swapping their instance names on the stage; then "btnMenu" was broken and "btnSell" worked.
So I swapped the names back, deleted the broken "btnSell" and created a new instance from the library. Only, it still doesn't work.
My friend deleted a bunch of old and no-longer-used assets, including previous versions of the PNGs that make up those buttons, so maybe that's related to the problem?
View 2 Replies
Jun 7, 2011
I made a flash file with buttons that go here and there and everything was fine except it takes a while to load so i added a preloader and suddenly the compiler is throwing the following error:
[Code]...
View 17 Replies