ActionScript 3.0 :: Can't Make Perlin Noise Example Work?

May 24, 2009

I have an example that I copied out of a book "Actionscript 3.0 Cookbook"here's the error message:TypeError: Error #1009: Cannot access a property or method of a null object reference.    at jim.bitmap::Clouds()[C:AS3projectsclassesjimitmapClouds.as:13]    at clouds_fla::MainTimeline/frame1()[clouds_fla.MainTimeline::frame1:2]

[Code]...

View 11 Replies


Similar Posts:


IDE :: Making Perlin Noise Less CPU Intensive?

Feb 5, 2009

Lately I have been trying to animate the water surface giving it more natural look by use of Perlin noise. But it seems it is very CPU intensive operation. And if I use it along with other animations on the stage which involve lot of movements then it become really difficult for the machine to render the entire scene.

View 2 Replies

ActionScript 3.0 :: Operator In Channels For Perlin Noise?

Jul 9, 2009

got this code from herehttp:

[Code]...

View 1 Replies

ActionScript 2.0 :: Pre Rendering A Perlin Noise Animation

Aug 14, 2007

Is there a way to pre-render a BitmapData.perlinNoise moving animation into a seamless loop of 10-12 frames from which copypixels could be used on the resultant sprite strip to produce fast resuilts?

View 1 Replies

ActionScript 2.0 :: Perlin Noise Wave Effect Reverse

Aug 22, 2011

how to get the Perlin Flag Wave shown at

Senocular[dot]com/flash/source/?entry=761

to go from right to left?

Reversing the gradient of the displacement does not work. It simply reverses the amount of the effect on the left side so the waves are bigger on the left end, but the waves still move from left to right.

View 3 Replies

ActionScript 3.0 :: Moving Sprite Based On Perlin Noise?

Jan 26, 2012

affect the position of a sprite using perlin noise? Looking at this flag example:

[URL]

If you imagined a sprite with say just a circle drawn in it positioned on the top right corner of the flag, is there a way to calculate the change in position to keep it in-sync with the flag corner as that animates? What I'm after is the fluid motion but not the distortion.

View 1 Replies

ActionScript 3.0 :: Create The 3D Perlin Noise Effect In Flash?

Nov 13, 2009

how can i create the 3D perlin noise effect in flash?

View 1 Replies

ActionScript 2.0 :: Pre-calculate The Perlin Noise Values And Then Loop Through It In An OnEnterFrame

Mar 9, 2007

i got this perlinnoise called function and movieclip.filter = [displacementMapFilter] inside a onEnterFrame and it's eating me at 100 percent. are there any substitutions for making it much less processor intensive? I'd like to show a picture rippling and i'd like to use perlinNoise. Is there a way i can pre-calculate the perlin noise values and then loop through it in an OnEnterFrame

View 7 Replies

ActionScript 3.0 :: Flash Perlin Noise - Replicate An Smart Filter From Photoshop (CS5)?

Sep 5, 2011

I'm trying to replicate an smart filter from Photoshop (CS5) in AS3. Here's what I'm trying to do: I want to have a dark gray background (0x323232 to be specific) with some light, fine grained monochromatic noise on it. I've been mucking around with the perlinNoise method but it's 'too much noise'. Too much contrast. Code: bitmapData.perlinNoise(3, 3, 13, Math.random(), true, true, 7, true); Could anyone point me in the right direction?

View 2 Replies

Professional :: Create A Visual Noise Pattern Using BitmapData.noise

Oct 25, 2010

I have been trying to create a visual noise pattern using bitmapData.noise, and with help from Rothrock and Kglad have created a working version.I checked with a colleague who is expert on the use of these visual patterns, and he suggested that the change speed is too fast: that the dots (pixels) need to change at just under 400 dots per second for an 800 x 600 stage.With beginner skills in AS3, I am unsure if there is any way to change the script to slow the rate of dot change in the bitmapData.noise function?

View 2 Replies

ActionScript 2.0 :: (FMX) - Put A Sound On The Rollover, So When It Ran Away, It Would Make A Noise?

Sep 5, 2004

im having a bit of trouble with something,if you look at the attached file, there are 2 circles(movie clips), they have an AS code on them :

onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse,_root._ymouse,true)) {
this._x = int(Math.random()*550);
this._y = int(Math.random()*400);
}
}

Now, i wanted to put a sound on the rollover, so when it ran away, it would make a noise, so i put an invisible button on the top in each movie-clip.and put a sound on the over state, but, this makes the MC's not run away!So i thought that i could add a on (rollOver), but i dont know the code to load a sound from the library.

View 4 Replies

ActionScript 3.0 :: Width Doesn't Work - How To Make It Work

Apr 21, 2010

I have a button object that I need to scale to align with the variable width of an array of images.However, when I set the width in code, the button does not actually become that width. Tracing out the width gives me the correct value, but on screen.. it's off.

I've proved it to myself by scaling the same button object manually in the properties pane and visually comparing. Both of the buttons below have a width of 410.

Code:
navigatorDown_btn.width = 410;
navigatorDown_btn.x = (stage.stageWidth/2)-(navigatorDown_btn.width/2);
trace(navigatorDown_btn.width); // output: 410

View 4 Replies

ActionScript 3.0 :: Make A Sprite Button With Graphics And Can't Make It Work?

Aug 22, 2011

* I have a flash project called contact

* The document class is ContactClass

I am trying to make a sprite button with graphics and can't make it work. I have successfully added text fields so I know the path is correct. I suspected my code was correct and confirmed it should be, after reading several tutorials showing the process for creating sprite buttons with graphics. Anyway, I imported nearly every class on Earth, but certainly everything which needs to be. Stage is gray and 800x600.The graphics code by itself with appear, but not when linked to the sprite. Also, the sprite won't appear no matter what. Another interesting piece of the puzzle: nothing will trace, not even objects such as textfields which actually appear and function on the stage when I text the code.

public class ContactClass extends Sprite {
public function ContactClass() {
var home_btn:Sprite = new Sprite();[code]....

View 3 Replies

Actionscript 3 :: Add Noise To A Video In It?

May 25, 2011

I was trying out Lee Brimelow's tutorial on creating a simple AR scene using [url]...

It worked out pretty well, considering I have never created something out of Adobe Flex Builder before.[code]...

View 1 Replies

Flex :: How To Reduce The Unwanted Noise

Jan 17, 2011

In the below code sometimes when microphone is not connected some noise is generated and the system just keeps on buzzing the same sound.Whats wrong with the code below and how to reduce the unwanted noise. Should i set myMic.setLoopBack(false) in the below code

[Code]...

View 1 Replies

Professional :: Pixel Colors In BitmapData.noise?

Oct 5, 2010

I am wondering if there is any way to set the pixel colors exclusively to black and white (instead of gray) in a bitmapData.noise animation. The previous related thread is: [URL]..For the function:
 
function makeNoise():void { _bitmapData.noise(getTimer(), 100, 255, 7, true);
 
Is there any way to set the noise color pattern to black and white? In the scripting reference, it seems the choices are R||G||B||Alpha channels, so I am not sure if there is any way to combine these to get black and white only.

View 16 Replies

ActionScript 3.0 :: Making Textures With Noise Functions?

Apr 11, 2012

This question was posted in response to the following article: [URL]

View 2 Replies

ActionScript :: Flash FLVplayback SeekBar Noise

Oct 7, 2011

my issue is with flash FLVplakback control with a seekBar attached to it. example can be found here. for some unknown reason when i try to rewind using the seekbar, it produces a loud noise at the start. whereas if i let it play out the entire movie (mp4) and then play again using the play button it does not produce such noise. in case i rewind using the seebBar after playback has completed even then it does not produce the noise.

View 1 Replies

ActionScript 3.0 :: Removing Noise From An Array Of Numbers?

Nov 13, 2010

I'm trying to implement the face recognition api from [URL] Everything is working fine other than the fact that the x y position of the face returns a lot of noise, meaning that when I'm sitting still instead of the x y to be constant it jumps up and down. Is there a way to apply a filter to the returned x y values to prevent this from happening?

View 4 Replies

ActionScript 3.0 :: Adding Chime Noise To Clock

Dec 14, 2010

What is the easiest way to add a chime noise on the hour or every 15 minutes to my AS3 clock? I have the code all written for my date/time calendar and I thought it would be neat to add a sound. This is my AS3 code:
import flash.events.Event;
import fl.events.ColorPickerEvent;
import flash.geom.ColorTransform;
theTime.addEventListener(Event.ENTER_FRAME,showTime);
seconds.addEventListener (Event.ENTER_FRAME,showSeconds);
[Code] .....

View 3 Replies

ActionScript 2.0 :: Get A Loop Repeating As Background Noise?

Mar 13, 2007

I am trying to get a loop repeating as background noise I have implemented this within an MC on maintime line.

Code:

myLoop = new Sound;
myLoop.setVolume(80);
myLoop.attachSound("final");
myLoop.start(0 ,99);
var pos:Number;/////user interface below

By me starting loop at 0, playing back 99 shouldnt that loop it endlessly? However it stops after first play.

View 2 Replies

ActionScript 3.0 :: Noise Reduction Or Denoise An Image?

Jan 26, 2010

anyone know of a way to deniose / Noise Reduction or anyway to do this at runtime on a image in as3. I'm creating a image editor

View 1 Replies

ActionScript 3.0 :: BitmapData.noise: Control Speed Of Change?

Oct 25, 2010

Moved from Newbie section I have beginner skills using AS3 and have been trying to improve a basic movie that generates a visual noise pattern. I need it for an eLearning lesson. A while back, I got some help pulling this script together. It uses bitmapData.noise to generate a visual noise pattern. It can be viewed here: [URL]

I checked with a colleague who is expert on the use of these visual patterns, and he suggested that the change speed is too fast: that the dots (pixels) need to change at just under 400 dots per second for an 800 x 600 stage. I tried changing the "seed" parameter, but while this slowed down the pixel-dot change, it did not run smoothly. I'm not sure what else can be scripted to accomplish slowing down the change rate

[Code]...

View 21 Replies

ActionScript 3.0 :: Control Sound Of The Player - Crackling Noise

Mar 13, 2012

I want that my spaceship gets louder when my mouse moves away from it (and vice versa). Problem is that my function produces an annoying crackling sound I can't get rid of when I move my mouse away from it (and vice versa). The sound file is ok so far.

Code:
shipSpeed = (abs(player.x - playerPrevPt.x) + abs(player.y - playerPrevPt.y)) / 2;//the ship's speed gets calculated
//this is used to determine whether the ship's volume of its sound shall be increased or decreased

[Code]....

View 2 Replies

IDE :: Strange Noise When Importing An FLV File With Alpha Channel?

May 14, 2009

I have a strange issue with the FLV files i imported to my site.These FLVs were imported with Alpha channels.In my site there is a button, that when its pressed for each FLV it starts playing.The Problem is after its been playing for awhile there is a strange Noise at the background that starts appearing slowly. (Please see attached file)The only code i have on each FLV is for transparety and a Loop (Plaese see below):

onClipEvent (load) {
this._alpha = 0;
this.dir = -1;

[code].....

View 1 Replies

ActionScript 3.0 :: Without That Bitmaps Border Showing Around The Noise Effect..Threshold?

Nov 19, 2010

I have this tutorial code from AS3 Cookbook, fog like effect on Bitmap data

Code:
import flash.display.Sprite;
import flash.display.Bitmap;

[code]....

View 5 Replies

Professional :: Media Encoder Turns Audio Into White Noise

Aug 24, 2011

I'm running CS5.5 on an intel Mac 10.6.5, and I have been having problems encoding to flv. All my videos are edited the same way, and using the same formats etc., yet recently I have found that when converting to .flv, some will work fine, and others will have the audio replaced by white noise.

Checking through the video specs, it appears that the one difference is that the ones which worked fine are all Apple ProRes 422 HQ files, and the ones which failed are Apple 10bit Uncompressed. The strange thing is the audio is the same for both. Yet when the encode problem happens, the video for both is fine, its just the audio where the problem appears.

View 1 Replies

Media Server :: Removing Noise Wheh Mic Attached To Stream?

Nov 29, 2011

I am using these settings for media server but there's too much noise when a mic is attached to stream. Code is as following, can you suggest changes to remove the noise for more crystal clear voice?

[Code]...

View 2 Replies

ActionScript 2.0 :: Flash Clock - Telling Time And Making Noise?

Jun 23, 2004

I was thinking the other week - wouldn't it be great to have a flash clock that not only tells a classy analogue time but also, like a church clock, gives out bell noises when the hour is reached, an also chimes the number of hours the time corresponds too. So at 1pm/am it will chime once, and at midnight you get 12 chimes and so on, I'm sure you get my meaning. I'm not great when it comes to working with sound, infact I've never added much more than a custom click noise on a button. How to go about this? I've attached a nice church bell noise for y'all just incase.

View 12 Replies

How To Make Buttons Work

Dec 16, 2009

I am a new comer to flash and I have been teaching myself actionscript 2.0 and I am now trying to move to action script 3.0 this seems a dumb question but for the life of me i can't figure out how to make my buttons work.i am trying to have the user click at button that connects to a movie clips and plays the movie, the movie stops then goes to the next frame of animation.

View 1 Replies







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