Actionscript :: Passing Image Captured Using Flash To Asp.net Page

Mar 21, 2012

I am using ActionScript 3 to capture image via users webcam in one of my Asp.net Page. Here is the code i am using

package
{
import flash.display.Sprite;

[Code]....

Here the image is saved using file reference, which prompts the user to save. However i want that the image should be sent to asp.net page or server, so that i can get the image and save it to the database

View 1 Replies


Similar Posts:


Asp.net :: Sending Captured Image From Flash To Page

Mar 27, 2012

I am using Asp.net/C# in my application , I am using a .swf file which is placed on my Default.aspx page to capture images from webcam, I have a requirement that the captured image should be sent to server or aspx page without storing it on the clients machine,

View 1 Replies

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.0 :: Show Captured Image In MovieClip Without Saving Image First?

Jan 31, 2009

How can I show an image that I have just captured with the webcam?I am able to save that image using PHP but before I save it, I want to show a preview. How can I do this? Here is a snippet of the code that I think can be used to do this:

ActionScript Code:
foo = new BitmapData(640,480);
foo.draw(myvideoobject, scaleMatrix);

[code].......

View 3 Replies

Actionscript 3 :: Pan&Zoom Over A Captured Image With Cam?

Mar 26, 2012

I have an issue with zooming gesture in iOS over AIR. Here is the code (an excerpt):

package
{
import flash.display.DisplayObject;
import flash.display.Sprite;

[code]....

Where, the app, basically captures an image using the iphone's device and then should scales (zoom), but doesn't...

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

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 :: Passing A Value From Flash To Next Page?

Feb 27, 2007

i need to beable to click on a play/stop button in flash to play/stop music... and then when you go to another page in the site the flash needs to remember what the music control is set to... ie. because the page reloads (cant avoid this) it just restarts the music even if it was set to stop.the way i was originally thinking of doing it was to create a javascript variable in the page... then in the flash pass a boolean to the javascript variable when it is clicked (not sure how u do that)... then every link on the page would check what the javascript variable is ie. on or off. etc.

View 5 Replies

ActionScript 3.0 :: Passing Varibles From Php Page To Flash?

Mar 30, 2011

I checked out some of the posts in this forum, but i don't think they are quite what I am looking for.I have a database which stores a lot of user information.I need to gain access to this database and pull certain info from it and then load it into flash.I thought the easiest way to do this would be to load the variables/arrays and declare them in the php, the forward the variables into the .swf (on tht page)

View 2 Replies

Php :: Taking Data From Only One Print Function In A Php Page And Passing To Flash?

Aug 5, 2011

I'm trying to take a variable from a php page and send it to flash to then use in a link.I'm having problems just selecting ONE variable from the print function, the code will help explain:

PHP page

<?
print"fbook=facebook";
print"tweet=twitter-test";[code]....

It collects all the data fine but it does not print it out correctly, it prints out all the variables in the php in one link. For example: If i click the facebook icon, i will be taken to http:[url].... This also happens with the other icons (Youtube and Twitter).

View 2 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

Flash :: Eliminate The Difference Between Captured Bitmap Data And Filled FXG Paths?

Feb 13, 2012

I am trying to find a way to avoid using FXG in one of my applications but run into a problem where the captured bitmap is not exactly the same as the original filled FXG paths.Originally, let's say I have a 3 shapes that are adjacent to each other (you can imagine a pie chart with 3 slices). I used "cutImage" function below to capture the filled bitmap data and display the 3 pictures. However, we discovered that there is a 1 pixel gap on the side where each shape meets the other shapes. Not sure if there is any relationship, but the captured bitmap is exactly the same as displaying the filled path directly but with "cacheAsBitmap" set to true. If we just display the filled paths with cacheAsBitmap set to false, there are no gaps between the shapes

<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"

[code].......

View 1 Replies

Actionscript :: Calculate The Average Frequency Of An Audio Recording Captured As A ByteArray In Flash?

Nov 30, 2011

Keeping it simple for now but assuming i have a ByteArray full of sample data is it possible to calculate the average frequency (thus a pitch) from the entire recording? Is this along the right lines? p = 69 + 12 x log2(f/440hz) ...

View 1 Replies

ActionScript 1/2 :: Gallery Where Passing Over The Image A Rectangle Drops Down Showing The Caption For The Image

Jun 3, 2011

I have a gallery where passing over the image a rectangle drops down showing the caption for the image. The informations are read from an XML file and some of my images don't have a caption, for those emails I want to avoid the tween.

[Code]...

View 2 Replies

ActionScript 2.0 :: Passing HTML Form And Hidden Variables From Flash To Html Page

Dec 3, 2003

I have a html/flash site now, [URL]. i access email from my site itself by giving the userid and pwd text box which i copied from the actual website hosting my email access. i copied the entire <form...></form> tag to my page and thus was able to put the name and pwd in my home page only and access the email in a separate window. now i have redesigned my webpage using only flash. i would like to know how i can implement the same using flash. as i have not much experience using action scripting i am a bit stuck about how you pass the hidden form variables. the below is the the exact form syntax:

[Code]...

View 1 Replies

Server Side :: Have A Different Image Load On Home Page Everytime The Page Refreshes?

Jun 2, 2011

I want to have a different image load on my home page everytime the page refreshes or someone visits it. Is it possible to do it without using Flash?

View 2 Replies

Asp.net :: Passing Parameter From Page To Flex Application

Apr 22, 2010

I have an asp.net page where I get the user_id from who's logged in. Now I need to pass this user_id to a flex application that runs in an asp.net page as a .swf. How can I get this user_id in a variable in my flex application.Or what is the best way to get the user_id into flex.

View 2 Replies

ActionScript 3.0 :: Passing Variables Via POST To A New Page...

Jan 19, 2010

I need to open a new page from Flash, using navigateToURL(...)

I need to send a variable to this newly opened html page that does not appear within the url as a query string, so i'm using POST.

However each time I try it the variables appear within the query string... what am I doing wrong?


ActionScript Code:
var link:String = "test.html";

var urlVars:URLVariables = new URLVariables();
urlVars.username = "username";

var urlRequest:URLRequest = new URLRequest(link);
urlRequest.data = urlVars;
urlRequest.method = URLRequestMethod.POST;
urlRequest.contentType = "application/x-www-form-urlencoded";

navigateToURL(urlRequest, "_blank");

Cheers,

Matt / MSFX

View 2 Replies

ActionScript 3.0 :: Passing A Video Filename From One Page To Another Using PHP

Aug 23, 2011

I am building a page, like a table of contents (TOC) showing a list of videos the user can select from. It's written in PHP and populated by a MySQL database. There's a thumbnail and descriptive text which are linked to a new page with Strobe Media Playback. Videos will be delivered via RTMP stream from Flash Media Interactive Server 3.5.

What I want to do: Pass the filename of the video that was selected on the TOC page into the actionscript for the Strobe player on the player page. I have found a couple of posts here that related to similar issues, but I'm new to AS3 and was not certain if the other folks wanted to accomplish the same thing I do.

[Code]..

View 2 Replies

ActionScript 2.0 :: Passing Variable To ASP Page Using LoadVariables

Mar 2, 2006

here's another one about passing data to an asp page. I'm trying to pass a variable through a string to an asp page. I cannot understand why this is not working. Here is my code:

this.btn1.onRelease = function (){loadVariables("http://www.mywebsite.com/paragonstats/flashprogress.asp?pagename=introduction","POST");
}

If I paste my url in a browser, it triggers the asp page as it should. But this code is not working from flash. If I use getURL, it works, but it opens another browser window or redirects my movie. I'm just trying to track click through statistics. I've even set up a movie with just one button on the root with this code and it won't work.

View 1 Replies

IDE :: Load Swf By Passing Variable From HTML Page?

Sep 14, 2009

I have a main swf movie.....in which i want to load another swf by passing variable from html page

.
.
.
.
.
in flash 8 in as2

my code is that....

var topnavigation = _root.topnavigation; // Will load top navigation.swf
drop.loadMovie(topnavigation);

View 4 Replies

ActionScript 3.0 :: Passing Variables From SRC Parameter Of Page

Jun 3, 2010

I've been writing movies in AS2 that have variables passed to them via the src parameter of the page code, e.g.
src="/Flash/theMovie.swf?value=1"

Then in the AS I don't need to define 'val', I can use it straight away. However, in AS3 - at least, as I understand it - it seems that I can't drop 'val' into the code without defining it, as it throws ""1120: Access of undefined property val".

So, if I add a line of code
public var val:Number;
or somesuch, will this be enough to ensure 'val' is useable once it comes through from the page?

View 6 Replies

ActionScript 3.0 :: Passing Data In Multiple Page Survery

Nov 7, 2009

I am using labels for the pages so they are all on the same timeline. When the user gets to the last page there is a submit button that sends all the variables to a php mailform file. However I keep getting TypeError: Error #1009: Cannot access a property or method of a null object reference. I dont think my variables are not being passed.[code]

View 1 Replies

ActionScript 2.0 :: Flash8 Passing ID From Javascript Without Page Reload

May 21, 2010

I've made a XML based Mp3 player using Flash 8 and AS2. The player is working just fine, I mean playing song on previous and next button. Now I want to enlarge this and my idea is to list all the mp3s on a PhP page and allow user to listen to any song randomly. This means, user can click any song name and that song will start playing in the player.

My problem over here is; the song listing and the player will be on one single page and clicking on any song wont reload that page to play the selected song but just reload the content of the mp3 player.

I know this can be done in Javascript. My thought on this is:
On clicking each song name, I need to call a JS function and pass to it the "ID" of the song. This JS function needs to pass "that ID" to the swf which will play the song.

Keeping aside the complexity involve in ActionScript to fetch the song name as per the passed ID, I need to know how to pass this ID from JS to AS

View 1 Replies

Javascript :: ExternalInterface Passing Values From Swf To An IFrame On The Same Page?

Apr 12, 2011

On a page I have a an iFrame and a swf, I've been trying to use ExternalInterface to pass values from the swf to the iFrame, anyone ever tried this and had any luck? I won't be able to post any code until tomorrow, will update then if needed.Here is a visualization of what I need to accomplish, perhaps if it can't be done the way I said someone will have a suggestion of another way to accomplish this.

View 2 Replies

ActionScript 3.0 :: Passing A Variable To Swf File From .aspx Page

Jan 20, 2010

I am trying to pass a variable from my .aspx page into my published swf file. I am using the code below, and using swfobject to try to pass my variable. (I am very comfortable with swfobject and would prefer, if possible, to avoid using FlashVars.) The variable myVar represents the name of an image file, and will be a different image for each user on my site. I am using Flash CS4, and AS3. I only mention that because I was able to do this in CS3 using AS3, yet certain things have been deprecated in CS4 - hence my code does not work. And for what I'm doing and how I'm doing it I cannot use CS3 to create my swf file. Anyway, here is the code:

[Code]...

View 1 Replies

Flash5 :: Image Forces Flash Page To Left?

May 13, 2011

I purchased a Flash template and went into edit it in Macromedia Flash CS5.

I imported an image into the library and swapped the image with an image that was in the template I bought. The image I imported into the library is is a little longer and wider than the image I am replacing. Yet it still fits nicely on the page visually.

When I upload the SWF and HTML for the flash site that I just changed the image in, the flash site hugs the left side of the display screen and is not centered. Also the scroll bar on the right is no where to be found.

I then uploaded the original Flash SWf and HTML I bought without changing the image, the flashsite stays centered on the screen and there is a scroll bar on the right. So I decided to make another image the size of the one I was trying to replace in the flash template. I swapped the image out after bringing the new one into the library with import. Still the same problem.

The original template said pre-school and was trying to change to Inspire pre-school with a logo. A picture file that zooms in on the screen.

Here is the live examples.

Original Flash Template: [URL]

Modified Template with Inspire: [URL]

View 2 Replies

Professional :: Passing Input Text To Separate HTML Page?

Apr 1, 2010

I have a single text input box in a flash form that i would like to show up in a particular area on a separate html page.

View 3 Replies

Actionscript 3.0 :: Passing Variables From HTML Page To A SWF That Loads A CLASS?

Sep 15, 2009

So I'm wanting to create a DocumentClass that is willing to accept a variable for a path to an XML file, passed in from the HTML, like thisindex.HTML page would have this: mySWF.swf?xmlPath=xml/xmlFileName.xmlIn the FLA (SWF) I would have only a DocumentClass load a .AS file.In the .AS File I need to accept or read the paramater being passed in from the HTML page.

View 4 Replies







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