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

2006-07-15 Thread Anatole Tartakovsky
After spending an hour reviewing framework code I settled for this override in CheckBox:      mx_internal override function layoutContents(unscaledWidth:Number, unscaledHeight:Number, offset:Boolean):void     {      super.layoutContents(unscaledWidth, unscaledHeight, offs

[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: http://www.adobe.com/2006/mxml" xmlns:myText="*" layout="absolute"> That 'loads' an external stylesheet main.css:body {fontFamily : "ThesisBolPla";leading : "-3";

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.com Email:  [EMAIL PROTECTED]Office:  866-CYNERGYMobile: 1.703.489.6466  

RE: [flexcoders] flex web service that returns an object

2006-07-15 Thread Carson Hager
The best thing to do here is to use the debugger and look at [webService id].[operation name].lastResult there to see the object structure that has been created based on the return data.  If it doesn't look right, post here again with the structure of the object as well as details of the w

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 and an 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

[flexcoders] how organize this project

2006-07-15 Thread Robert Wąs
My project structure looks like follow: src src/ClientApp.mxml src/Admin.mxml src/com/company/project/... This is cairgorm project in flexbuilder. Main source folder is in src. My application has 2 user interfaces - one for page user, one for administrator. User and Admin part uses common classe

Re: [flexcoders] need solution/best practice regarding VO's

2006-07-15 Thread Andrea Varga
>>Eg.: >>I'm using remoting to get the data from the server (AMFHP). >>On one hand: Class mappings won't work with VO's insite another VO. >> >> > >who says? Works for me. > > Are you using AMFPHP? Does it work in both ways for you (AS -> PHP and PHP -> AS)?

[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 loa

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.com Email:  [EMAIL PROTECTED]Office:  866-CYNERGYMo

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

2006-07-15 Thread Clint Tredway
sweet, well, I know where I will be hosting from now on :) On 7/15/06, dcooper2025 <[EMAIL PROTECTED]> wrote: 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

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 Mess

[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. http://us.click.yahoo.com/TISQkA/hOaOAA/yQ

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

2006-07-15 Thread Tim Hoff
I'll get there one of these days: Button { overSkin: Embed("../assets/images/orb_over_skin.gif"); upSkin: Embed("../assets/images/orb_up_skin.gif"); downSkin: Embed("../assets/images/orb_down_skin.gif"); } -TH --- In flexcoders@yahoogroups.com, "Tim Hoff" <[EMAI

[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: .myCustomButton { overIcon:Embed("overIconImage.gif"); upIcon:Embed(source="upIconImage.gif"); downIcon:Embed(source="downIconImage.gif"); } For the up state, use your favorite image program and create an image with a t

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 i

[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, as

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 take 3-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

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

2006-07-15 Thread hank williams
Hey Tim,Thanks, but I'm not quite sure I understand. Were you intending to point me to an example? Also, the link button is OK, but the other states are totally flat, and I didnt want to try to redesign what flash has already done. For the particular button I am trying to do, the flex standard b

[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

[flexcoders] Re: Cairngorm: datagrid dataprovider and columns

2006-07-15 Thread Tim Hoff
Hi, You're almost there.  You have the data to the DataGrid, now send it to the DataGridColumn's: dataField="account"/> -TH --- In flexcoders@yahoogroups.com, "flxcoder" <[EMAIL PROTECTED]> wrote:>> Hi,> > Trying to work with Cairngorm.> > view.Employees.mxml has datagrid that needs to have its

[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: >

Re: [flexcoders] what can you do with emedded swf symbols as button icons and as buttons

2006-07-15 Thread JesterXL
All ActionScript is removed on frames.  However, if you use Flash 9 Alpha (Blaze), you can still interact with it.   If you don't use an AS3 class, then you still have primitive controls such as gotoAndPlay, currentFrame, etc.  There are some new ones that are pretty phat too, like current

[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 s

[flexcoders] what can you do with emedded swf symbols as button icons and as buttons

2006-07-15 Thread hank williams
I want to make buttons and use symbols from a swf as my icon in the button.my question is that as I understand it, you can only embed buttons and movieclips, not graphics, and presumably (though I am not sure about this) not bitmaps. So if you can embed a movieclip, what can you do with it in a

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

2006-07-15 Thread JesterXL
The best way is to allow the View to expose those things, or provide ways to interact with itself. This keeps it encapsulated and protected from outside forces screwing it up. With binding, this is even easier. So: An outside View using the above would go like:

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 ma

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 gro

RE: [flexcoders] Dashboard Sample: problems

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

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:

[flexcoders] Cairngorm: datagrid dataprovider and columns

2006-07-15 Thread flxcoder
Hi, Trying to work with Cairngorm. view.Employees.mxml has datagrid that needs to have its columns and data set dynamically. Now I can set the data up as ArrayCollection in the ModelLocator and set How can I set up the columns for the datagrid above. Is it something that I can set from the

[flexcoders] Panel Problems

2006-07-15 Thread Troy
On a current project every thing looks fine in the editor, but when tested anything that hits a particular view in a viewstack hangs. In probing it, it's hanging on something bizarre: If I have a mx:Panel inline on the first file it works fine. If I use the same Panel (which can be empty) via an se

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: http://livedocs.macromedia.com/labs/as3preview/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?con

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

2006-07-15 Thread dcooper2025
You can call CFC's in CF7.0.1 using web service calls, but not via Flex 2 remoting. That does require CF 7.0.2, unfortunately. Is the hoster aware of CF 7.0.2? 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

[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 bi

Re: [flexcoders] Dashboard Sample: problems

2006-07-15 Thread Marcelo de Moraes Serpa
I used to have a similar problem with my application and it eventually still happens, even though it´s not a Flash9 swf. Some users still complain that sometimes the preloading just stops at some stage without any apparent reason. Refreshing the browser sometimes fixes the problem, but even when

[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 noth

[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! G

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{ > > publ