How To Replace Face / Image In Animation Like On Elf
Aug 31, 2009
I am making a simple Flash animation that I would like to put online and let people visiting my site upload a picture of their face so they can be the character, like on Elf Yourself. How do I do that? I'm assuming I make the animation with a square image of a face that I mask out, and the image gets replaced when a new one is uploaded, but I don't know how to set that up dynamically, or if there's a better way.
View 3 Replies
Similar Posts:
Nov 19, 2010
I have a flash movie i would like to create that will be around 400px x 500px.
I would then like to have a rhino charging towards you (the user) so it would have the effect that the rhino is trying to break the screen to charge at you (face on) but it stumbles because of the glass on the screen.
how they would go about this animation?
View 1 Replies
Nov 19, 2010
I have a flash movie i would like to create that will be around 400px x 500px. I would then like to have a rhino charging towards you (the user) so it would have the effect that the rhino is trying to break the screen to charge at you (face on) but it stumbles because of the glass on the screen.
Can anyone point me in the right direction of executing this or advise on how they would go about this animation please?
View 1 Replies
Aug 2, 2009
im messing with a movieclip symbol and i want to make a button, what'd i mean on Mouse over display/change this image in this X,Y cords or replace this image, something close to what buttonSymbol does but i want to make it using movieClip symbol...
and i have no idea how to do it.. i started like this:
[Code]....
View 0 Replies
May 5, 2010
As part of a much, much larger project, a client has asked me to take an existing flash banner, change the graphic, text, and link to make 4 more that are almost identical. Though I haven't worked extensively with Flash, I am familiar with it and thought this should be fairly easy, right? (Unfortunately, easy isn't exactly the word I'd use.)
I'm trying to take an existing fla, and change just the graphic, text, and button link to make a nearly identical banner. However, when I import a new image to replace the old image, the button disappears. I've tried overwriting the current image as well, and while I have a new image to show on the banner, and the text still works just fine, AND I have the outline of the box that should house the button (it even shows in the library),
Additionally, I will need to change the link, and since I'm having this much problem with a button, maybe you could understand how that works as well, because I can't even change it on the original.
View 3 Replies
Dec 12, 2009
I am unable to get the exact look when i replace the image with new image.I took one sample program. In this one image will be rotating. I tried replacing this image with new one, but it's not working as old animation.(Actual Old animation is some thing like Moving a needle, after replacing the image with new one needle is rotating some thing like along the boundary of circle. I am unable to find the root cause and solution.I didn't changed any thing in the code.)How to get the smooth rotation?
View 2 Replies
Sep 18, 2010
For example, I've created in Flash CS a movie clip CampfireMC, which contains child movie clip:
m_fire:FireMC
FireMC is an animation of flame CampfireMC controls playback of m_fire, for example, last frame of CampfireMC uses action code:
m_fire.gotoAndStop(m_fire.totalFrames)
And the question is how to replace (not delete/add, as m_fire.gotoAndStop(m_fire.totalFrames) will not work in this case) FireMC to another animation FireMC2?
I've tried the following trick, but it doesn't work
var campfire:CampfireMC = new CampfireMC();
campfire.m_fire = new FireMC2();
campfire.gotoAndPlay(0)
View 1 Replies
Feb 1, 2006
For example, I've created in Flash CS a movie clip CampfireMC, which contains child movie clip:m_fire:FireMCFireMC is an animation of flameCampfireMC controls playback of m_fire, for example, last frame of CampfireMC uses action code:m_fire.gotoAndStop(m_fire.totalFrames)And the question is how to replace (not delete/add, as m_fire.gotoAndStop(m_fire.totalFrames)will not work in this case) FireMC to another animation FireMC2?I've tried the following trick, but it doesn't work
var campfire:CampfireMC = new CampfireMC();
campfire.m_fire = new FireMC2();
campfire.gotoAndPlay(0)
[code].....
View 2 Replies
Mar 1, 2010
I am busy making a banner where in it certain items will pop up. Now these items are supposed to all come up the same way, with the same animation. But i dont want to make all these items over and over again to get the desired effect. Is it possible to simply replace a movie clip so that i could just copy paste the animation but replace the picture?
View 1 Replies
Jun 10, 2009
I am trying to replace some code which loaded an external image and triggered and function once completed with code that uses and embedded image. The relevant code looks like this.
Code:
[Embed(source='globe.png')]
public function Globe()
{
var imageLoader:Loader = new Loader();
[code]....
The commented out section is where it used to take the loaded image and apply it to a texturemap.I need to replace the lines of code in the first function with something that calls the second function correctly.
I have tried using function imageLoadComplete (e:Event = null)and calling it with imageLoadComplete(); in the first function but although it compile and runs without error, the program does not work properly. I suspect this is to do with the dispatchEvent(); line which I do not understand.
View 4 Replies
Apr 14, 2011
I am creating an image dynamically on flex. This images changes (as in changes image source) when the user clicks on it. Images are PNG format and I replace it with this code:
img.source = PATH_TO_IMAGE;
The problem with this is when I replace the image is it is not smooth even if you set the image property to smoothBitmapContent.
Is there a way to smoothen images when you are trying to replace the source?
View 1 Replies
Jan 16, 2010
I'm loading an external image and I'm trying to replace a color in this image with another color.
ActionScript Code:
var imageLoader:Loader = new Loader();
var image:URLRequest = new URLRequest("my_image.png");
imageLoader.load(image);
addChildAt(imageLoader, 0);
I'm trying to replace all green pixels with red pixels but not sure how to do this.
View 1 Replies
Jan 31, 2010
In a nut shell, it's been years since I've used flash, and recently I've been working on a rather modern and complex flash website template that I've purchased. What I want to be able to do is change a dynamic gallery, so that instead of displaying an images, it displays flv's. [code]...
View 3 Replies
Jan 22, 2012
I've never tried to do anything like this. Basically what I need to do is scan an image and blur the part that resembles a certain shape. For example: blurring license plates on cars or pictures with other people in them in which they should be blurred. I've done some googling and not found anything close to what I'm looking for.
View 4 Replies
May 5, 2009
I want my swf animation to be set as the background in my html page so I can put tables on top of it. I tried to do it but the swf file is not coming up.
View 3 Replies
Oct 14, 2010
I have video gallery written in ASP.NET. Each video has an .flv file hosted on FMS and image. I want to replace image with flash file each time use mouseover on video.
View 2 Replies
Jan 28, 2012
i have this code which allows me to replace the mouse cursor with an image but i would also like to change the image when the mouse is clicked down using a different image. the code i am using for just replacing the mouse cursor is:
Mouse.hide();
stage.addEventListener(MouseEvent.MOUSE_MOVE,follo w);
function follow(evt:MouseEvent){
[Code]....
i tried using a different code which i found but it failed to work with my project
View 1 Replies
Mar 9, 2011
I have a as file which basically draws a box around the bottom of your mouth and I am using a beginFill () function for the box. Basically I need to replace this fill with a bitmap image using beginBitmapFill () command. The trouble is I cannot find any resources that show me how to make the bitmap image wether it be a movieclip or graphic.
Also code (if it helps any) ActionScript Code: g.drawRect( r.x * scaleFactor, r.y * scaleFactor, r.width* scaleFactor, r.height * scaleFactor ); g.beginFill(0xFF0000); g.drawRect(r.x * scaleFactor + (r.width* scaleFactor)/3.6, r.y * scaleFactor + (r.height * scaleFactor)/1.65, 70, 40); g.endFill();
View 3 Replies
Jun 20, 2010
I want my web site to use flash, but want to make sure Apple mobile devices dont see a big blank box. How do I test for this and replace flash with an image if its an iPad, etc.?
View 1 Replies
Nov 26, 2011
i've designed an xml driven photogallery using actionscript 3.0. First when the swf file is run, all the thumbnails load in, Then I have thumbnails below, when i click them the large image loads in. I wanted the thumbnails to be replaced with the numbers which form dynamically from the xml file. i.e I simply want the numbers, on clicking them loads respective images Please give a solution to this, or please suggest a good tutorial. here's the code i've worked on and im stuck replacing
[Code]...
View 1 Replies
Sep 21, 2010
I'm having some real trouble getting .replace to actually replace something. Here's my code...
[Code]...
I can trace both newFiles[i] and keywords[i][whatever], but the replace doesn't replace anything. The regex is valid as well. I'm using regexr to test it, and it works perfectly there... but will not for me and I don't know why.
View 4 Replies
Sep 10, 2009
I am am not a developer but have bought a template which I am modifying to suit my needs. I have made most of the modifications but and stuck on how to change the animation for the image gallery. When I move from one picture to the next the animation effect is something like a bubble burst. This is too flamboyant for me. I would like to change it to something more sleek but have no clue where to start.
View 1 Replies
Nov 17, 2011
i created flash application with some animation in it, i have to save this as image with the animation
View 2 Replies
Aug 15, 2011
I'm recently playing with Away3D Library and have a problem in finding Face center in Away3D. Why Away3DLite has a face.center feature while Away3D doesn't have it ? and what is the alternative solution for this ?
View 1 Replies
May 22, 2010
I have the project where I need to use papervision3d engine. It's 3d model of building. Each floor is separate .dae model embedded within swf file. Everything is okay regarding performance, but z-sorting of BasicRenderEngine is making me sad. If you take a look over attached image you will see that sometimes wall faces appear above cover and backwise, cover faces appear above wall. Each floor model was made with Swift3d by path extrussion. It has two types of material: one for wall and another for cover. Is there any way I can go through all faces and regading material applied to it assign them ViewportLayer and sort index ?
I tried to use QuadrantRenderEngine, it does correct z-sorting, but is CPU killer.
View 1 Replies
Oct 13, 2004
is it possible to rotate an object so that it always faces another object that is able to move around the screen? as in track it on the y and x axis?
View 2 Replies
Aug 28, 2009
I was trying to create a website where i want my banner to be displayed not just as a picture but like an animation. I have seen few videos on how to convert an image to an animation. Then i tried downloading trial version of flash but it is taking me a lot of time for downloading. I am attaching the picture in this discussion. Can someone convert this image for me to any kind of animation (anything you like). Here is one website with a nice Flash banner. [URL]
Attachments:
ce_logo2.gif
(7.6 K)
View 2 Replies
Sep 3, 2009
what is involved to create a Flash file where the user can upload a .jpg of their face, crop it, and then add that picture to an animation? I'm sure you've all seen this...sort of a jib-jab type animation.
View 1 Replies
Feb 24, 2011
I'm trying to accomplish something with flash but I'm having some problems, if not a solution I'm hoping someone can tell me a method and what I should read up on to do this: I want to have an image on the stage that has a gap the shape of a face in the middle of it, I'd then like to put a webcam feed behind it so people can line their face up in the gap and press a button to take a picture. (I've managed to put the webcam on the stage and take the picture but can't work out how to put it behind an image). Then I cant quite work out how I'd put the face onto a character I've drawn.
View 1 Replies
Jul 8, 2011
I got a working code to detect face in flash. It just detects and draws a square mark over the face displayed in flash player. Now I do need when ever a face is detected automatically a photo to be taken. How to implement this? Is there any open source project available for this?
View 1 Replies