Re: [flexcoders] HitTest Problems with Button that includes white

2008-01-06 Thread Max Frigge
Thanks Alex, that's very kind of you. I will try to get it fixed once more on my own before i start bothering you with debugging :-). I didn't really have the time yet for a second look at it. (..might come back to soon though ;-) Cheers, Max - Original Message From: Alex Harui

[flexcoders] Placing the label in a Panel

2008-01-06 Thread m.frigge
Hi there, I was trying to customize a Panel or better to say extend the Super Panel of Wietse Veenstra and I can't figure out how to place the components label. I increased the headerHeight and want the label to be placed vertically to the top and horizontally centered. I know that it must

[flexcoders] Place Button in DataGrid

2008-01-06 Thread NileAge, Mail
Hello all, I placed a button in a Datagrid but when use the ( click event ) appear a problem - The code: mx:DataGrid id=DG dataProvider={myData} width=500

[flexcoders] Re: Placing the label in a Panel

2008-01-06 Thread ben.clinkinbeard
If I remember correctly you have to get access to and move the titleTextField, which is private, so you'd have to do it from within SuperPanel (or your subclass of it). I should also mention that the FlexMDI project (http://code.google.com/p/flexmdi/) used Wietse's work as a starting point and

Re: [flexcoders] Re: Placing the label in a Panel

2008-01-06 Thread Max Frigge
Thanks for that bit of information :-) That will definitely safe me some work. I am trying to customize the Panel header at the moment, so that you are able to place some control elements in the header. My approach is pretty simple though. I just create a mxml component and add it as a child

[flexcoders] flex WSDL example

2008-01-06 Thread awrweb
I've been beating my head at this for awhiile now. I'm trying to use a webservice within flex (mx:webservice..) to call a wsdl path but I want to use variables to string together the server path, so.. var g_hostString=http://[cgi.server_name]/filename.cfc?wsdl;; flex web service

Re: [flexcoders] Need flex WSDL example

2008-01-06 Thread Rodrigo Pereira Fraga
tutorial about WebServices in Fx2 http://imasters.uol.com.br/artigo/4592/flex/acessando_webservices_pelo_flex_20_-_criando_um_conversor_de_moedas/ Atenciosamente: --- | Rodrigo Pereira Fraga | http://www.digows.com e-mails: [EMAIL

[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-06 Thread dfalling
Do you mean you removed the column from the columns array? I've tried that too, but they still shrink when I add them back. --- In flexcoders@yahoogroups.com, rueter007 [EMAIL PROTECTED] wrote: I had this problem too when I used the datagrid. The fix I did was to reassign the columns

[flexcoders] WebService call

2008-01-06 Thread j301c
I have a webservice running on a local glassfish server. I can access the url from the browser and retreive the wsdl xml manually. When I run the swf from the webpage nothing happens (no responce or error), when I run swf on my local system it gives me this error [RPC Fault

[flexcoders] WebORB PHP 2.0.2 tweaks for Flex Builder 3 (B3-M4)

2008-01-06 Thread Alan Gruskoff
I can report getting WebORB PHP 2.0.2 (today's version) to work with Flex Builder 3 (B3-M4) with some guessing and tweaking. Its very cool when it works. See my install notes here: http://www.themidnightcoders.com/forum/default.aspx?g=postsm=1334#1334 - Alan G

[flexcoders] Re: Newbie : Flex Hosting Question

2008-01-06 Thread rd_grimes
Hi, My web apps involve: 1) Flex on the client side 2) Java web services, using Spring, XFire frameworks 3) MySQL database I use Tomcat as the servlet container, running on a simple Windows XP OS. I host it myself from a home server and it works fine. R. Grimes --- In

[flexcoders] create XML from adjacency model db

2008-01-06 Thread ericbichara
Hi everyone, I need your help! I have a database modeled after the adjacency list model, for example: Id Parent 1 null 2 1 3 1 4 2 5 3 6 5 and i need to be able to feed this hierarchy to a Tree component in flex. I am running a mySQL database and using php

[flexcoders] Access Module Methods and Properties

2008-01-06 Thread Jávéd Hussain
Hi All, I want to access the Public properties and Methods of Module Loaded in an application, is there any way to do that??? please help. Regards, Javed _ Telly addicts unite! http://www.searchgamesbox.com/tvtown.shtml

[flexcoders] Why you miss it

2008-01-06 Thread jamenicky
http://top-itarticles.com/softtest/softtest02.asp Testing Testing Testing Tools: All software testing tools available now in one place. Just go there and take advantages: http://top-itarticles.com/softtest/softtest02.asp

[flexcoders] Accordion ScrollBar Problem

2008-01-06 Thread reber.christian
Hey, I'm currently doing a lot of bug fixing at my project, but I'm going crazy with one little thing. I was lucky to create a screenshot! The problem is, the Accordion is getting Data and sometimes the height is going automatically to the contentHeight (resizeToContent is still false). I have no

[flexcoders] Chart itemRenderer and CSS

2008-01-06 Thread Peter Hall
I have custom item renderer for a ColumnChart in Flex 3 b3. I can make it work in MXML or ActionScript, but I get errors when I do it with CSS. works: columnSeries.setStyle(itemRenderer, new ClassFactory(MyRenderer)); works: ColumnSeries itemRenderer=package.MyRenderer / Doesn't work:

[flexcoders] Re: The 'right' way to do custom styles

2008-01-06 Thread Brian Morearty
Good suggestion, Tom. I voted for #FB-11589. - Brian Morearty Intuit --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 04 Jan 2008, Andrew Strader wrote: If you like re-usability, you would also want to consider whether making a property out of

Re: [flexcoders] The 'right' way to do custom styles

2008-01-06 Thread Peter Hall
Components often arise out of specific projects, but then get generalised for wider use later. It's quite normal to build a component to work in one situation, then notice in another project that you need the same thing. At that point, you can remove any dependencies from the original project, and

RE: [flexcoders] Lazy Loading on Tree Component with LCDS

2008-01-06 Thread Jeff Vroom
On second thought, this will be trickier than I thought. One problem is that you need to put a NotPendingCollection as a property in your model so you get hierarchical collections which don't throw IPEs. This isn't too bad but you can't then use static data binding expressions to forward events

[flexcoders] Re: create XML from adjacency model db

2008-01-06 Thread simonjpalmer
I've re-read this a few times and I'm not clear what you are asking. Is your question... 1) how do I communicate from a database to a flex app? 2) how do I pivot that parent-child hierarchy into xml? 3) how do I get a tree control to consume xml? 4) some other question? If it is 1 or 3, then

[flexcoders] Re: create XML from adjacency model db

2008-01-06 Thread ericbichara
Hi Simon, sorry about the confusion, my question is n# 2 on your list, in fact you could say this isn't really a Flex question but i thought id ask since maybe someone else had come across it. Ill try to explain it more clearly. Using the example i gave previously of my database structure:

Re: [flexcoders] IE cache

2008-01-06 Thread Scott Melby
Did you try the max-age header? Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com coder3 wrote: i tried to set the no-cache header in my jsp, somehow it didn't work. so i have to use garbage parameter to work around. thx Scott Melby-3 wrote: Are you using

Re: [flexcoders] IE cache

2008-01-06 Thread Brent Dearth
If you are using SSL ... IE is really finicky when it comes to cache headers and SSL when used conjunction with plugins. You really need to be explicit, and should drop the Pragma and Expires headers and set Cache-Control to no-store, no-cache, must-revalidate, post-check=0, pre-check=0 more info

[flexcoders] FLEX Datagrid-Newbie

2008-01-06 Thread CK
Hi, The following code fails to populate the DataGrid. This an ambitious newbie application, can someone assist? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute viewSourceURL=srcview/index.html mx:Style

Re: [flexcoders] Access Module Methods and Properties

2008-01-06 Thread Bjorn Schultheiss
You can get the module from the ModuleLoader.child property. Depends how your loading the module i guess, I'm using interfaces to give me strong typing between projects. That is if i'm creating my modules in seperate projects. I have a swc that i use as a rsl which contains my interfaces or

[flexcoders] Re: create XML from adjacency model db

2008-01-06 Thread simonjpalmer
ok, in that case it's easy and there are a million ways to do it and you need to decide where in your architecture this should go (and no, this has nothing to do with Flex and is very common in denormalised database applications). Contrary to my last post I think I would probably do this

[flexcoders] Re: flex WSDL example

2008-01-06 Thread rid_b80
Hi, I think what you want is you need to pass the [cgi.server_name] value from the html to flex application. http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.\ htm?context=LiveDocs_Partsfile=1006.html The above link is how you do it. Hope it helps --- In

[flexcoders] Re: Problem with LI Tags in HTML Text

2008-01-06 Thread chrycheng
Not yet. Traced all the way to mx.core.UITextField with no conclusions. Probably need to trace further up the class heirarchy tree but flash.text.TextField isn't available. Experimented some more. Found out that: 1. Cannot work around the problem by first clearing htmlText (i.e., htmlText =

[flexcoders] Collision detection for multiple objects?

2008-01-06 Thread jrag0n
All the examples of AS3 collision detection I've seen assume you know the names of the two objects that will be touching. I want to write some code where new objects can be placed on the stage and have a custom even that triggers when any of them touch any other object on the stage. Is it

[flexcoders] Divider Release event gotcha

2008-01-06 Thread Paul Andrews
Here's an example of something that tripped me up when handling a dividerRelease event for a divided box. In the event handler I was using the width of an element inside the divided box and using the revised width in a calculation (after all the divider had been dragged), but after some

Re: [flexcoders] Is This a Know BUG?

2008-01-06 Thread Paul Andrews
http://bugs.adobe.com/flex/ - Original Message - From: Dale Fraser To: flexcoders@yahoogroups.com Sent: Sunday, January 06, 2008 7:55 AM Subject: RE: [flexcoders] Is This a Know BUG? It's Flex builder 3. Where do I file a bug exactly. Regards Dale Fraser

[flexcoders] Re: Collision detection for multiple objects?

2008-01-06 Thread Bill Lane
Have you taken a look at the Actionscript 2D Physics Engines? There are a number available and most should be able to do what you require. There is a short review of each and link here : http://henryjones.us/articles/actionscript-3-physics-engines

[flexcoders] Reliable timer technique

2008-01-06 Thread YOGESH JADHAV
Hi all, I want a reliable timer in my app to remove a alert after say 3 seconds. Earlier I tried the normal setTimeOut but it is not reliable and gives error in firefox. So i tried with onEnterFrame technique, but it is also not working properly. I also tried by setting application

[flexcoders] Cell Merge

2008-01-06 Thread yourName
Can Any One tell me how to merge cells or chagning background color for individual cell for flex datagrid

Re: [flexcoders] Cell Merge

2008-01-06 Thread Aaron Miller
Maybe an item renderer with style settings bound to it's data value? Not sure why and when you need to merge, but it seems like there would be lots of different ways you could do this. Regards, ...aaron On 1/6/08, yourName [EMAIL PROTECTED] wrote: Can Any One tell me how to merge cells or

[flexcoders] Re: Collision detection for multiple objects?

2008-01-06 Thread jrag0n
Thanks, that looks like a fantastic resource. But I'm asking primarily to learn the concepts myself. While I look into the engines, does anyone have any thoughts about doing basic collision detection for a dynamic number of objects? --- In flexcoders@yahoogroups.com, Bill Lane [EMAIL

RE: [flexcoders] Is This a Know BUG?

2008-01-06 Thread Dale Fraser
So, I guess it's not a known bug. Anyway I tried signing up to file a bug and never got the confirmation email. So if anyone wants to see it happen and file a bug on it then goto http://flex.fraser.id.au/DataGridOrders/ Sort by any of the right hand aligned columns (last 3) Then

RE: [flexcoders] Cell Merge

2008-01-06 Thread Alex Harui
See the examples in http://blogs.adobe.com/aharui/2007/03/thinking_about_item_renderers_1.ht ml From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Miller Sent: Sunday, January 06, 2008 10:05 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Re: Problem with LI Tags in HTML Text

2008-01-06 Thread Alex Harui
HTML support in TextField is known to have issues. I wouldn' t do anything unexpected like having an li without enclosing ul or ol. -Alex For another angle, see: http://blogs.adobe.com/aharui/2008/01/html_and_flex_1.html From:

RE: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-06 Thread Alex Harui
Flex 3 should be better at this than Flex 2. horizontalScrollPolicy, resizable properties can also help. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dfalling Sent: Friday, January 04, 2008 1:33 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Place Button in DataGrid

2008-01-06 Thread Alex Harui
mx:Component defines a sub-document so update() is not available. Try outerDocument.update() From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of NileAge, Mail Sent: Sunday, January 06, 2008 5:04 AM To: flexcoders@yahoogroups.com; [EMAIL