Professional :: Flex Applet In Flash Application, No Sound?

Sep 2, 2010

I have flex applet which captures microphone and plays back remote contact's voice. This application is running fine in browser or in standalone pages, but when this application is loaded in a flash application, no sound nor microphone capture. I have logs in this application, network invocations are working fine with my remote rtmp server application.
 
I remember I had an issue with allowScriptAccess which needed to be set to always instead of sameDomain on the web page where the main flash application was loaded, but here, this parameter seems to be set.

View 2 Replies


Similar Posts:


Flex :: Actionscript - Wrap A Java Applet Around A Flex Application?

Oct 20, 2009

I'm just learning about Flex and I'm loving it. Unfortunatly I still have to make the decision on which RIA technology to use and its dependent on, among other things, from the following case: How can we wrap a java applet around a Flex application? More specifically, I would like to wrap/integrate NASA's World Wind applet in a Flex panel, similar to what Adrew Trice did with the Google Earth API.

An alternative would be id Flex would support direct access to the 3D hardware through OpenGL or DirectX. But I do not think that that is the case yet, not even through AIR.

View 2 Replies

Performance - Simple Flash Test Application Runs Very Slowly Compared To Exact Same Processing Applet?

Mar 3, 2011

I get a working application in Flash made that lets the user click to create blocks which subsequently gravitate towards the mouse. I made the exact same thing in Processing too, just to compare speeds.However, when I run the Flash version and add around 15-20 blocks, the framerate drops to 5-10 FPS.In the Processing version I can add ~60 with no noticeable slowdown. What's the deal, Flash?

Links to each version's source:

Flash version
Processing version

Here is the source for each in case you are a wizard and can help just by glowering at the code sternly and telling it to behave:

Flash version:

blocks.fla
import flash.events.Event;
import flash.display.MovieClip;

[code]....

View 1 Replies

Professional :: Relative Size Of Flash Applet In A Webpage?

Mar 9, 2010

I tried to set the .swf width to a percentage value but no matter what I use for the height, I get ugly whitespace above and under the applet.
 
Video demo: [URL]
 
Is there a way to get away with the unnecessary vertical margins?
 
The webpage is [URL]

View 6 Replies

Actionscript :: Flex Controlling Application Sound?

Aug 16, 2010

I have a flex application in which multiple sound files are used in various parts of the application. Can i have a single sound handler, which will take care of volume control fo the entire application at once. How can i do that

View 2 Replies

Actionscript 3 :: Deployed Flex Applet Not Processing Web Service Results

Nov 20, 2010

When I test my deployed app in a browser the popup window continues to be displayed even after it should be closed. Everything works as expected when debugged in Flash Builder 4.

Following is currently what's happening: the request is sent to my restful web service, which processes the request, (seemingly) the ResultEvent is called which in turn dispatches the profileEvt dynamic event that changes the view state. However, the popup window does not get closed and the applet gets 'stuck.'

Below are the flex applet web service event listeners/handlers:

webService.addEventListener(ResultEvent.RESULT, function(event:ResultEvent):void
{
var rawData:String = String(event.result);
var profileEvt:DynamicEvent = new DynamicEvent("profileSaved", true);

[Code].....

View 1 Replies

ActionScript 3.0 :: Create IPad Application But Flash Professional Cs5 Only Allow To Make Iphone Application

Nov 9, 2011

I am using Flash profassional cs5 and want to create an iPad application but it only allow to make iphone application. It allows to install on iPad but the resolution is very small.

View 1 Replies

Flash :: Embed Applet In It?

Apr 9, 2007

Possible to embed a java applet into Flash?

View 1 Replies

ActionScript 3.0 :: Insert A Applet Into Flash CS4?

Jan 31, 2010

Is it possible to insert a Java Applet into Flash CS4 (ActionScript 3.0)

View 1 Replies

Java :: Flash Whiteboard Web Applet?

Nov 5, 2009

I want to put a whiteboard on my website so users can draw something and then save the image to the server containing the drawing. Are you aware of any open source/free already made whiteboard application out there ? I also need the save image function.

View 2 Replies

Flash :: Do A Audio Video With Java Applet?

Dec 16, 2010

This is the code i wrote in J2SE with Native java wrapper for Gstreamer. But alas it does not work in Web Browser, i am very upset what i can do now, i have no alternative to end this project. IS it impossible to use audio/video with Java Applet for Gstreamer or To build a CD/DVD quality audio ? (this is not targeted for world wide web, only web browsers between peer to peer or peer to 10 peer). ex: working sample as j2SE but same code does not ever work with java applet from browser.

[Code]...

Note: Follow up: In any web browser this native way works, when you have java. So JAVA applet works in any browser. Those who are like me, faced this problem, do not get confused.

View 3 Replies

ActionScript 2.0 :: JavaScript - Remove Flash Applet When Done Playing?

Mar 29, 2004

Is there anyway to remove a section of HTML with a javascript? Ive seen ones that replace text segments, and remove certain tags like <br>. I want it to remove the flash applet once its done playing. I know that its possible, I just need someone that knows javascript better than me.

View 3 Replies

Java :: Voice Recording Applet / Flash In Web Browser

Mar 21, 2011

I'm going to do a voice recording plugin/addon on a website that will record audio and send it to the server for further processing. I have had two suggestions; either write a java applet or use flash. The service is supposed to work for all major browsers(IE, Firefox, chrome,..). I'm new to this area of development and is looking for tips on how to proceed with this. What is the pro's and con's for each solution?

For java applet, what Java speech API library do you recommend? I want a simple, small library, I only need voice input. Also, I am puzzled by Flash development, I can't find any good information about development, the adobe website dosn't make much sense. What is the programming language for flash, and how do you actually run it in html code? I have found ActionScript 3, is that used to create Flash plugins and can it perform voice recording?

View 2 Replies

Javascript :: Simulate A Fake MouseOver On A Flash Applet In A Webpage?

Mar 9, 2010

I listen to internet radio at [URL] and it works pretty well, except for one minor issue. The Flash applet that runs the radio player has a timer on it, where if you don't move the mouse over the player every once in a while, it decides you're idle and shuts off the stream, even if you're not actually idle, but just working on something else with the radio player running in the background.

Is there any way I can send a fake MouseOver message to this applet to keep it from cutting me off in the middle of a song, maybe with a GreaseMonkey script? I'm using Firefox.

View 1 Replies

Flash :: Javascript - How Does A Browser Interact With A Player Or A Java Applet

Nov 9, 2010

I've been trying to understand how flash animations or a Java Applet work within a browser. I can think of a couple of ways - The Flash Player/Java Applet are machine code that's dynamically linked it, and given some parameters about the area of the screen that belongs to them; after that, they run within the same process space. The browser exposes an API that the player/applet use to talk to it and they live in a separate process. (Presumably they talk via sockets?) The API could correspond to openGL/X11/some custom calls.

These possibilities still don't explain things like how a button click can make the player full-screen, how it can play music, how it can inspect the DOM, etc. For that matter, is the video displayed by decoding to a sequence of images, and rendering them one at a time, or is there a more efficient way, e.g., of pushing the deltas in the image? The Wikipedia page on Java Applets

(1) talks about how the applet is run in a sandbox (presumably a separate process), but it doesn't say how the browser and the applet communicate. Perhaps the answer depends on the underlying platform?

View 2 Replies

ActionScript 1/2 :: Make A Flash Application Which Will Record The Sound Or Else Just Grabs The Voice Input And Plays It?

Oct 1, 2007

i want to make a flash application which will record the sound Or else just grabs the voice input and plays it..!

View 7 Replies

Professional :: Adobe Flex Application Scale To Fit The Users Screen?

Jul 3, 2010

I have been looking on google and couldn't find a answer. I have a application I created in adobe flex and I need it to scale to the users screen and fill the entire browser window no matter what.

View 1 Replies

Flex :: BlazeDS Trading Application - Create A Professional Looking Website?

Oct 11, 2010

I am a Flex/Java developer, in the process of creating a Financial/Trading website for a start-up company.The default look and feel of Flex (out of the box) is pretty plain and bland (in terms of the default styles). Can anybody recommend the easiest way for me (as a developer) to make the website look as polished and professional as possible?

What is am looking for is:

A professional style/theme to the website Use of polished images/icons Use of some Flash components for the intro/welcome page. The quickest way to get this styling/images/icons done - should I outsource this to an on-line company?I have been looking at Flash Catalyst as an option but images need to be created first in Photoshop (which as a product I do not know).

View 3 Replies

Professional :: Use Mx Components Code In Both Halo Application And Spark Application?

Mar 18, 2011

I am not able to use fillColor and corner radius in spark. I want to use the mx components(halo) properties both in halo and spark application. Can any one of you help me in using fillColor and Corner radius in both flex 3.0 and Flash 4.0

View 1 Replies

Professional :: When Upload The Package To The App Store,application Loader Popup Message: "Application Failed Codesign Verification?

Jun 8, 2011

when i use flash cs5 publish the app for ios,It works fine.But when i upload the package to the app store,application loader popup message: "Application failed codesign verification.The signature was invalid,or it was not signed with an Apple submission certificate."I create the certificate file from mac.

View 3 Replies

Professional :: Loading With Sound Only Played Once But Keeping Hover Over Menu Item Sound Intack?

May 21, 2010

I have a flash header that was never completed because the guy I hired took people's money and ran. So now I even wonder if what he said could work with my flash header is true or not. But, usually there is always a way to make it work.I have a flash header that does two important things: 1) Upon entering the site, it loads and plays an audio track 2) Makes an animal noise when you hover over each animal menu item. (not sure if I'm able to give a link to it or not on here. If I able to and someone would like to see it let me know)I want to know if my flash header can support the following addionalunctionality/changes:1) Currently, it loads everytime a page is selected.  I only want it to load the one time of entering the site because the audio gets annoying.  Set a cookie maybe?2) But, I do not want to turn the audio off completely because I still want the hover over each menu item sound.

3) Have a link on it to allow them to select to turn on / off the sound completely. It currently has that, but only for the current page. Once you select another page, the audio is back to on.4) Lastlly, is there a way for it to detect that someone doesn't support flash and to display an html version of it? And can flash create a html version from my fla file?I don't know much about flash (but am learning) so I'm not sure if I'll be able to do this myself. However, I want to find out if my flash header will even work this way before I invest the time learning it just for these changes. I know it will be pretty deep with script code, but I'm hoping I could find base code already available for these features.

View 2 Replies

Flash :: Professional - Can Be Used As The GUI For An Application

Feb 25, 2010

Can Flash be used as the GUI for an application (desktop software, not web based) written for the .NET framework? I want to author an application that would be perfect for flash as a the GUI, but it would need to be able to support a pretty full API for Flash and the wrapper application, written in c#, as they would be passing a lot of data between eachother, as well as getting and sending data over the web. So, can Flash be used in .NET? What kind of API does it have? Or am I stuck with the Windows look/feek

View 1 Replies

Java :: Any Opensource Alternative To Squish To Test Flash / Silverlight / Java Applet Gui Objects?

Jun 3, 2011

If one doesn't have the source code, the only to test is to send keystroke and mouse move so I found this product but it's not free and opensource price is not even known :([URL] Squish supports automating interactions and testing non-HTML/DOM elements, that is, native objects, which are embedded in a web page. This is done at a fairly abstract level, which means that mouse and text input can be recorded and replayed.

In addition it is possible to inspect embedded native objects with the Spy tool and to insert verifications for these native objects. All of a native object's public properties can be accessed in test scripts.

View 2 Replies

Professional :: Sound Free Sound Effects Links?

Jul 29, 2011

Ive stumbled upon a few sites that have free sound FX's but the ones I want which I wuld think are the easiest to get I cant find.I want a sound for when someone clicks the right thing, like a under a sec tiriring or something like when you kill a guy in Leauge of Legends or something like that and also one for when you click the wrong thing like an windows warning ut a little different, yet all the sites and SFX I come across are for everything but those.

View 5 Replies

Professional :: Disable The Application Bar In Flash 11?

May 4, 2010

How can I turn off viewing the Application Bar and associated window it is attached to without quitting Flash in Flash 11?

View 4 Replies

Flash :: Professional Won't Work Outside The Application

Jul 16, 2011

i have created my first flash file at home and i have published it and imported it into dreamweaver, i try to preview it into a browesr and i get the error massage Adobe® Flash® Player has stopped a potentially unsafe operation. The following local application on your computer or network: /Users/greenjacket1985/Desktop/Cerberus Web Design/Scripts/expressInstall.swf

is trying to communicate with this Internet-enabled location: [URL] To let this application communicate with the Internet, click Settings. You must restart this application after changing your settings. now i ave tried everything, every button in the settings.

View 3 Replies

Flex :: Adobe AIR Application To Receive Back Events From Native Windows Application?

Oct 8, 2010

I'm trying to develop a simple mxml Flex application to start Skype from the AIR/Flashplayer runtime. Is it possible to get back events from a native Windows application? In the simple example of Skype, the OS returns control to the Flex app when Skype exits. But what about native applications which have their own event model and wants to communicate with the Flex event model. For example, a Face detection system which shows "Hello" on a Flex app when the camera detects a face. Can this be done in the current Flex framework?

View 1 Replies

Actionscript 3 :: Resizing Container On Resize Of Application Window In Adobe Flex/AIR Application?

Mar 4, 2011

I am working on an Adobe AIR Application. The size on Application window is 800X600 and is contains border container and border container contains many controls. What I want is to if user re-sizes the application then that container should also be re-sized according to scale. i.e If user maximizes or minimizes the window then that border container should also be maximized or minimized respectively.

View 3 Replies

Flex :: Come Back In Main Application On Click Of Logout Button Which Is In Application's Component?

Aug 4, 2011

How I will be back in Login Page after click of logout which is in application's component.

Project.mxml

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" width="100%" height="100%"

[Code]....

View 2 Replies

Flex :: Delete Application Storage Directory Instance / Data When Uninstalling Any Air Application?

Dec 22, 2011

how can i delete storage directory instances or folder while uninstalling any air application. In my application when i first time run my application, application copy some data from application directory to application storage directory. now i want to delete all data and application directory folder also while uninstalling application.

I am doing that because when i launch any update then application is accessing old data which conflict with my application new features.

View 1 Replies







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