Re: [Flashcoders] XML load pregress

2006-03-29 Thread Rodrigo Schramm

Thanks



Jim Berkey wrote:


This is probably what you are looking for:
Live Docs:
http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=1586.html 



- Original Message - From: Rodrigo Schramm 
[EMAIL PROTECTED]

To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Wednesday, March 29, 2006 5:10 PM
Subject: [Flashcoders] XML load pregress



Hello,

Is possible to put a load progress in a XML loader?
I want to load a xml file and display the progress of download.
But, the XML class don't have a onLoadProgress callback like 
MovieClipLoader.



Schramm
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com 



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com





___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] CSS with TextArea

2006-03-22 Thread Rodrigo Schramm

thanks

Jim Berkey wrote:


I use this with good success:
//init TextArea component
myText.html = true;
myText.wordWrap = true;
myText.multiline = true;
myText.label.condenseWhite=true;
/**/
//load css
myStyle = new TextField.StyleSheet();
myStyle.load(fla.css);
myText.styleSheet = myStyle;


- Original Message - From: [EMAIL PROTECTED]
To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com
Sent: Wednesday, March 22, 2006 9:43 AM
Subject: [Flashcoders] CSS with TextArea



Hi,

I want to apply a CCS on on text in a textArea.

I try:

textStyle= new TextField.StyleSheet();
textStyle.load(style.css);

textArea.setStyle(_style);
but, this don't work!

I want to set a textArea.
but, I get StyleSheet from TextField
I think this is the problem...

Somebody can help me?

Rodrigo Schramm
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com





___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] CSS with TextArea

2006-03-22 Thread Rodrigo Schramm

Ops...

_style = textStyle.


Karthik wrote:


textStyle= new TextField.StyleSheet();
textStyle.load(style.css);

textArea.setStyle(_style);
but, this don't work!
   



What is _style? You should be using textStyle. The docs have a working
example btw. You probably shouldn't be using reserved words
(regardless of case) for instance names. Typing everything won't be a
bad thing either :)

hth
-K
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com



 



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] CSS and Embedded fonts

2006-03-22 Thread Rodrigo Schramm

Can I use a embedded font with CSS???

var styles:Object = new TextField.StyleSheet();
  
formulario.embedFonts = true;   
styles.setStyle(text,

   {
  fontFamily: 'MyFont',
  fontSize: '24px',
  color: '#006600'}
   );

 textArea.styleSheet = styles;
 textArea.html = true;
 textArea.text = textthis is a test/text;

PS.   I created a new Font Symbol  with linkage = MyFont.


but this don't work...



___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com