Re: [Junk E-Mail - LOW] Re: [Junk E-Mail - LOW] Re: [Junk E-Mail - MED] Re: [flexcoders] dataGrid drop-in itemRenderer/Editor

2006-07-15 Thread Jeremy Lu
this is the snippet from my code library: package { import mx.containers.HBox; import mx.controls.CheckBox; public class CheckBox2 extends HBox{ public function CheckBox2(){ this.setStyle(horizontalAlign, center); } var c:mx.controls.CheckBox; override protected

Re: [flexcoders] dataGrid drop-in itemRenderer/Editor

2006-07-15 Thread Tim Hoff
Nice and simple. Props. -TH --- In flexcoders@yahoogroups.com, Jeremy Lu [EMAIL PROTECTED] wrote: this is the snippet from my code library: package { import mx.containers.HBox; import mx.controls.CheckBox; public class CheckBox2 extends HBox{ public function

[flexcoders] Setting a value in a component from a actionScript file

2006-07-15 Thread flxcoder
Say I have these 2 files as/script.as and view/list.mxml. list.mxml has a datagrid with id=dg. Is it possible to set dg.dataProvider from script.as? How can I do that? Thanks. Yahoo! Groups Sponsor ~-- Great things are happening at Yahoo!

[flexcoders] Re: How to parse web services response doc containing namespace

2006-07-15 Thread kevntrace
Thanks Derek. I did read in the docs about declaring a namespace variable - indeed if you look at the code I posted, you will see I did exactly that with a variable named csw. I also tried referencing the namespace in different ways - using the variable, using wildcards etc. I still got

[flexcoders] help please

2006-07-15 Thread uday kiran
I hava a problem I have diffrent photos with same height but diffrent width, two set of photo width's, one photoset width is 3 time the other set. they are jumbled. Now the problem is when I get small photos i should display three of them in a row when I get Bigger on I should display the

Re: [flexcoders] crossdomain.xml on Weblogic

2006-07-15 Thread Emmanuel Okyere
by default the swf will look for a crossdomain.xml file in the root; however you are free to place any valid policy file anywhere, and load the resource in with Security.loadPolicyFile() take a look at:

Re: [flexcoders] Re: can I use older ver of CF with Flex 2

2006-07-15 Thread Clint Tredway
I am moving this project from using PHP/Flex and want to use remoting with CF... I was going to use CrystalTech as I have sites with them already but they cannot give mea time frame of when they will be applying the 7.02 updater..On 7/14/06, dcooper2025 [EMAIL PROTECTED] wrote:

RE: [flexcoders] Dashboard Sample: problems

2006-07-15 Thread Matt Chotin
I get the same scenario as Paul, dashboard is fine for me but Jesses app on Firefox failed. Also loading Jesses SWF directly using the standalone player works. But when I viewed source in IE some of the data didnt come through there either. I took Jesses source and downloaded it to run

Re: [flexcoders] OT: average cost for an SDK?

2006-07-15 Thread Paul Andrews
- Original Message - From: Dan Thatcher To: flexcoders@yahoogroups.com Sent: Friday, July 14, 2006 10:39 PM Subject: [flexcoders] OT: average cost for an SDK? Ok, so this is an OT question, but I thought that the experienced participants in this

Re: [flexcoders] Re: can I use older ver of CF with Flex 2

2006-07-15 Thread Paul Hastings
dcooper2025 wrote: I'm on HostMySite (my blog) and they're upgrading servers this coming week now that they've put 7.0.2 through it's paces in their testing ouch. i was under the impression that it would another month or so before they rolled out 7.02. geez, i've just wasted several days

[flexcoders] making a buttons initial state only include the contents.

2006-07-15 Thread hank williams
I want to create a standard flex button, but where the initial state of the button only shows the text of the button. When you roll over the button, all of the rest of the flex buttonstuff would appear. So in the on rolled over text, the button would just look like plain text. I know I could

[flexcoders] Re: making a buttons initial state only include the contents.

2006-07-15 Thread Tim Hoff
Hi Hank, There's a good example how to make a class out of the embeded up. over and down states of a button. If you use a LinkButton you would only have to skin over and down. The default state is just text. -TH --- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote: I

[flexcoders] Re: Repeater ignores recycleChildren. on my image extendsion!!

2006-07-15 Thread maikelsibbald
Noboby got this problem?? --- In flexcoders@yahoogroups.com, maikelsibbald [EMAIL PROTECTED] wrote: If I have a trace in the constructor of my Component (extends Image). I see my traces, even when I use the recyclechildren (=true) property in the Repeater that creates the images... how

RE: [Junk E-Mail - MED] Re: [flexcoders] Re: can I use older ver of CF with Flex 2

2006-07-15 Thread Shannon Hicks
I got a timeframe out of Crystaltech... they told me it would take3-4 weeks at the earliest. Then, they'd start upgrading servers, and there was no guarantee where my servers would be in "line" to be upgraded, and they couldn't tell me how long the upgrade process would take. I even asked

[flexcoders] Re: can I use older ver of CF with Flex 2

2006-07-15 Thread dcooper2025
Yeah, here's the email from HostMySite: Time to get some Flex 2 apps on my site... == Dear Damon, On Tuesday and Wednesday July 18-19, 2006 we will install all of the security updates currently available for the server where your website(s) and/or database(s) reside,

Re: [Junk E-Mail - MED] Re: [flexcoders] Re: can I use older ver of CF with Flex 2

2006-07-15 Thread Clint Tredway
After Damons pos, i suggested to the powers that be, that we move to HostMySite instead.. After what you (Shannon) said, I will push for it even more.On 7/15/06, Shannon Hicks [EMAIL PROTECTED] wrote: I got a timeframe out of Crystaltech... they told me it

[flexcoders] Re: making a buttons initial state only include the contents.

2006-07-15 Thread Tim Hoff
Yeah, I meant to say in the help docs: mx:Style .myCustomButton { overIcon:Embed(overIconImage.gif); upIcon:Embed(source=upIconImage.gif); downIcon:Embed(source=downIconImage.gif); } /mx:Style For the up state, use your favorite image program and create an

[flexcoders] Re: ACcess SOAP fault code

2006-07-15 Thread ting_first
Does somebody know how to swap HTTP error code (from 500 to 200) in JBoss/Tomcat? Thanks in advance Ting Yahoo! Groups Sponsor ~-- Great things are happening at Yahoo! Groups. See the new email design.

Re: [flexcoders] Re: making a buttons initial state only include the contents.

2006-07-15 Thread JesterXL
If you do: Button { } Instead of .myCustomButton, you'll only have to do it one, since I know you didn't want to do a lot of styling, Hank. This'll ensure that you'll only have to put those 5 lines of code in your index.css, and your whole app's buttons will be affected. - Original

RE: [flexcoders] Re: ACcess SOAP fault code

2006-07-15 Thread Carson Hager
The easiest way to do this is to create a simple filter and change the status only when the requester is the Flash Player. Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGYMobile:

[flexcoders] how to know when a remote calll is necessary

2006-07-15 Thread Andrea Varga
Hi, Let's say I have many view-s that need to display the same data retrieved from the server ( it doesn't metter how, XML, Remoting, WebService, etc.). Using Cairngorm. When the proper command is executing (one that changes the application state to show one of the above views), it needs to

RE: [flexcoders] Re: ACcess SOAP fault code

2006-07-15 Thread Carson Hager
It's a little more work than a simple filter. It requires a filter andan HttpServletResponseWrapper. I've included a simple version here along with the web.xml file config you will need in order to use it. You might want to consider changing the scope of the filter. I'll leave that up to

RE: [flexcoders] HTTPService in components

2006-07-15 Thread Carson Hager
Can you include the errors here? Without them, it's a bit hard to figure out what might be going on. Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGYMobile: 1.703.489.6466

[flexcoders] Loading external css and setting a:hover style for htmlText

2006-07-15 Thread Olivier de Jonge
How do I connect an external stylesheet to a textfield so the htmlText gets the right styles? I have an Application:?xml version=1.0 encoding=utf-8?mx:Application xmlns:mx= http://www.adobe.com/2006/mxml xmlns:myText=* layout=absolutemx:Style source=main.css /myText:TextFieldExample