ActionScript 3.0 :: Record Mic Using SampleDataEvent Works Only On Some Computers?

May 30, 2010

I made a swf that records your mic and allows you to play it back.  I load the soundBytes into a float and play the float back.  It works fine on the computer I developed it on (in IE, Chrome and Firefox) .  It does not work on my second laptop.  And a few people in some forums have said it is not working either.

[Code]...

View 1 Replies


Similar Posts:


Flash :: Compiled SWF Works On The Dev Machine But Does Not On Other Computers

May 7, 2011

I have a videochat app (as3) developed in CS5, when I test the movie (ctrl+enter) it compiles and shows no errors, then I upload the file to the server and does not work at all. the xml paths are perfect, in fact when I go to the page on the machine with FLash CS5 it loads fine, but from a friend's computer does not work at all.

View 2 Replies

Flash :: IDE - File Works Locally But Not On Other Computers

Jul 16, 2009

I don't know if anyone else has had this problem, but I've created a flash project that works fine on my computer locally. When I take it to another computer(I've tried 3-4), my keyboard events are not working. I used Actionscript 3 to create the file. I've checked to see that the other computers had the latest version of Flash player, but it's still not working on those computers. Does anyone know why my file may not be working? Is there a specific plugin/download I need to have to make my files work?

View 1 Replies

ActionScript 3.0 :: Verify Error With SampleDataEvent In Browser

Dec 16, 2011

[AS3]
import flash.events.SampleDataEvent;
var data:SampleDataEvent = new SampleDataEvent(SampleDataEvent.SAMPLE_DATA);
[/AS3]

compile it with Flex 3.6 and run local works, then run in browser, works. compile it with Flex 4.5.1 and run local works, then run in browser, throws exception:

[Code]....

View 7 Replies

Flash - SampleDataEvent.data.writeFloat() - Why Call It Twice

Jun 3, 2010

Below is a snippet from the Adobe Live Docs SampleDataEvent class. It demonstrates how to create an audible sine wave by pushing samples into a ByteArray. The part that I am hung up on is why you need to push the same value into the writeFloat() method twice?

var mySound:Sound = new Sound();
function sineWaveGenerator(event:SampleDataEvent):void
{
for ( var c:int=0; c<8192; c++ ) {

[code]....

As a test, I removed one of the calls to writeFloat() and increased the buffer to 16384 samples ( twice the current ). This created an audible gap and click in the the audio, but didn't enlighten me much as to why.

View 1 Replies

Flex :: Flash - SampleDataEvent.SAMPLE_DATA Never Fires?

Jul 28, 2010

microphone.addEventListener(SampleDataEvent.SAMPLE_DATA, gotMicData); the event gotMicData is never fired.. however i tried using dispatchEvent but that will return null byteArray.. However similar code works fine in Flashcs5...

import flash.events.SampleDataEvent;
import flash.media.Microphone;
import flash.media.Sound;

[Code]....

View 2 Replies

Flash - Modify Sound In Real-time With SampleDataEvent For Audio Within NetStream?

Jan 27, 2011

I'm streaming audio using NetConnection and NetStream. I know that you can modify sample data in real-time with the Sound object, however I cannot find the SampleDataEvent for audio playing with the NetStream object. Is there a way to pass the audio from the NetStream object to a Sound object and modify the sound at that object instead?

View 2 Replies

Media Server :: Can't Continue To Record Stream With Record Mode "append"

Apr 11, 2012

I develop failover fms application with server-side action script. But i have a problem that FMS can't continue to record stream with record mode "append".
 
Environment: FMS 4.5.1 r484 on CentOS 5.5/6.0
 
Goals:

I have 2 same data streams in failover application and republish primary to livepkgr application.

I have to store of last 10 hours intact recorded video (DVR).
 
Failover app logic:

1. I create NetConnection and NetStream to livepackager;

2. When primary stream is connected it attach the primary stream to livePackager NetStream

3. If primary stream is disconnected it reattach the backup stream to livePackager NetStream
 
Problem: I have testing environment. It stop primary stream every 5 min, and started primary stream 5 min after stopping.
 
It work's, fine, but after a few hours testing LIVEPACKAGER falls. It can't record a stream, NetStream.Record.Start -> NetStream.Record.NoAccess -> NetStream.Record.Stop
 
Search a solution: I try to relaunch recording process and have no success. try to shutdown/start livepackager, it's same, try to restart server, same no success.
 
I cant stream.clear() or record with mode "record" cause it clears my dvr cache, I cant clean stream directory in livepackager application.

[Code]....

View 5 Replies

ActionScript 3.0 :: Movie Clip ROLL_OVER Only Works Once But MOUSE_OUT Works Infinitely

Apr 11, 2011

I have a movie clip (with instance name rectangle_mc) on the stage. Within this movie clip there are two separation animations on the timeline. The ROLL_OVER animation starts on frame "over" and the MOUSE_OUT animation starts on frame "off." If I roll over the movie clip, the initial animation plays, and when I mouse out the other animation plays to restore it to it's initial state. However, once the rollover animation has played once, it will not play again when I roll over it again, but for some reason the MOUSE_OUT plays every time.

[Code]...

View 1 Replies

ActionScript 2.0 :: Multiplayer Between Two Computers?

Oct 13, 2009

Is flash 2.0 able to access two computers at once? I was thinking of making a system that could work like a text instant messager and the ability to use a very primitive drawing system to send other people pictures. If anyone knows if it can be done could you point me in the direction to start?

View 1 Replies

ActionScript 2.0 :: Font Size Changes On Different Computers?

Aug 27, 2010

i just figured out that the flash on my resume website is messed up on a lot of computers! how embarrassing! im running windows 7 64 and it looks fine on the top 5 browsers here, but on some computers the font is large enough to split words in my menu bar and send half of the word to the next line! {URL]

View 1 Replies

[CS5] Font Not Working Correctly On Other Computers?

Oct 14, 2010

In my flash game the font i choose looks perfectly fine on my computer (being played from a website) but when i use a computer at school or my friends computer, all the font is ALWAYS times new roman.. this happens with every game i make..

I tried switching from tlf text to classic text.... but it didn't change at all.. can someone help please? I have been facing this problem for months now.

View 4 Replies

ActionScript 3.0 :: Flash Won't Play On Other Computers?

Mar 12, 2009

I'm not sure what I'm doing wrong. I am not very familiar with flash, in fact the only reason I used it was to add a player to my movie. I saved the skin and what I think is the movie file .swf on my desktop in the same file and it plays just fine. As soon as I try to play it on another computer the icon looks different (doesn't have the S on it anymore) and just looks like a foreign file. I am trying to get this to play asap if you could help to tell me if I'm missing a file that goes with it or something. When I hover over the two files they say Shockwave flash object.

View 1 Replies

ActionScript 3.0 :: Make A File In Two Different Computers?

Jul 7, 2009

i am trying to make an as3 file in two different computers. they both have cs3, and there are some things that 1. tell me flash is buggy, 2. dont know how reliable it is the script, if is gonna run different in each computer.
 
i am trying to do somethings with matrix transform. i want some sprite to react according to mouse moment, so basically, according to mouse position, there are some statements and the result is a transform on the sprite.
 
something like
 
in onenterframe (or the handler that was set as handler of enterframe) {
temp_matrix = sprite transform
new_matrix = new Matrix();

[code]....
 
var2.concat with something else, then i check the value of var1, would it have changed also?, if so, is there a way to copy a matrix (but not cell by cell)?

View 1 Replies

Swf-movie Cann't Show On All Computers

Jan 13, 2010

I've created three swf-files and added to a website.Two are created the same way (AS2), by adding a quicktime-movie and exporting as a swf.

On my computer (mac) and n a PC I can view both movies, but on two other computers (mac) only one of them show up. I've tried to download quicktime player but without results.

View 4 Replies

ActionScript 2.0 :: Controlling The Computers Files?

Feb 18, 2011

first off, this is going to be a desktop application, not intended for the web. Ok, with that said, I need to be able to copy a file from one place in their comptuer and paste it on their desktop.

View 1 Replies

ActionScript 3.0 :: Some Computers Cannot Show Some Of Flashes

May 24, 2011

I made 3 flashs with action script 3 for my website and I put them in different part of the same webpage then I test my webpage and it worked but when I test the same page in another computer 2 of my flashes worked and one of them did not worked

View 10 Replies

Professional :: Inconsistent Playback On Various Computers?

Apr 6, 2012

I created a Flash .exe that plays a couple FLV files, but in testing the files we've noticed some inconsistent playback on various computers and here's what we've found: On an Intel Zeon 3ghz quadcore 32bit Windows 7 machine, the playback is smooth and acceptable, using an average of 50% of all four cores during playback.

On a single core Windows XP PC, there is some playback hesitation using 100% of the single core during playback. On an Intel P4 3ghz with HT (dual core) 32bit Windows 7 machine, the playback is initially very choppy with continueing choppiness throughout to a somewhat lesser degree, using almost 100% of both cores continuously during playback.

We want to point this out because on PCs that are less than multi-core Intel Zeons, we would reasonably expect that the playback experience for the end user will be unsatisfactory. Is there anything that can be done about this to avoid this being a problem after the fact, as this client will be having many of these USBs manufactured.

View 1 Replies

Actionscript 3 :: Flash Won't Diplay With Other Computers?

Feb 8, 2011

I made a program using Flash Professional 10 and AS3, i published it. It all compiles and works fine on my coding computer. But when I try to view the program on other computers, via internet, or physically putting the files on the computer, it only displays as 5 dots counting up, over and over.

View 5 Replies

Actionscript 3 :: Sends Voice Between Two Computers?

Mar 10, 2012

I made an AIR application that sends voice between two computers, this is the code:

[Code]...

View 2 Replies

ActionScript 3.0 :: Flash Communication Between Computers?

Oct 14, 2008

I am trying to play flash video on one computer and get a flash program (on another computer) to know what content is being played, so it can respond appropriately with related content.Has anyone got ideas on the best way to achieve this?I have tried using socket connections through a Java server with a policy file request, but after receiving delivery of the policy file as text over the socket, Flash won't reconnect to talk to the server. I can't figure out how to enable policy file logging either.

View 1 Replies

ActionScript 2.0 :: Random With Older Computers?

Aug 19, 2009

I was testing out the new website I just created[URL]...and it works perfect on most machines, but one computer, which is about 4 years old? just appears as a huge pink screen in the middle of the grey background. The only thing pink on the website is a content swf I called default. I used this to determine the height of the stage, and it shouldn't fill the entire stage, and it doesn't explain where the header and side bar are.

The computer is up to scratch with flash and IE and firefox, I'm out of possible answers. But also, this website is for a business too, so how many other computers would react in this way, and would hence loose business - considering this computer is apparently what we use to talk to the customer with, and how can we show off the website to customers if it doesn't work

View 1 Replies

Website Looks Stretched On Library Computers

Apr 20, 2009

I have just posted my new website made with Flash. It looks good on my computer (Safari browser), it looks good on my friends computer(Internet Explorer).But today I went to the local library and my website looks stretched, including it's videos. It looks like when you play DV video on HD television. Here is the link:URL...is the fault on my part? Did I do something wrong? Or is it their settings what makes this "effect"?

View 2 Replies

ActionScript 3.0 :: Communicate Between 2 Flashplayers On Different Computers?

Nov 10, 2010

I'm building an interactive projection which is beamed on a wall (flash app on computer1). There will also be a computer on the same location where a user can enter data (flash app on computer2). When saved i want the input flash app to send the entered data to the projection flash app (alsmost) instandly. Btw, once a user saves the data it will be stored in MySQL before sending it to the projection app. So i think the projection app only needs to know what record it has to get.

Things i found which might be usefull:

- XMLSocket (only found examples for rather complex multiplayer games)
- Flash Media Server (can share objects but a rather expensive solution)

View 1 Replies

ActionScript 2.0 :: Elements Not Showing Up On Some Computers

Oct 23, 2006

url...The idea is that when you click on a subject area, it appears as though you zoom in on the map and then the information displays. Right now I only have content up in the contact and bio area, and it's just filler stuff.I sent it to her to get her initial feedback, and she's telling me that some things aren't displaying. Like the text in the bio section, or the photo in the bio section, and that things are generally 'screwy'.She's using a Mac OS 10.4, Safari 2.0. I got her to update her flash player, that didn't do it. I"ve never used a Mac so this is very foreign to me, and I'm entirely confused about it. Everyone else I"ve asked seems to not be having a problem at all, so I'm hoping maybe some of you find people could click the link and see if things seem to show up. Note that there is just placeholder stuff in the other areas for now.

View 4 Replies

IDE :: SWF File Changes Font On Other Computers After Upload?

Jun 20, 2009

I made an ad with Flash and published to a .swf file. When I uploaded to my website (used Dreamweaver CS4) it looks fine on my computer but on other computers the nice font I used is different, (plain fonts). Is there a better way to publish so the font is embedded into the file and not effected by the fonts on others computer?

View 6 Replies

ActionScript 3.0 :: Font Size Changes On Different Computers?

Aug 27, 2010

i just figured out that the flash on my resume website is messed up on a lot of computers! how embarrassing! im running windows 7 64 and it looks fine on the top 5 browsers here, but on some computers the font is large enough to split words in my menu bar and send half of the word to the next line! [URL]

View 1 Replies

ActionScript 3.0 :: FLVPlayback Skin Not Loading On Some Computers

Apr 29, 2009

A video should be loading to the second pane of this carousel[url]...
 
But, on some systems, the playback controls, and the video, are not loading. When working correctly, as the swf seems to do on some systems, the video is covered by a movie clip of the first frame, and then a play button is loaded atop the image. When a user clicks the play on the skin controls or the button that has been loaded on top of the video, the image and button are moved off the stage and the video plays.[code]...

View 1 Replies

Professional :: Title Font Appears Different On Different Computers

Feb 23, 2010

I have built a website in FLASH CS4 (version 10).  The website runs perfectly on my MAC core 8 but when I view it on either of my laptops (both are also Macs couple months old) the main title of the site + the on/off for the music appears in a completely different font and one word of the title disappears.I have tried turning the title to a button and to a movie and kept it as text and nothing makes a difference..

View 4 Replies

Professional :: Install CS4 Student Edition On Two Computers?

May 22, 2010

Can i install it on my old laptop and on the new one too?or do i have to uninstall it first?

View 1 Replies







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