Re: [Flashcoders] Combobox embed fonts PC/Mac problem

2007-01-24 Thread Chip Moeser
Still no go. But thanks. Just going to build our own combo box now. Delfi Ramirez wrote: Try ordinary marks. I mean not () but (') Delfí Ramírez i Ruiz http://segonquart.blogspot.com ___ Copy addresses and emails

[Flashcoders] Combobox embed fonts PC/Mac problem

2007-01-23 Thread Chip Moeser
We are having an cross platform issue when trying to embed fonts using the combobox and set style. When we publish on a mac with: myCombobox.setStyle(embedFonts, true); the fonts show up embedded on a mac but not a pc. When we publish with (minus quotes around true):

Re: [Flashcoders] Combobox embed fonts PC/Mac problem

2007-01-23 Thread Chip Moeser
Thanks but no go:( Brandon Barkley wrote: You might try: myComboBox.embedFonts = true; Chip Moeser wrote: We are having an cross platform issue when trying to embed fonts using the combobox and set style. When we publish on a mac with: myCombobox.setStyle(embedFonts, true); the fonts show

Re: [Flashcoders] Combobox embed fonts PC/Mac problem

2007-01-23 Thread Chip Moeser
] On Behalf Of Chip Moeser Sent: Tuesday, January 23, 2007 12:51 PM To: Flashcoders mailing list Subject: [Flashcoders] Combobox embed fonts PC/Mac problem We are having an cross platform issue when trying to embed fonts using the combobox and set style. When we publish on a mac

Re: [Flashcoders] Combobox embed fonts PC/Mac problem

2007-01-23 Thread Chip Moeser
. somewhere on the stage create a dynamic text field, set to the font you want. embed the glyphs you want, and use that font for the combobox. On 1/23/07, Chip Moeser [EMAIL PROTECTED] wrote: Keith, Thanks, but this didn't work. Since we will always be doing our final compile on a mac and embedding takes

[Flashcoders] XPath

2006-10-19 Thread Chip Moeser
Does anyone know where I can samples using these (http:// www.xfactorstudio.com/) xpath classes? Thanks! -Chip ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] RE: LoadVars to XML object

2006-10-18 Thread Chip Moeser
-Original Message- Date: Tue, 17 Oct 2006 12:16:51 -0400 From: Chip Moeser [EMAIL PROTECTED] Subject: [Flashcoders] LoadVars to XML object Hello All, I am trying to convert the return string of a loadvars to an XML object. Does anyone know a simple way of doing this? Thanks

[Flashcoders] LoadVars to XML object

2006-10-17 Thread Chip Moeser
Hello All, I am trying to convert the return string of a loadvars to an XML object. Does anyone know a simple way of doing this? Thanks! ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] LoadVars to XML object

2006-10-17 Thread Chip Moeser
Thanks! On Oct 17, 2006, at 12:26 PM, Cedric Muller wrote: var xml:XML = new XML(); xml.ignoreWhite = true; xml.onLoad = function () { trace(this); } var lv:LoadVars = new LoadVars(); lv.sendParam1 = bla; lv.sendParam2 = blo; lv.sendAndLoad(url, xml, POST); hth, cedric Hello All, I

Re: [Flashcoders] LoadVars to XML object

2006-10-17 Thread Chip Moeser
Is there a way to do this without specifying a URL in sendAndLoad? or without actaully sending it out anywhere? I have a php page which in an initial load vars sendAndLoad is sending back xml. SInce Flash see's it as a string I just want to convert it to an xml object without sending it

Re: [Flashcoders] LoadVars to XML object

2006-10-17 Thread Chip Moeser
// var newXML:XML = new XML(src); } HTH Alain -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chip Moeser Sent: 17 octobre 2006 12:41 To: Flashcoders mailing list Subject: Re: [Flashcoders] LoadVars to XML object Is there a way to do this without