Asp.net :: Flash Object Captures Webcam Picture Then Streams To Page?

Oct 28, 2009

i found a couple of samples, but they seem to be fixed only to PHP.

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Captures Image And Send To A Seperate Page?

Sep 16, 2011

The swf file kind of captures a certain area of a flash movie which is loaded in.. I guess it works a bit like a camera..Anyway, what I am trying to do is figure out what determines the size of JPEG produced. At the minute its pretty small.The Flash movie is used to make an avatar. When the user is finished they hit a button and it captures the design, then emails it.I have found a line of code which relates to the size of the jpeg which is emailed

var myBitmapData:BitmapData = new BitmapData(230, 200);

What I want to do is produce a much bigger image than 230, 200

I tried changing those numbers higher and it did not work,Also I want to be able to send the image to a seperate page where an API can be picked up.Here is the code

Actionscript Code: [code]......

View 4 Replies

Flash :: Take A Picture From User's Webcam Ala Facebook?

Sep 25, 2010

I didn't find a recent question so somethign might have changed:

there is any widget, ready to use, to integrate with my website in order for my users to take a picture of themselves ala Facebook when they register to my site? i guess is Flash/flex based

View 2 Replies

Php :: Saving A Picture In Flash Webcam Snapshot Application?

May 5, 2011

I have made a flash webcam application to allow the user to take a photo of themselves using a webcam. I have successfully saved the photo in my localhost. However, I would like to set the names of those photos. Currently, the photos names are generated by

$uniqueStamp = date('U');

I also have a textfield in my flash app that allows inputs from user for the photo name. For example if the user write 'MYPHOTONAME' in the textfield, the photo which will be saved in my localhost will be named 'MYPHOTONAME' too. How do I do it in Flash and in PHP? Currently I'm having some problems because I cannot send the textfield string to PHP.

Here is my flash code to send the snapshot to PHP and let the PHP save it in my localhost:

imgBA = jpgEncoder.encode(imgBD1);
sendReq.data = imgBA;
sendLoader.load(sendReq);

[Code]....

As you can see, I tried to pass in $photo = $_POST['photo']; from flash to PHP however I do not know the exact code, can anyone help me?

View 1 Replies

ActionScript 3.0 :: Use A Shared Object So That When Someone Goes To The Next Page It Will Load On The Picture It Left Of At

Feb 2, 2011

Have a flash picture slide show that fades in and out to transition from picture to picture. Would like to use a shared object so that when someone goes to the next page it will load on the picture it left of at. Should the shared object load at the last state or should it save the frame position? The movie has so many pictures that people will only see the first couple pictures every single time they change pages and never get to the end of the movie. This was made in Flash CS5

View 1 Replies

Flex :: How To Take Webcam Snapshot Picture

Jul 11, 2010

Using Flex, what is the recommended way of taking a webcam snapshot picture? Something along the lines of:
var camera:Camera = Camera.getCamera();
var image:Image = /* magic goes here */

View 2 Replies

ActionScript 3.0 :: Webcam To Take Picture And Save?

May 10, 2010

I'm totally new to AS3 and I have an upcoming project on it. It's a virtual hairstyling project but I have no idea how to get the first part to work.This is how the first part of the project goes:First, it will ask the user to take 3 pictures of themselves using the webcam (probably some buttons that says "take picture"). These 3 pictures should be saved temporarily in the flash.After all pictures are taken, it will ask user to choose one that they like the best and will proceed with the next step. And if they don't like any of it, they can take the pictures again.

View 3 Replies

ActionScript 3.0 :: Webcam 100 Activity An Not Picture Update?

Mar 18, 2011

I have a problem with using the webcam in flash. Most of the times it works fine but sometimes the wecampicture is not updated and is outputs a constant activity level of 100%.

View 3 Replies

ActionScript 3.0 :: Saving Webcam Picture As JPG File?

Oct 8, 2010

I have a swf that lets you take a picture with your webcam , I have changed the scaleX to -1 so that the picture on screen appears like a mirror. This works fine, when I take a screenshot I am getting a bitmapdata from the video stream, which I am also setting scaleX to -1 to preserve the image the same as from the video. But now I am trying to save that picture as a jpg file, I can't seem to save the pictures as it appears, I can only save it as the original data which is essentially the wrong way around (doesn't preserve the changes made to scaleX = -1)

Code:
bitmapData = new BitmapData(this.video.width,this.video.height);
bitmapData.draw(this.video);
// at this point the bitmapData is the webcam view, but not with the scaleX I applied before
[...]
var jpgStream:ByteArray = jpgEncoder.encode(bitmapData);
// so now this jpg data is of the picture which isn't horizontally flipped
How can I get a bitmapData from the video and preserve the scaling I applied to the video?

View 3 Replies

ActionScript 2.0 :: Make Visible The Webcam's Picture On The Stage?

Aug 18, 2009

I have problems with webcam streaming in AS2. In AS3 I can make it visible on stage with a Camera.get call and a Video object. Because of some reasons in one of my works I have to use AS2. Can anyone provide me a working code to make visible the webcam's picture on the stage? I use the following code, but it doesn't work:

var cam = Camera.get();
//it's okay I can see the real camera name in the name property
var vid:Video;
vid.attachVideo(cam);
//... and nothing happens on the stage Why?
trace(vid) returns "undefined" Why?

View 0 Replies

ActionScript 3.0 :: Save Masked Webcam Picture As Jpeg?

Sep 14, 2010

i am trying to layover a background picture (bitmap) a masked area of a captured (blurry circle) webcam and add some small bitmap graphics (little squares with text) to itactualy not that hard but i want save the whole thing as jpegso on the screen everything looks fine and i managed to save a jpeg with a masked capturevideo but without the background image included ;-(so can anybody tell me how to include the background image ?here is the code so farit generates a gradient mask for the captured video

ActionScript Code:
package
{

[code].....

View 0 Replies

ActionScript 3.0 :: Taking A Picture Of An Area On Stage + Webcam?

Jan 6, 2012

taking a screen grab of a movie clip while the webcam is on..(the end goal is to create an app where people can put funny stuff on their face e.g an eye patch ect..)Is there any simple tutorials on how to do this?, i've tried the whole matrix thing but im still having issues when i resize or move movie clips around, to get it align with someones face!

View 7 Replies

ActionScript 2.0 :: Using Flash To Do Screen Captures Of Applications?

May 9, 2005

I saw this program 'asap' (i think it's called, will try and get more info about it) but it's flash that uses the Flash player settings screen to setup a way of capturing the users desktop or any application currently running.

How can this be done? I thought that the only limitation in flash is to not interact with the users machine (writing files etc) because this is a security risk.

View 1 Replies

Flash :: Access Webcam From My Page And Capture Images Of Users?

Mar 16, 2012

I am using Asp.net/C# to build an application , i have a requirement wherein i need to access webcam from my page and capture images of users.So i am trying to achieve this by creating flash file .

View 2 Replies

Flash :: Create Picture Of Application Hosted By ASP Page?

Sep 1, 2011

How can I programatically make a picture of a flash application in an ASP.NET/C# page which is hosting the flash application?

View 2 Replies

ActionScript 2.0 :: Display A Picture From The Library On The Flash Page?

Feb 16, 2004

whats the actionscript to display a picture from the library on the flash page?

View 3 Replies

IDE :: Cant Duplicate The Object On Picture - Always Start To Change The Oroginal Object?

Feb 8, 2010

I have problems in my flash project. I cant duplicete some pictures or "group items" , when I copy/paste them and when I start to edit that one that I copyed it automacly edit the original version...I cant duplicate this object on picture ( http:[url]....)... what ever I do..it always start to change the oroginal object...

View 3 Replies

ActionScript 2.0 :: Use A Different Picture For Each Page?

Jul 16, 2008

I am trying to edit a site, I have a picture on top right side. I want to use a different picture for each page using action script. I have added the pictures in series and no actionscript seems to be working for that. Can anyone pls check it out?

[URL]

View 3 Replies

ActionScript 2.0 :: Make A Picture Gallery And Use Buttons That Move You From Picture To Picture And Backwards?

Apr 22, 2002

I want to make a picture gallery and use buttons that move you from picture to picture and backwards, but I don't want to tell button 1 to go to frame 2 and button 2 to got to frame 3 and so on (I hope you know what I mean)Can I use on button on a separate layer with the same action set? I tried something like that, but it didn't work:

on (release) {
thisframe =+1
}
[code]........

but it didn't work. I'm kind of new to any action script other than gotAndPlay, easy functions and all that.

View 2 Replies

Ranking Game That Captures User / Their Ranks / Date Into A Database

Jan 28, 2009

I'm using Flash CS3, AS2, PHP, mysql database with phpbb user registration. What I'm trying to do is a make a contest game where you have 5 different ladies and the users get to rank them in order from 1 to 5. Since it is a contest, users will need to be logged in. We already have a database of users based on phpbb, and a registration page. I need them to be able to log in using that username/pass and then they can play the game.

The game consists of a drag and drop mechanism (which I have) so the user can drag "#1" to "girl-4", drag "#2" to "girl-5" etc. Once they drag and drop all the boxes into the order they want, the user then submits it. The data I need to capture in the database is the User, date/time, their rank order (seperated so we can do a query to figure out how many they got right out of the 5.) The final twist is that we are going to have 9 total 'games', one each week for 9 weeks, and we only want users to be able to play once per week.

For an example you can see a working version here. That one does a bunch of more complicated stuff that I don't want to do. The programmer that did it is no longer here and it has been hard trying to decipher his code. I have the whole drag and drop mechanism using the old code from the above example. This is a snippit of the code. drag1_mc is the number they drag (there are 5, so drag1_mc, drag2_mc etc.) and drop1_mc is the rank location. (also 5, drop1_mc, drop2_mc, etc)

[Code]...

View 6 Replies

ActionScript 3.0 :: Make The Picture Aligned In The Page?

Mar 16, 2009

I made the this tutorialhttp:[url]....and align the movie clip instance to the stage.The problem is when I test the movie the picture is loaded like the movie clip instance is the top left "insertion point" so the picture is not centered. How can I fix this to make the picture aligned in the page?

View 11 Replies

ActionScript 3.0 :: Middle Of Picture In Center Of Page

Jan 18, 2011

If I find the the stage width and the stage height and divide each one by 2 then I know where the middle of my stage is. However, how can I use that point to be the middle of the image that I display on the pop up?

View 2 Replies

ActionScript 3.0 :: Flash Animating A Picture By Using A Script Need To Break The Picture?

Oct 2, 2011

I how that any Can help I have a Picture that I want To destroy it As someone break it as a glass and then something made it go back as she was

View 1 Replies

ActionScript 2.0 :: Picture Will Be Load Into Swf Files And With Turn Page Effect?

Apr 14, 2005

Maybe you know how do easy turn page. Picture will be load into swf files and with turn page effect they change when some time will pass (sorry for my english)

View 1 Replies

ActionScript 2.0 :: Webcam Move An Object?

Feb 19, 2009

I'm trying to do some experiments with my webcam, I would like to move an object with my hands, put it somewhere else, but I'm not getting.[URL]..Someone could give me some tips or teach me how?

View 2 Replies

Actionscript 3 :: Object & Shape Recognition From Webcam?

Aug 29, 2011

I need to create an application to get input from a webcam or camera connected to a computer and detect certain 3d objects.I could do this from a .3ds file or something else? I'm not quite sure.I am pretty sure it is possible with flash as3? I have been looking into openCV but i can't find any examples of this kind of thing.

View 2 Replies

ActionScript 2.0 :: Picture Will Be Load Into Swf Files And With Turn Page Effect They Change When Some Time Will Pass

Apr 14, 2005

how do easy turn page. Picture will be load into swf files and with turn page effect they change when some time will pass

View 1 Replies

Flash :: Recording Live From A Webcam / Recording From User's Webcam - PHP

May 23, 2011

I want my site's users to be able to record videos straight from their webcams into my site. Videowhisper is one such tool which seems to work fine - [URL] But I'm looking for opinions on better / more scalable / reliable solutions. Paid solutions are fine.

View 4 Replies

Scroll A Cursor Over An Object/picture/button?

May 18, 2009

i'm going to be workin on a simple website. i need to be able to scroll a cursor over an object/picure/button/whatever and have it change to what i desire when the cursor is over it. is there some simple code to do that or a tutorial to show me how?

View 3 Replies

ActionScript 1/2 :: Make A Some Object Or Picture Got To A Color?

Jun 30, 2010

i am VERY new at adobe flash an i am trying to get a layer or a symbol or something (im not sure what the objects in flash are called) to go to a given color does anyone know how to do this? im trying to track motion from a webcam feed with a person wereing a blue colored shirt.

View 14 Replies







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