ActionScript 2.0 :: Making Preloader Having Cool Liquid Effects?

Jul 26, 2005

I am trying to make a preloader that has some cool liquid effects. I want it to look like a gas tank being filled up, viewed from the side. I am trying to script it so that the surface of the fuel sloshes around as it fills up the tank, but I just can't figure out a good way to go at it.

View 14 Replies


Similar Posts:


ActionScript 3.0 :: Image Tiling And Cool Effects?

Jul 24, 2006

I am working on an as3 slideshow class and I came across a blog post that gave me the idea to use better transitions than the sliding out and fading I originally intended to use. [URL]The source for that class is available and it is a good starting point but I wanted to check and see if anyone know of similar projects that had more effects. Right now I just have the random explode effect from the above link and before I start working on effects I wanted to see what was out there.

View 1 Replies

ActionScript 2.0 :: Dynamic Menus With Cool Effects?

Dec 13, 2006

I am having trouble working out exactly what is happening behind the scenes when dynamic menus/ submenus get displayed with some effect.I am able to read in an xml file, create a menu, and display submenus with the use of a rollover event. The submenus appear immediately, all at once. However i would like the submenu items to appear with some effect.The "models" button in the top left corner has the features i want.1. With a mouse over i want a menu to appear. The first submenu item to be appear is the last on the list.2. when the mouse drifts off the list, the submenu retracts in the same order it appeared

View 7 Replies

IDE :: Making A Liquid Layout?

Dec 10, 2009

I am making a liquid layout in flash using as3,it worked pretty well with the following code, for the movie clips that are going to be on stage from the very beginning.

stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
setStage();[code]....

But when I try to load a movie clip by clicking a button and using the ddEventListener , it dose load, but doesn't float here is the code that I think have some problem:

demon_mc.addEventListener(MouseEvent.CLICK, getSlider);
function getSlider(event:MouseEvent):void
{[code]....

as you can see I have defined the variables Width adn Height inside the function as well and I am using WIDTH/2 to define the x position,Well it laods in the exact position but won't float as I minimize the stage

View 3 Replies

ActionScript 3.0 :: Making Liquid Particles: Two Joining Into One?

Jan 28, 2009

i know i've seen this before, maybe on that flash experimental math site that was all black and white and had a picture of a kid swatting at some molecular looking flies? anyone remember the name of that/well anyway, what i'm trying to pull off here is like a circle of some sort, all of sudden growing a small little circle and then both of them dividing, or possibly, a two circles(modules, atoms, particles) join to be one.

View 2 Replies

ActionScript 3.0 :: Making A Liquid Layout - Define The X Position

Dec 10, 2009

I am pretty new with AS3 . I am making a liquid layout in flash using as3, it worked pretty well with the following code, for the movie clips that are going to be on stage from the very beginning.

[Code]....

as you can see I have defined the variables Width adn Height inside the function as well and I am using WIDTH/2 to define the x position, Well it laods in the exact position but won't float as I minimize the stage

View 2 Replies

Actionscript 3.0 :: External Preloader Breaking Liquid SWF

Oct 16, 2010

Basically I have a full screen liquid flash site that I just added a preloader.swf to using the method from the tutorial on this site. The problem is that since I'm externally loading it now the liquid functionality doesn't work anymore. If you want to see the problem in action please check out these 2 links to see what I'm talking about.URL...Notice that it's not scaling the background to fit the screen anymore on the link with the preloader. Does anyone know how to solve this issue without resorting back to the old way of doing preloaders all in 1 swf?

View 2 Replies

ActionScript 3.0 :: TextAnim Class - Making Text Effects?

Nov 23, 2011

Anyone tried TextAnim? It's brilliant for making your own text effects.I am making something real simple but cannot get it to work. I am sure just pure AS3 thinkers could probably solve this without even knowing the class.I store some lines of text in an array, and each time I click the stage - the text anim kicks into do its magic on the new line of text pushed at it.here's the code - i have an instance of myTextField already on the stage

Code:
var t1:String = "This is my first line to write";var t2:String = "This is the black hole I was talking about";
var t3:String = "And now TO END WITH CAPITALS";
var txt_ary:Array = new Array(t1,t2,t3);[code].....

View 1 Replies

ActionScript 2.0 :: Making Preloader Into A External Preloader?

Jan 15, 2004

changing a preloader I have into a preloader that can be used for loading external swf.Now the code for the preloader is

loadedbytes = getBytesLoaded();
totalbytes = getBytesTotal();
loadedkbytes = Math.ceil(loadedbytes/1000);
totalkbytes = Math.ceil(totalbytes/1000);

[code]....

Ie the preloader and steps through a preloader animation filling the logo (ie loader)Now I have tried changing a few things but having problems tried loading into a container and a level

View 2 Replies

MX04 : Making A Preloader/LoadBar?

May 4, 2009

Im trying to make a preloader. this is my first attempt and from a tutorial and some minor adjustments on my part this is what ive come up with. i was wondering if there was a way to add a percent, and also why this doesnt disapear after its done loading. it remains on the stage throughout the loaded swf.

PHP Code:

siteLoader.loadMovie("Population.swf");
loadingBar._xscale = 1;
loadingBar.onEnterFrame = function() {

[code]....

View 14 Replies

IDE :: Making A Preloader For A Website In Flash

Nov 29, 2009

well i have developed a small website in flash 8 and i m facing some problems with it...

- the website has content (text) which is loaded externally

- the images are also called externally with the help of 'loader' component

- i have added a preloader at the beginning of my file

but still when i loaded it on the server....the images and the content is coming slowly....

load the whole file completely at the time of loading (including the external content)...?

View 4 Replies

ActionScript 3.0 :: Making An External Preloader

Jan 7, 2010

In order to learn the ins and outs of preloaders in ActionScript 3.0 I've been working on a program in Flash CS4. The problem I'm having is that the preloader is not throwing/recieving the Progress and Complete events.I decided to make the preloader an independant class and put it in a seperate package from the document class. I also made a second independant class to serve as a progress bar, which the preloader includes. Basically the structure of my program is Flash File>Document Class>Preloader Class>ProgressBar Class.So far the Document Class creates the Preloader and puts it on the screen (a black box with a progress bar on it so far, I'll add text later). What I'm working on now is getting it to actually preload, so that on the Progress events it increases the size of the bar untill it's completed, and then puts a play button on the stage when it recieves the Complete event.The examples and tutorials I've read on preloaders suggest that all you have to do is monitor the loaderInfo property of the stage object using various events. In order for the external Preloader Class to access the loaderInfo property of the stage, I pass the stage.loaderInfo property to the external Preloader Class constructor as an argument, and the _targetLoaderInfo property of the Preloader Class has that argument assigned to it. I then set up the Progress and Complete events on the _targetLoaderInfo property, expecting it to pass through to the loaderInfo property of the stage. It's not working.

View 3 Replies

ActionScript 3.0 :: Error #1119 While Making PreLoader

Feb 11, 2009

I was following a tutorial for a Pre Loader. I keep getting this error...

Error 1119: Access of possibly undefined property bytesLoaded through a reference with static type Class.

View 4 Replies

ActionScript 2.0 :: Making A Preloader For External .jpg Files?

Jun 7, 2004

I've had some trouble making a preloader for external .jpg files. The problem is in the onEnterFrame, I'll show you some part:

PHP Code:

loadjpg = function(mc,jpg) {mc.onEnterFrame = function() {trace("lele"); } } 

that is just a part of the hole function, but I think it will be enough. It traces "lele" once, not when mc enters a new frame. I've also tried to call it with different ways like:

[mc].onEnterFrame, with (mc) { onEnterFrame() .

View 1 Replies

ActionScript 3.0 :: Making A Preloader For Banner Rotator

Mar 3, 2009

i'm making a preloader for my banner rotator, but the reason to be here writing this post is to ask for help to fix a bug in my preloader, for example: When I click on a button to change the image while the preloader is counting it simply starts counting the the bytesLoaded of old image + the new image(bytes) of the button I've clicked. Then the percentage goes over the 100% ... I didn't want to disable the button, I know is possible in some way but I am not finding success.

[Code]....

View 3 Replies

ActionScript 3.0 :: Making A Custom Preloader Class?

Mar 5, 2009

I am trying to build a preloader class for loading external content (images in a gallery). I have no experience in this area and I could not find many examples of making preloader classes. I was wondering if and how would it be possible to trace bytesLoaded and bytesTotal from within the preloader custom class. I was trying to pass the Loader's variable into the class and then try to trace the bytes but no luck with that.

View 1 Replies

ActionScript 3.0 :: Preloader Making Functions Not To Work

Sep 4, 2009

When I test the site with the preloader.swf file I made for it, it loads, but then some of my button functions do not work in the site. When I test the site fla file everything works fine. I have been trying things out with the preloader code, but not sure what would cause this.

This is my preloader code:
var l:Loader = new Loader();
l.contentLoaderInfo.addEventListener(ProgressEvent .PROGRESS, loop);
l.contentLoaderInfo.addEventListener(Event.COMPLET E, done);
l.load(new URLRequest("sample.swf"));
prog_mc.stop();
function loop(eventrogressEvent):void {
[Code] .....

View 8 Replies

ActionScript 2.0 :: Preloader Making Loaded Movie Fuzzy?

Jun 20, 2004

if i delete the preloader code/mc the image of the building displays shape but if i keep the proloader code in the movie and publish the building is fussy

View 1 Replies

ActionScript 3.0 :: Making A Image Fill Preloader Using Masks?

Apr 21, 2011

ive tried making a image fill preloader using masks etc. When publishing its just showing my preloader not continuing to my content.which is on frame 11. I was wondering if anyne can help me with code?

stop();
mask_mc.DisplayObject.height = 1;
this.addEventListener(Event.ENTER_FRAME, loading);[code]...

i have placed this on frame one where just preloader content is, then all content frames start at frame 11.

View 1 Replies

Cool Sites And Menus And Everything?

Mar 27, 2009

I found this site. It has a lot of cool usefull stuff, plus you can put on your own stuff and sell it.

View 1 Replies

Make Cool Transitions Between The Pages?

Apr 8, 2010

In "flash website templates" we see some amazing transition effects between the pages, I wonder how they do it? Are they made of flash? or those effects are created in some other application like "after-Effect"? or are there any special tween engine to make effects?I have been searching for a while...but still confused and looking for guidance.

View 2 Replies

ActionScript 2.0 :: Any Ideas For A Cool Effect?

Oct 6, 2006

i attach a image on what i must make..but i have like a blackout.. so i hoped u can inspire me for some cool effect?please if so help me also to the code? or at least a demo code so i can make me own?

View 4 Replies

IDE :: Cool Dynamic Text Effect?

Oct 31, 2009

some web page with cool dynamic text effects, better with tutorials.

View 3 Replies

ActionScript 3.0 :: Create A COOL Entrance Page?

Sep 8, 2009

so i have a project where i will be making a website. I will be using flash to make it interactive and visually appealing. I found a website with a really cool entrance page, iew it n't really know much about the action script language so be as precise and clear

View 1 Replies

Make A Cool Homepage Content Slideshow?

Oct 25, 2010

How to make a cool homepage content slideshow like this one[url]...

View 2 Replies

ActionScript 3.0 :: Create The Cool Effect At Site?

Feb 27, 2011

what was done to create the cool effect at this site? [URL]..When the links on the left are rolled-over an image appears in a small window that follows the cursor. Very cool.
 
I was hoping to learn how to do that, myself, but can't figure it out. No need for a step-by-step tutorial, just a word or two to point me in the right direction.

View 3 Replies

ActionScript 3.0 :: Cool Animated Line Drawing?

Jan 31, 2008

so maybe this animation is not that cool. But line 'draw-on's like this are quite common and I cannot find an easy way to do this in flash. I have tried masks, but (as far as I can tell) the line path is too complex for a mask. I have tried animating it using shape hints, but flash just gets hopeless confused as to how I want the line to animate on. I could export this as an swf out of AfterEffects, but the file size seems way too big for what the animation is. I have begun to realize that maybe this type of animation is often achieved using actionscript.

View 8 Replies

ActionScript 2.0 :: Resources For Cool Flash Websites?

May 21, 2010

Can anyone recommend some good flash website resource sites like [url].....

View 0 Replies

Actionscript 3.0 :: Inspirational/Cool Portfolio Sites?

Jan 18, 2010

any cool inspirational portfolio sites?

View 1 Replies

ActionScript 2.0 :: Cool Oldskool Image Effect

Jul 29, 2004

Does anyone know how to make this cool image effect its on the title screen to this game (megaman vs ghosts goblins)url...

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved