IDE :: Unable To Create A Displacement Effect?

Aug 18, 2009

I am trying create a displacement effect using this code, but i am getting these error, not able to solve it!import flash.display.BitmapData;

var damper = new flash.display.BitmapData(128, 128, false, 128);
var result = new flash.display.BitmapData(128, 128, false, 128);
var result2 = new flash.display.BitmapData(256, 256, false, 128);

[code].....

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Make A Cool Water Effect Using Bitmap Data And A Displacement Filter?

Jun 9, 2009

I found a tutorial on how to make a cool water effect in as3 using bitmap data and a displacement filter. It works great but it is very heavy on the computer.

here is my code

Code:
var bmd:BitmapData = new BitmapData(700, 398);
var dmf:DisplacementMapFilter = new DisplacementMapFilter(bmd, new Point(0,0), 1, 2, 10, 30);
var p1:Point = new Point(0, 0);
var p2:Point = new Point(0, 0);

[code]....

View 2 Replies

Actionscript 3.0 :: Create Attraction Effect Instead Of Push Effect?

Aug 25, 2010

is there a way to change the code and create attraction effect instead of push effect?i tried but without success...!

View 1 Replies

ActionScript 2.0 :: Unable To Make [FMX] Box Effect?

Feb 26, 2004

I was wondering how to do the box effect like on [this] site. The lines move up and across to form a box. I have tried a few things that I could think of, but have't got it.

View 2 Replies

ActionScript 2.0 :: Unable To Make DynamicText Effect?

Sep 23, 2004

Does anybody know how to apply this text effect(including the blinking underscore) to a text field that loads from an external .txt file.

View 6 Replies

ActionScript 2.0 :: Displacement Map For Perspective

Jul 16, 2007

I've tried in vein to understand displacement maps; I can find nothing on "The Internet" that teaches me what I need to learn. Now I'm looking to all you smart-types to solve my problem for me! All I want to is take an image (a rectangle) and make it look like it's going off into the distance (trapezoid-like), getting smaller from left to right. This doesn't even need to animate, I just need two states: straight-on and trapezoid-like -- think iTunes album art browser minus the bells & whistles. I know this can be accomplished with a displacement map, but I know not how to get 'er done.

View 7 Replies

Unable To Create Internal Links On Xml

Mar 24, 2010

Ive been sitting infront of this screen trying to create an internal link to my contact page from some text i have on my about us page.[url]...

View 1 Replies

Professional :: Unable To Create SWF From Flash Pro CS4

May 11, 2010

I have been working on a full flash website for a while, and been testing it using the Ctrl + Enter command to export it to swf. Today I was working on the file making some text modifications, but when I tried to test the website, nothing happens. It shows the progress window, but after a while nothing happens, It wont show the swf test file, and It doesn't create the swf file in any way. I tried the other commands: file-publish, file-export to swf with no success. I'm using Flash CS4 professional (10.0.2) on Windows Vista Home Premium 32Bit. Other .fla files export swf with no problem, and the Swf preview (Ctrl + Enter) works fine. It's only in this file.

View 7 Replies

Unable To Create A Second Level In Flash?

Apr 5, 2011

I made a game in flash, and the first level of the game works, but after you complete the level, I am unsure of the coding to test and see if all of the enemies, since they are movie clips, have been unloaded from the flash, so it will move on to the second level. I know there is a way to do it, I just don't know exactly how, to do it, nor do i know where to look to get help with it.

here's the coding i've done so far.

this is the coding I've put one of the enemy characters, who is a movie clip, they all have different values to make things interesting.

onClipEvent (enterFrame){
if(_root.spaceship._y>_y) {_y +=5;}
if(_root.spaceship._y<_y) {_y -=5;}

[Code].....

View 2 Replies

ActionScript 3.0 :: Iterative Displacement Mapping?

Jan 22, 2010

The way my test works, I draw a path on a displacement map using the mouse, and this displacement is applied to the same image every frame (i.e., the displaced image of the last frame is displaced again). Colors are flowing along the path as they should, with one problem: the displaced pixels always turn transparent after a few seconds.At first I thought this had something to do with the DisplacementMapFilterMode, so I tried setting it to "COLOR" using an opaque bright blue, while the stage behind my warped image is a highlighter green. Nope, the FilterMode color is only used for pixels sampled off the image, while my interior pixels were turning completely transparent of their own accord. I tried removing the alpha channel from my distorted image, and then the pixels would just turn black instead of transparent.

So, now I'm stumped. I've viewed my displacement map to make sure it looks right, I've tried setting the displacement scale to low and high numbers, and I've checked the channel assignments, all to no avail. Here's my code, and I've attached the .fla as well, so you can see what's happening. If you run the file, just make your mouse is located in the center of the frame before it starts, or you'll end up dragging the blue fill color in from off the screen.

Code:
// "spider" is the name of a named movie clip instance containing
// an image on the stage, having the same dimensions as the stage

[code]......

View 0 Replies

ActionScript 3.0 :: Find Position Of Mc After Displacement?

Apr 28, 2011

I have an mc that is displaced. Within this movie clip is a text box that moves about but it is being displaced along with the rest of the mc. Is there anyway to find a position inside the displaced mc and translate that to root coordinates.

View 0 Replies

ActionScript 3.0 :: Magnify With Displacement Map Filter?

Apr 10, 2009

I found this cool class

[URL]

View 2 Replies

Flex :: Unable To Create Snapshot Of Canvas?

Nov 6, 2009

In my application a canvas object has height = 90 px & width = 86400 px (indicating number of seconds in a day [60 * 60 * 24] ). The canvas is scrollable and the user can add or delete components in that.Now, I want to have snapshot of the whole canvas & shrink it to size 910x30 to draw taken snapshot in another canvas.Can anybody tell me how to take snapshot of such large Component?I have tried to take snapshot in BitmapData object but as it max width is 2880 can not give whole canvas snapshot.

View 3 Replies

ActionScript 3.0 :: How To Use Displacement Filter With JPEG Image

Mar 9, 2010

I'm trying to use the displacement filter with a jpeg image instead of a gradient map. My images are:
1) Background: men2.jpg
2) Map image: men2BN.jpg (same as above, but grayscale and blurred)
3) The image to be displaced: star5_mc

View 1 Replies

ActionScript 3.0 :: Apply Displacement Mapping To Every Frame?

Oct 6, 2011

I'm using this tutorial to create buttons with displacement mapping for my simple game menu. These buttons need to be clickable; i.e. once you click on them you move to a different frame. Everything works fine on the first frame, but when I click to the next frame the displacement map disappears and will not apply to the buttons on that frame. Plus, when I click my "back" button to return to Frame 1, the displacement effect has disappeared entirely.

This is the code which is in the base "Game" class, which links to the main Flash file.
 
package
{
import flash.display.MovieClip;
import flash.events.MouseEvent;

[Code]....

It calls the JitteryButton class, another external class, which I don't think is the problem, but I can post if if necessary. It's very similar to the one in the tutorial. Also, I need to add different buttons on other frames of the menu, but if I call them in this external class, it doesn't recognise them.

can anyone spot why this might stop working like it does? I was thinking about instead of using "Game" as an external Actionscript file, I could actually write it into Flash as Actionscript on a layer - would this work?

View 1 Replies

Actionscript 3 :: Syncing Overlay To Displacement Map Filter?

Dec 13, 2011

I'm using a DisplacementMapFilter to created a globe-like effect on a flat map. My problem is, I also want to sync some labels to this map. I have the x/y coordinates for their locations on the flat map, but I need to map them to the now-displaced image.

I would like to be able to do this using the BitmapData that contains the displacement map, so that changing the Bitmap changes both the displacement filter and the label locations. Also, the labels will not be static, and accuracy is fairly important.

View 1 Replies

Flash :: Why Is Perlinnoise Displacement Filter Not Updating

Jan 17, 2012

i got this script from this tutorial. I tried to convert it from AS2 to AS3, but it seems like the displacement filter is only applied once for some reason. After that, the bitmap isn't updated.[code]

View 2 Replies

ActionScript 2.0 :: Make Displacement Map For Perspective Correction?

Jan 20, 2006

I am trying to make displacement map for perspective correction, but so far my math goes wrong. Here's what I've got; as you see, some lines are not preserved.

View 5 Replies

ActionScript 2.0 :: Displacement Applied To Shape Tween?

Jan 12, 2007

I had a quick question about displacement... I just have a circle that changes shape and size and I wondered if there was a way to apply some kind of displacement filter to it, so that ANYTHING under this circle movieclip is distorted by the displacement. (think of a magnifying glass).

View 1 Replies

Unable To Create A Simple Spot Difference Game

Feb 17, 2010

I'm looking to do a very simple spot the difference game using flash CS3 and actionscript 2 for a school project.

I have 2 images on separate layers on a timeline in the same frame, which has been paused using the 'stop' command. I am looking to have around 4 differences that, when clicked, will be recorded at the bottom of the screen.
 
The problem is, I am unable to find a way to get the differences recorded at the bottom in the order the user finds them, where each one is entered when the user clicks it, leaving gaps for those that haven't been found.

Being only a basic user, I am only familiar with scenes and basic timeline controls, and i'm hoping there's a relatively simple way of achieving this. However I am perfectly comfortable with using more complex actionscript, having done some programming before.

View 9 Replies

ActionScript 2.0 :: Make Text Appear Wavy Using Displacement Maps?

Apr 17, 2007

i am trying to make my text appear wavy using displacement maps. i've attached the file. Please check it out and tell me how to do the following three things with it:

i need to ensure that the text doesnt get cut at the top when it goes out of bounds.i need to create a gradient with more variations. that is, right now its going from 0x000080 to 0x0000FF to 0x000080. so i need to make it go like: 0x000080 - 0x0000FF - 0x000080 - 0x0000FF - 0x000080.i need to be able to vary the size of the gradient box so that it perfectly fits the movieclip that i apply it tohow do i do it? could anyone please make those changes and attach the file back? or just tell me how to do it?

View 3 Replies

ActionScript 3.0 :: Squares In Random Midpoint Displacement Algorithm

Sep 3, 2011

I'm trying to make a plasma fractal (as a self-challenge, I made the sierpinski triangle, Koch snowflake, Mandelbrot set, Julia set, and dragon fractal. If you want the code, PM/reply.) Here's the code of frame 1:

[Code]....

View 2 Replies

ActionScript 2.0 :: Unable To Create Basic Button To Play Movie?

Sep 2, 2004

I'm trying (and failing it seems) to teach myself Action script and I'm having a really tough time with what I'm sure is something that quite easy to do. Basically I have one button. When this button is pressed I'd like it play a movie. When the button is pressed again I'd like to stop playing the movie. In the first frame of the movie I've put a stop action so that it doesn;t repeat itself when it finishes playing. In the last frame of the movie I've put gotoAndStop(2);In my main timeline I have 2 layers each of which has one frame. The button is one layer and the movie on the other.

I selected the button on the stage and gave it the actionscript
on (press){
gotoAndPlay("vcsound_mc.play(2)");

[code]....

View 5 Replies

Flash :: Prevent Text Displacement For Some Foreign Language Fonts?

Jan 3, 2011

I have a multilingual project (currently 13 languages), which uses many different font variations of "Helvetica Neue", mostly bold, condensed and regular cuts from the LinoType Pro font set ( which includes western european characters) and the same for cyrillic. We will probably add chinese and japanese variations in the future. I have set up the project to use different CSS stylesheets and separately load the fonts for each version, depending on which language the user selects, so I can have different line heights, kerning and/or font sizes to make everything keep the original look, even if the fonts look nothing alike.

All of this works well, except for one problem: For some reason, all cyrillic letters seem to be displaced. They appear 2-3 pixels below the correct base line, and actually protrude across the textfield's bottom border, even when the field is set to autosize. When I use textfield.getCharBoundaries(), all values seem to be correct, even though they obviously aren't rendered correctly.To make everything look neat, I could of course manually move all problematic textfields up or down according to language and font size, but I was wondering if there was some way to prevent or at least detect this kind of displacement in order to automatically handle the adjustments - the Flash Player should have some sort of information on how things are rendered, shouldn't i

View 7 Replies

IDE :: Create A Ink Splatting Effect?

Oct 21, 2009

I wish to create a ink splatting effect . I got this link . [URL]

View 9 Replies

CS3 :: Create A Hover Effect?

Jun 17, 2010

Im new to CS3, in MX2004 and Flash 8 - i know exactly how to create a hover effect, but in CS3 i dont see the toolbar that used to be over the timeline in the editing mode.

View 4 Replies

ActionScript 2.0 :: Create A 3d Effect?

Nov 25, 2002

I've had an idea for an e-invite I'm doing for my site launch ... so I need to learn how to create a 3d effect I guess (although I have no 3d programs) that give the illusion the user to going through rooms ... it's not actually rooms I want but that's easier to describe ... you get what I mean right?

View 2 Replies

Create Paint Splatter Effect?

May 20, 2009

Does anyone know how to create this effect? http:[url]............

View 1 Replies

ActionScript 2.0 :: Create The Zoom And Pan Effect

Sep 9, 2009

I have been searching high and low trying to create the zoom and pan effect used in this website [URL]

View 3 Replies

How To Create Morphing Effect In Flash

Apr 6, 2010

I'm new in flash, how to create morphing effect in Flash like one of this sample : [URL]s are we should make separate images for every object movement that we want to morph.

View 3 Replies







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