[flexcoders] Re: overriding Button's style sheet

2006-09-28 Thread JClouz
Hey Jester, So I came across your blog entry at http://www.jessewarden.com/archives/2006/07/flex_chronicles_22.html about buttons being defaulted to Bold and how that messes up embedded fonts and I'm having that exact problem. Thanks so much for bloggin about it, but I'm not sure where I

[flexcoders] Background transparancy

2006-09-28 Thread dj
How do you set the background alpha of an application to 0, possible? Thanks, Patrick -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your

[flexcoders] Re: As you type Grid Filtering with Textinput and Combobox

2006-09-28 Thread qnotemedia
Crazy - already got this to work. Code follows below. Its ugly, but it works. New question - how do I add a second combobox? private function processFilter(item:Object):Boolean { var result:Boolean=false; if(item.objName.length == 0 || item.objName.toUpperCase

[flexcoders] Flex Coders Required

2006-09-28 Thread Pramod
Hey All, Interested! Send me your latest CV. We need two flex and flash experts. The location for work will be in Bangalore. Send me your resume at [EMAIL PROTECTED] I will respond with the rest of the details. Thanks and regards, Pramod -- Flexcoders Mailing List FAQ:

[flexcoders] Cairngorm Assets - Flex Printing - Flash Client DB

2006-09-28 Thread azhofeling
Using Cairngorm design patterns I have not found how an application's assets,such asbutton icons, are to be referenced. My solution has been to declare them in the ModelLocator as follows: [Embed(source="assets/excel.gif")] public var icon_excel:Class; Then reference them in the component files

[flexcoders] Proper use of context-root?

2006-09-28 Thread Odysseus Levy
On my development machine using Flex Builder, I use a test server to serve up simple xml files that I pull in with the HttpService in my flex app. So a url might look like: http://test-machine/xml/my_data However, when we go to deploy, all of the needed servlets are accessed using relative

[flexcoders] Resize Panel automatically?

2006-09-28 Thread zzwi89
I have put a tabbar and a viewstack inside of a panel. My goal is to have the panel resize based on the current state of the viewstack so it is just big enough to encompass it and the tabbar. Here is a simple example which illustrates my problem: ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Re: Does anyone have a Flex 2 Cairngorm example for a master/detail view/edit/de

2006-09-28 Thread Michael Ritchie
Ok, I created a fully working master/detail example with Cairngorm and CFC. Thanks to TH for his suggestion earlier. You can find the full working example and source code here: http://thanksmister.com/cairngormcontacts/main.html Its not pretty, but it was made in just one afternoon, thanks to

[flexcoders] list selectedItem question

2006-09-28 Thread g_vaccarezza
Hi guys: I got this XML: data speciality spec number = 1 label = Especialidad 1/ spec number = 2 label = Especialidad 2/ spec number = 3 label = Especialidad 3/ spec number = 4 label = Especialidad 4/ spec

[flexcoders] Re: Conversion from Array to XML

2006-09-28 Thread wayne_badu_johnson
Hi I use the following: // in your mxml var myObject:ObjectProxy = new ObjectProxy(); myObject.f1 =1; myObject.f2 =2; myObject.f3 =3; trace(CustomXMLUtil.as2xml(myObject, myobject)); // CustomXMLUtil.as package { import flash.xml.XMLDocument; import flash.xml.XMLNode;

[flexcoders] Re: [Flex 2] Strange behaviour when using RSLs

2006-09-28 Thread Mike Morearty
I don't think this is necessary. I gave a pointer to how to recompile it because someone asked, but it is deliberate that we only ship a single swc: as I said, when you link that swc into your project, it strips out all the debug information. There is no performance or size hit on your swf.

Re: [flexcoders] Conversion from Array to XML

2006-09-28 Thread DUANE NICKULL
Is what you are doing truly an array?  It actually seems like a collection of variables with names that are sequentially incremented.  A true array would use one variable to point at the array then reference each value in an iterative loop.example:var foo = new Array();foo[0] = "bar";foo[1] =

<    1   2