ActionScript 3.0 :: Slideshow - Getting Error In ThumbLoader Function
Mar 12, 2012
I'm new to AS3, and I'm coming up with an error. I'm creating a slideshow of pictures of mass effect characters for a class, but I can't get it to load the URL properly.
Here's my code:
import flash.display.Loader;
import flash.net.URLRequest;
import flash.events.Event;
import flash.display.Sprite;
import flash.events.MouseEvent;
[Code] .....
I think the error comes up in the thumbLoader function, when I say:
Code:
thumbLoader.load(new URLRequest("masseffect3/thumbs/" + images[i]));
I have a folder called masseffect3 which contains full sized images for the pictures I want to be shown on the slideshow, and then I have a folder called "thumbs" that contains the thumbnails of each image, with the same image name as I have in the array that I set up.
I get this error:
Code:
thumb
Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found.
View 1 Replies
Similar Posts:
Oct 15, 2011
One of the the most annoying errors to get is the "duplicate function definition" error! Flash doesn't want to see the same function twice... But what about the same function used in two different sections (labels) of one site? I've got two different slideshows in two different sections of my site, and I need the same function called out for each. The function is function nextImage():void If I remove it one, that slideshow doesn't work (remains fixed on image 1 of the slideshow).. if I keep it in, nothing works! I had wanted to use the same script for both slideshows, but forget that! So, I found another script for a different type of slideshow.
View 4 Replies
Mar 14, 2006
There seems to be a time delay problem when the slideshow is playing. It will start playing, but as soon as I click on the next or previous button to view another clip it will mess up the delay time and screw up when the pictures will play. Is there a way on how I can fix this ... I attached a link to see what is happening. The following script is what I have playing for the images.
View 6 Replies
Apr 8, 2009
I have a movieclip that displays a slideshow. Starting a few days ago I get a error message from Flash Player 10 saying
"TypeError: Error #2007: Parameter url must be non-null.
at flash.display::Loader/_load()
at flash.display::Loader/load()
at slides/switchPhoto()
at flash.utils::Timer/_timerDispatch()
at flash.utils::Timer/tick()"
Here is the actionscript package for the error
package{
import flash.display.MovieClip;
import flash.display.Loader;
import flash.display.LoaderInfo;
import flash.events.*;
[Code] .....
View 5 Replies
Mar 29, 2011
i am making a website for a client, and i have created a template system which reads different XML files as the user clicks on different menu options.The same template is being used on all the menus (with different xml files).
This template has a slideshow feature which is behaving abruptly, sometimes it cross fades to the next image properly and the other times it just stops working or cross fades extremely fast.I have tried and tested the code for bugs many times, but as i am new to as3, cant seem to get the right solution.
I personally feel that the swf template is not being unloaded when a new menu item is clicked(and the new xml is loaded), then there is some sort of a conflict between the new and old code and it ultimately breaks up.
View 3 Replies
Jan 3, 2009
I've run into a bit of a snag on this slideshow I'm trying to create. My plan involves adding movie clips from the library by attaching them to an empty movieClip. Then using setInterval and a variable as a counter, it increments in the function. When the number reaches "20" the first movieclip is removed and the next one is displayed. Here is my code:
ActionScript Code:
createEmptyMovieClip("canvas_mc", 1);
canvas_mc._x = 75;[code]....
//How do you bring on the second slide when the first is removed? So, my problem is that I'm thinking that the return value from my function should be 20 but instead I get 0 in the trace statement.My plan was if it equaled 20 to bring the next slide out from the library, thus moving forward with the slideshow.
View 9 Replies
Jun 16, 2004
I added a setinterval function to my slideshow.Prob is when the slideshow reaches the last pic it returns to pic1 goes to pic2,... but after the second loop it starts mixing the wrong pics for the wrong number.I guess I did a mistake in the if statement(if (nextSlideNode == null)...). can someone solve this for me.
See following code below. Also how can I stop this animation. I did something like learinterval(advance); but that did not do the trick.
[Code]...
View 7 Replies
Oct 10, 2010
how do I call the slideShow function?
Code:
import com.greensock.*;
import com.greensock.easing.*;
var austin:Symbol1 = new Symbol1();
[Code]....
View 2 Replies
May 8, 2009
I am building a slideshow right now using TweenLite as my tween class.Everything works perfectly when I have less than 25 images loaded into it, once I go above that things go south and the tweens appear to not work smooth, sometimes not at all.
My structure is basically:
- I have a sprite on stage called "Main".
- Loop through images, load them and add to the Main sprite as Sprites.
Code that I use to process the tweens:
PHP Code:
// Tween image outvar cx:int = Math.round(Backgrounds.loadArray[idx].width / 2);var cy:int = Math.round(Backgrounds.loadArray[idx].height / 2);TweenLite.to(Backgrounds.loadArray[idx], 1, { alpha: 0, scaleX: 0, scaleY: 0, x: cx, y: cy, ease: Quad.easeInOut, overwrite: 1, onComplete: doRestore,
[code]....
View 1 Replies
Oct 11, 2010
How do I call the slideShow function without an event listener?[code]...
View 1 Replies
Jan 24, 2006
I'm working with a dynamic slideshow that was already set up. Instead of thumbnails each image has a button that you click to see the image. I cant get the buttons to turn off for the categories that have less than 26 images. he button instance names are imgB1, imgB2,etc... they are in a container that is called: mc,collection_menu with an instance name of: collection_Menu basically in the script bellow the: visible=false is not working, is this the right syntax... what is wrong here
Code:
// this is the main button to start the slide show
collButtHolder.Bali.onRelease = function() {
[code].....
View 3 Replies
Aug 30, 2009
I have three dynamically created MCs on stage and when I press on first one I want to initialize ENTER_FRAME function , but Im getting this error:
[Code]...
View 4 Replies
Oct 8, 2009
#1006: value is not a function. at MethodInfo-43() I don't know what the problem is, or where could it be, here is the problem code, but first a brief description: Every 3 seconds 3 enemies will be created with a random position, the enemies can't be appearing on top of the other so I check if they collide with any previously added enemies, if they do I assign other random coordinates and check again until there is no collision (I'm using the collision detection kit CDK for the collisions[URL]..the first 3 enemies appear correctly but afterwards the error appears and the next time the program enters the generation part the enemies begin appearing in ridiculous numbers.
[Code]...
View 1 Replies
Sep 24, 2010
I searched the forums for the error, but the methods they used couldn't help my program, it's an Actionsctipt file in AS3 with CS4.
I am receiving error 1158: Syntax error: missing left brace ({) before the function body.Source: public function DirectBlock (e:Event) extends MovieClip :void{ //DirectBlock[code].....
View 1 Replies
Feb 24, 2012
when pressing on a button that error comes up in the OUTPUT tabthe file is in the linkError #1006.rarThis is the navigation_actions code where are the codes of the navigation bar (the buttons)
var buttonArray:Array = new Array( );
var currentButton:Object = new Object;
var navContainer:Sprite=new Sprite ;
[code].....
View 1 Replies
Feb 12, 2011
var speed:int = 4;
addEventListener(Event.ENTER_FRAME,MoveRight);
function MoveRight(event:Event):void{
[code]......
View 3 Replies
Feb 6, 2008
I have created a pie preloader(preloader.zip) which is working fine. Same preloader I am trying to incorporate in a xml based slideshow(slideshow.zip) to show image loading process but some how I got stuck. I am new to flash. Suggestions are welcome.
1. How to solve the problem of preloader2. Is it possible to integrate everything in a movie clip (including AS). I mean no AS on main time line but inside the movie clip. It would be much easier then to to create multiple slideshows by duplicating mc and changing the xml file.
View 1 Replies
May 29, 2008
i have a question about text in a slideshow. i know how to make a basic photo slideshow with external images. but now what i want to do is add 4-5 paragraphs of text next to each photo (with possible scrolling). the text will be different on each photo.
View 1 Replies
Jan 14, 2010
im having this errors:
1021: Duplicate function definition function onComplete1(event:Event):void {
1021: Duplicate function definition function stopSound1(event:MouseEvent):void {
1021: Duplicate function definition function backSound1(event:MouseEvent):void {
codes i used:
Code:
var thereReq:URLRequest = new URLRequest("SOUNDS/how.mp3");
var there:Sound = new Sound();
var thereControl:SoundChannel = new SoundChannel();
[code]....
View 2 Replies
Oct 7, 2010
hey im trying to make a mp3 player and when u click on a play btn it plays that song. but i keep getting this output error "Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error.
at slide_fla::MainTimeline/frame1()"
this is my code
ActionScript Code:
import fl.transitions.Tween;
import fl.transitions.easing.*;
var slidebind:Rectangle = new Rectangle(3, 3, 159, 0);
var loadsnd:URLRequest = new URLRequest ("s1.mp3");
var thissnd:Sound = new Sound();
[Code]...
View 1 Replies
Feb 3, 2011
The gallery used to have a document class of:
com.alexrindo.flashview.Flashview
I changed it to:
com.wooden.flashview.Flashview
After renaming the 'alexrindo' folder in the project and changing all of the import references, etc. in the class files accordingly, when I try to compile in the Flash IDE I get the following message:
TypeError: Error #1006: resizeElements is not a function.
at com.wooden.flashview::Flashview/createLayout()
at com.wooden.flashview::Flashview()
The 'Flashview' class file referred to is:
Actionscript Code:
/*** @author Alexander Rindo* @project Flashview* @version 0.4* @function Document Class**/package com.wooden.flashview { import com.wooden.flashview.contextmenu.ImageContextMenu; import
[Code]....
View 1 Replies
Oct 11, 2010
I have a real headscratcher, I am getting the following error:
TypeError: Error #1006: value is not a function. at touchscreen::MapConnectionSuccess() at touchscreen::MapTemp() at flash.display::Sprite/constructChildren() at flash.display::Sprite() at flash.display::MovieClip()
This seems to be relating to where I am passing in parameters to a new instance of a class highlighted below. I have done this so many times without problem. The class is setup to receive a displayobject and a movieclip. The first object passed is an instance of the Umap component, but tried just passing two simple movieclips and still got the error.
[Code].....
View 1 Replies
Oct 22, 2010
How I wish there was a book written in layman's terms for AS3 I have great dictionary for AS2 wish there was an AS3 equivalent.I know that _root is dead in AS3.I have a movieClip called "mcClimber" which is inside a movieClip called "mcMountain04". The climber mountain clip has a bone tween of a guy doing a climbing motion.When it hits frame 40 in mcClimber, I want it to tell mcMountain04 to go to the nextFrame.That's all.Why is this so difficult in AS3?I've looked at the online Adobe literature and it's so poorly written for laymen my eyes glaze over and I end up looking elsewhere.
I have tried this: MovieClip(parent).mcMountain04.nextFrame(); But I get an error saying MovieClip is not a function.
View 3 Replies
Sep 6, 2011
I'm working on the animation that plays 4 video clips depending on which button is pressed. After each movie is done playing, 3 buttons appear:
Replay, Close and More info My question is, how do i target the correct button, or, how do I tell the button which movie just got done playing, so it can play it again..
I tried using: event.target.name.PlayVideo. however I get an error: 1006 value is not a function.
View 2 Replies
Sep 24, 2009
I read online, and I understand kinda what the error is stating. Though, I can't find out why.So basically what I understand is that I am calling a function that is not a function?ere is the error and code portions that are required.Quote:TypeError: Error #1006: value is not a function.at VideoPlayer_fla::MainTimeline/startVideoPlayer()at VideoPlayer_fla::MainTimeline/frame1()
View 3 Replies
Mar 14, 2011
I have an array of integers called indArray and a function called addCommas where the array is cycled through and commas are added to the thousands i.e. 9,000 instead of 9000.
Now, this works perfectly fine, however, I try calling addCommas on a different variable and it gives me this error.
Here is my code:
var string = personData[personID - 1];
var indArray = string.split("|");
var targetTotal = int(indArray[0]) + int(indArray[2]) + int(indArray[4]) + int(indArray[6]);
[Code].....
View 1 Replies
Sep 19, 2011
I want to log all error messages and call stacks of my application if it causes errors after I released the application to the web site. I will save the logs on files on the web server.In debug player Error.message contains a detailed error message and Error.getStackTrace() returns call stack:
message: Error #1006: cccc is not a function.
stack trace:
TypeError: Error #1006: cccc is not a function.
at f()[/source/Main.as:38]
But in normal player which users of my application use, Error.message contains only error code and Error.getStackTrace() returns null:
message: Error #1006
stack trace: null
In other web application written with languages like javascript, PHP or ruby, I always log errors or stack trace.But in actionscript or flash application, can't I know where and why errors occur after releasing it?Is it normal to save logs of errors in released flash applications?
View 1 Replies
Jul 8, 2011
I think maybe I need to import something else? because I am getting the following error.TypeError: Error #1006: addChild is not a function.at Function/<anonymous>
Code:
package
{
[code].....
View 3 Replies
May 2, 2009
Im getting the duplicate function error and I cant seem to get around it.
On one frame.
Code:
stop();
var myServiceUser = new NetConnection();
myServiceUser.connect("http://localhost.com/amfphp/gateway.php");
var responder = new Responder(getUsers_Result, onFault);
[Code].....
View 3 Replies
Dec 7, 2010
I'm getting this error:"TypeError: Error #1006: value is not a function.at site_fla::MainTimeline/azulejo_click()[site_fla.MainTimeline::frame2: 91]Debug session terminated."I'll try to explane what i'm trying to do, but my english sucks so...I've 8 holders to put 8 images that I load from a XML file, my holders are: mcp_holder0, 1, 2,4... 7.To do this I'm using this code:
function azulejo_click(e:Event):void
{
trace("teste click1");
[code].....
View 3 Replies