views:

52

answers:

5

I want some text to be displayed(visible for web browser), so it's not trace..

I'm new to this language,what's the easiest solution?

+1  A: 

The easiest and probably most user friendly would to call the Javascript alert with actionscripts external interface

**AS3:**
ExternalInterface.call("test();");

**Javascript:**
function test() { alert('hello world'); }

UPDATE: Actually come to think of it you might be able to just do

ExternalInterface.call("alert('Hello World');");

If you are using Flex builder you can use mx.controls.Alert http://livedocs.adobe.com/flex/3/langref/mx/controls/Alert.html if not then I'm afraid you will probably have to roll your own.

Matti
Is there a pure flash solution?
ieplugin
My app is to be deployed at flash enabled mobile phones,where javascript is not available...
ieplugin
yes, this is a good way to go, if JS is an option. However it can cause some serious crashes and flash player is completely halted until the alert is clicked away.
back2dos
@ieplugin: in that case you'd want to use either mx.controls.Alert or xxiaojun's solution. why would you want to use flash for a mobile phone app though - is HTML5 out of the question?
Matti
+3  A: 
import flash.text.TextField;

var label:TextField = new TextField();
label.text = "Hello World";
addChild(label);
xxiaojun
+1 clever solution : )
OXMO456
+1 why do simple when one can do complicated, that's as pure flash as it gets. nice one :)
PatrickS
A: 

Your best bet is just to create a sprite or MovieClip that holds whatever content you want popping up. Add it to the top of the display list and set visible=false. Then when you want to show it, just say mySprite.visible = true.

There are other ways to handle this, and you can get pretty fancy with what exactly goes into your sprite - but generally speaking, this should handle it. If you want to prevent people from clicking behind it, put a big rectangle the size of your app as the bottom layer in your sprite, and set the alpha to 0. That'll intercept clicks and keep them from drilling down.

Hope that helps.

Myk
A: 

Look at the Alert control:

http://livedocs.adobe.com/flex/3/html/help.html?content=controls_19.html

Javid Jamae
A: 

Or you can use the sepiroth firefox extension who permit to see the flash trace directly in firefox. http://www.sephiroth.it/weblog/archives/2006/10/flashtracer_firefox_extensionphp.php

To use it, you need to download the Windows Flash Player 10 Plugin content debugger http://www.adobe.com/support/flashplayer/downloads.html

Enjoy :)

eka808