ActionScript 3.0 :: Make Brightness Of Footage Being Captured By Webcam As Trigger To Start / Stop Event?

May 9, 2011

Im looking to make the brightness of footage being captured by a webcam as a trigger to start or stop an event or animation. basically when the brightness being captured by the webcam goes below a certain level a layer will be effected and when the brightness goes back above this level it will revert back to its original state.

View 1 Replies


Similar Posts:


Flash :: Save Captured Still Image From Webcam?

Jul 14, 2010

I have written enough code to preview the webcam video in Flash.Now, I want to capture images at 10 second intervals.

Here's my code:
import flash.display.BitmapData
import flash.geom.Matrix

[code].....

View 1 Replies

Actionscript 3 :: Morph Image Captured Through A Webcam?

Jul 15, 2010

I'm trying to morph image captured through a webcam. The webcam snapshot part is already working but I still have no clue on how to do the morphing part. Can anyone point me to a tutorial (or kindly post code sample) on how to achieve image morphing using flash actionscript 3?

View 5 Replies

Save Video Captured From Webcam In Flash?

Oct 4, 2010

Im making a flash app that will capture video from the users web-cam, show whats being captured and when he clicks submit, send this to the server.Its already capturing video from the user web cam, but its not recording anywhere. Whats my next step to save it somewhere where it can be played to the user after recorded and after he clicks in a submit button send it to the server?

View 1 Replies

Actionscript 3 - Save Video Captured From Webcam Using Flash?

Dec 29, 2009

I'd like to use Flash to capure video from the user's webcam and then save it on the same server that hosts the Flash file. The web server will be running ASP.Net technology. Lot of searches yielded the same lines of code to start a webcam capture using Flash. I can't find anything that sends that captured video back to a server.

I can find lots of blog and forum posts that imply 3rd party software or Flash Communication Server is required to collect it on the server, but I don't understand why. It seems like Flash ought to be able to capture some video and send it as an HTTP post to the same server that hosts the Flash file. That's pretty basic Flash/webcam functionality, right? It seems like we don't need to introduce 3rd party dependencies just yet.

View 1 Replies

Actionscript 3 :: Directly Upload Video Captured From Webcam?

Aug 3, 2011

I'm working on a site, which needs to have a feature of users capturing their opinions about a specific topic with their webcam, and uploading them to the server. After a short research, and viewing similar questions like this one I ran out of possibilities:

I cannot use Flash Media Server (out of budget) I cannot use Red5, as the server where the app will be hosted is not able to build or install it. (our server guy told me that Red5 was last updated in 2007, and he got some errors which I include below (in case that someone would have an idea how to fix it) )

red5 install errors:

xxyyzz@zzyyxx ~/red5 $ sh red5.sh
Exception in thread "main" java.lang.NoClassDefFoundError: org/red5/server/Standalone

[Code]...

View 3 Replies

Actionscript 3 :: Webcam Captured Image Resolution / Size

Mar 9, 2012

I have been having a bit of trouble with AS3 and webcams. I have a script that connects to a webcam and then sends its output to a php script that saves the captured image. This works all except for one problem. It seems that the maximum resolution allowed for the actual Camera object is 320x240. I went to the extreme of hooking a Canon 60D up as a webcam because I have a normal webcam that is supposed to have max resolution of 1280x720 and all I can get is a 320x240 image from it. What I have found so far is the max I can get out of the Canon is also 320x240. Maybe I have been looking at this to long but I am stumped. Below is a sample of the action script where videoCapture should be 1024x768. What happens instead is a 1024x768 image is created with a black background and in the top left is a 320x240 image from videoCapture. I could obviously resize this but that would defeat the purpose being poor quality. Is there something I am missing here or maybe some limitation of Flash even?

[Code]....

View 1 Replies

ActionScript 2.0 :: Brightness/darkness Detection With Webcam?

Sep 27, 2009

I would like to ask that how can I use the webcam in AS2 for brightness/darkness detection.I've found many topics in motion detection, but they are not useful for me, and they are too complex.hat I want is only an image with alpha level which is react with the light in the room. If the webcam get a dark image (the light are turned off in the room)The alpha of the image goes to 0

View 2 Replies

ActionScript 2.0 :: Make A Trigger Event In The Mp3?

Mar 5, 2008

I have an mp3 in a website, and i want that after the music as played for 11 seconds an image appears. So, can i make a trigger event in the mp3 so that after 11 seconds of playing the mp3, my image would show? I dont have the mp3 in the swf. It loads externally..

View 3 Replies

ActionScript 3.0 :: Start / Stop Motion Tweens With Keyboard Event

Jul 10, 2011

What I want to do is create a powerpoint style presentation. But rather than change slides, I have one large "graphic" that I am moving around and zooming into by "motion tweening". Now all I need to do is: (with a keyboard event)
Start the motion tween and then let it play out
Then start the next motion tween and let it play out
and so on...

All I have is this, which allows me to start and stop it when it is tweening, but isn't as effective as it stopping at then end of a motion tween, then allowing me to push a key and for it to go to the next "slide".
Code:
stop();
var isPlaying:Boolean = false;
stage.addEventListener(KeyboardEvent.KEY_UP, keyUsed);
function keyUsed(event:KeyboardEvent){
if (isPlaying){
stop();
} else {
play();
} isPlaying = !isPlaying;
}

View 3 Replies

Professional :: Start Stop Motion Tweens With Keyboard Event (powerpoint Style)?

Jul 10, 2011

i've been looking around for answers to my problem to no avail. What I want to do is create a powerpoint style presentation. But rather than change slides, I have one large "graphic" that I am moving around and zooming into by "motion tweening" Now all I need to do is: (with a keyboard event) start the motion tween and then let it play out then start the next motion tween and let it play out and so on. all i have is this, which allows me to start and stop it when it is tweening, but isn't as effective as it stopping at then end of a motion tween, then allowing me to push a key and for it to go to the next "slide"

[Code]...

View 17 Replies

ActionScript 3.0 :: Start, Stop Motion Tweens With Keyboard Event (powerpoint Style)

Jul 10, 2011

What I want to do is create a powerpoint style presentation. But rather than change slides, I have one large "graphic" that I am moving around and zooming into by "motion tweening" Now all I need to do is: (with a keyboard event) start the motion tween and then let it play out then start the next motion tween and let it play out and so on...

all i have is this, which allows me to start and stop it when it is tweening, but isn't as effective as it stopping at then end of a motion tween, then allowing me to push a key and for it to go to the next "slide"

Code:
stop();
var isPlaying:Boolean = false;
stage.addEventListener(KeyboardEvent.KEY_UP, keyUsed);

[Code].....

View 3 Replies

MX To Make Movie With Sound Start And Stop On Rollover?

Oct 18, 2009

im making a flash animation with a background two sets of text an invisible button and a song. im trying to make the the animation start when the mouse rolls over and have it stop and reset to the beginning when it rolls out. on my invisible button (first layer) i have

on (rollOver) {
play();
}

[code].....

View 1 Replies

Actionscript :: Make A Flash Video Start Playing On MouseOver, And Stop On MouseOut

Jul 6, 2010

I'm wondering how I can make a Flash start playing a video on MouseOver, and stop playing on MouseOut.

View 1 Replies

ActionScript 1/2 :: Using Start Button To Start And Stop The Scene Or Movie?

Nov 19, 2011

Here is the action scrip that I created. Correct it if you can.

Process.visible = false;
Cycles.visible = false;
stop();

[Code]....

View 3 Replies

Actionscript 3 :: Trigger Custom JQuery Event From Flash Passing Some Data Through Event Object?

Dec 2, 2010

How to trigger a custom jQuery event from Flash, passing some data through event object?

View 2 Replies

ActionScript 2.0 :: Make Image Brightness 100 And Fade To 0 When Rollover

Apr 14, 2006

I'm building a flash web site, this site contain images in 5 pages, i want to do an effect when rollover of any image ( make image brightness 100 and fade to 0 ).

View 4 Replies

ActionScript 3.0 :: Remove Dialog To Start Webcam In FLASH?

May 19, 2011

i have a webcam flash projector application , but whenever i start the application, it will pop out an adobe dialog asking me to accept/deny. Is it possible to remove that dialog window?? can I convent it to AIR to remove the dialog?

View 10 Replies

ActionScript 3.0 :: Reading A Click Event Even When Its State Is Not Captured; So Not "clicked"?

May 26, 2009

Im working on menu where I need to capture a "holded" mouse click in order to register a second event handler. Only problem is that the click is "on hold", meaning that the mouse button is beeing pressed and "holded" - so its not be catched by Flash's "MouseEvent.CLICK" listener as completed "CLICK".
 
Is there any workaround to capture this event before its registered as a completed click? - Maybe using the "useCapture" flag of the event handler?

View 3 Replies

Media Server :: Can't Start Recording Video From Browser Webcam To FMS

Jan 14, 2010

i'm developing a web site, and i'm trying to let the user record some video from his webcam. I'm using actionscript and flash media server. I got it work in my delevoper enviroment, but when i deployed it to the production server, the webcam can't get connected to the FMS. I'm afraid this is because of port blocking from the firewall. Does anyone knows wich ports are userd for recording from a browser by the Flash Media Server? I open the 1935 port in the Flas Media Server, but it still doesn't work.

View 19 Replies

ActionScript 3.0 :: Loading Multiple Images - Make Sure The Program Will Start Once All Images Have Dispatched A Complete Event?

Jan 26, 2009

im loading multiple images but how do I make sure the program will start once all images have dispatched a complete event. like make a universal loader for all the other "small loaders" if you understand.

View 1 Replies

ActionScript 3.0 :: NetStream Choppy - Make A Character Start To Talk When The Sound Starts And Stop Talk When The Sound Stops

Aug 5, 2010

Need to make a character start to talk when the sound starts and stop talk when the sound stops so I'm using this:

[Code]...

View 2 Replies

Flex :: Event Like ItemEditEnding Or Any Other Way To Stop Event Before ItemEditEnd Event In Datagrids?

Apr 12, 2011

I have editable grids which are 2-way binded to my model. What I want is to validate my data when user edits any cell before it get updated in model. I have applied my validation at ItemEditEnd handler, but, I want to apply validation in between itemEditBegin and itemEditEnd events.

View 1 Replies

Flash :: Stop Webcam/mic Access From Being Remembered

Nov 25, 2011

I have an event that's triggered when the webcam/mic access is allowed/denied.

addEventListener(StatusEvent.STATUS, sendStatusResponse);

I need sendStatusResponse to be fired everytime to let the server know the stream has started, however if the user has clicked on the remember checkbox this function is never fired.

Is there a way I can prevent them from clicking remember, or is there a better event to use so that I can store a timestamp of when the stream ACTUALLY started.

View 1 Replies

IDE :: SOUND_COMPLETE Event Does Not Trigger?

Jun 6, 2007

I am working with a short vocal track and when the audio ends I would like a replay button to appear. The codes should work fine, no errors appear. Trace displays nothing...Here is some of the code:

var clip = "testClip.mp3";
//Create the Sound & SoundChannel Objs
var soundReq:URLRequest = new URLRequest(clip);

[code].....

View 5 Replies

ActionScript 3.0 :: Event Trigger On Date?

Jun 22, 2011

Im looking for an event to trigger on a particular date. Does anyone have a code snippet of how that can be achieved?

View 2 Replies

Actionscript :: Trigger The OnRelease Event?

Aug 17, 2010

i have a movieclip with an onRelease event. Is there anyway i can trigger this event in code? without clicking the movie clip?

View 1 Replies

Actionscript 3 :: Trigger An Event If The Video Is Over??

Jan 4, 2012

How to trigger an event if the video is over? I'ld like to show a replay button then.

var vid:Video = new Video(480, 270);
vidcont.addChild(vid);
var nc:NetConnection = new NetConnection();

[code]........

View 1 Replies

ActionScript 3.0 :: Getting An Event Handler To Trigger?

Jan 9, 2010

So I am trying to essentially have one class dispatch an event into the flow when it is added to the stage, and have another class catch the event, but I'm having problems. I set up a little test to simplify/display the problem I'm having. There are 2 classes, and then just some init code on the timeline.

ActionScript Code:
//code for box 1
package {

[code].....

View 9 Replies

ActionScript 3.0 :: SOUND_COMPLETE Event Does Not Trigger?

Sep 18, 2010

This should be easy but I can't figure out. The sound is playing which means the mp3 file was successfully loaded but SOUND_COMPLETE event does not trigger

Code:
private var soundReq:URLRequest = new URLRequest("blabla.mp3");
private var sound:Sound = new Sound();

[code].....

View 2 Replies







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