[flexcoders] relationship mapping

2007-09-23 Thread Toby Tremayne
Can anyone point me to code or tutorials for flex or flash that will allow generation of a display of linked data items? Not quite a mind map but basically something that will scale the display and move items around to make them fit on screen, with various links to each other. Make any s

Re: [flexcoders] navigateToURL() GET method works fine, but POST doesn't work.

2007-09-23 Thread Manu Dhanda
Anyone with a solution to my following problem Manu Dhanda wrote: > > Hii > > On the click of a button, am calling following method: > > public function openNewWindow(event:MouseEvent):void { > var url:URLRequest = new > URLRequest("http://cco061-03:8088/openreports/executeRe

Re: [flexcoders] Setting selectedIndex

2007-09-23 Thread Richard Rodseth
I finally got around to trying scrollToIndex(). No dice. Recall that my list is repeated, and the instances have no scrollbars because their rowcount gets set to the number of items. I'm looking for a scrollSelectionIntoView recipe that works even if the list is nested. Thanks. On 9/19/07, Alex

[flexcoders] upload file to base64

2007-09-23 Thread slash_n_rose
Hi all Can I convert an uploading file to base64 from flex2.0.. Im using filereference for uploading a file. Thanks in advance Slash

[flexcoders] Re: own metadata tags

2007-09-23 Thread Sandeep Malik
Yes, you can define custom metadata tags. You will need to add that tag in the flex-config.xml file (where 'Bindable' etc tags are added). This will let compiler know that it needs to keeps these tags in compilation. You can then access these tags through describeType() method. Regards, Sandeep -

RE: [flexcoders] Datagrid Sorting by Row

2007-09-23 Thread Alex Harui
You can catch headerRelease event, call preventDefault, then get the columns, shuffle the order of the columns and re-set it on the DataGird From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Rottman Sent: Saturday, September 22, 200

RE: [flexcoders] SWFLoader onRoll: can it be set in Actionscript?

2007-09-23 Thread Alex Harui
Call addEventListener in the handler for the "complete" event. creationComplete is probably too soon. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Saturday, September 22, 2007 8:07 PM To: flexcoders@yahoogroups.com Su

RE: [flexcoders] Re: Setting the crossdomain.xml file for WebService in a diffferent path than ro

2007-09-23 Thread Alex Harui
The WSDL is fetched in creationComplete and could cause a crossdomain.xml fetch as well. So, depending on when you call loadPolicyFile, one fetch of the policy file and wsdl may already be underway. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

Re: [flexcoders] Data Management in Flex : Add/Edit/Delete

2007-09-23 Thread George Georgiou
I have gone through tutorials on how to read data from the HTTPService. How can I send back to the server data to be added into an sql table? any examples? Thanks, George use Flex's HTTPService to call a JSP/ASP/CF/PHP server page On 9/23/07, Dimitrios Gianninas <[EMAIL PROTECTED]> wrote:

[flexcoders] own metadata tags

2007-09-23 Thread hannes.stockner
Hello, it is possible to define my own metadata tags? thank you

Re: [flexcoders] Data Management in Flex : Add/Edit/Delete

2007-09-23 Thread Muzak
> 3) use Flex RemoteObject to call a Java class or CF object Or .NET, PHP service http://www.themidnightcoders.com/ http://www.themidnightcoders.com/weborb/dotnet/ http://www.themidnightcoders.com/weborb/php/index.htm - Original Message - From: "Dimitrios Gianninas" <[EMAIL PROTECTED]> T

RE: [flexcoders] Data Management in Flex : Add/Edit/Delete

2007-09-23 Thread Dimitrios Gianninas
Hi, Using LCDS is not a must but it does have advanced features that you might need depending on your application. If you want to update a DB then you do need a server side portion thats for sure. There are many ways to do this: 1) use Flex to call a WebService which is either done in Java,

[flexcoders] Data Management in Flex : Add/Edit/Delete

2007-09-23 Thread George Georgiou
Hi there, I am really new into Flex programming. I have been through a few tutorials and I really liked it. I am not sure though how to make a very simple task. Suppose I have a simple form and I want to update an SQL table when I enter some values in there. I want when I click submit to do that.

RE: [flexcoders] Re: Real size of components

2007-09-23 Thread Gordon Smith
I think you need to call validateNow() on the component's parent. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Sent: Sunday, September 23, 2007 11:23 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Real size

[flexcoders] Re: Real size of components

2007-09-23 Thread Daniel
Hey guys... this.validateNow() doesn't work... the width property doesn't refresh after that call... and the listener for the updateComplete Event wouldn't work much for me, because i'm laying out the panels and I need the width and height immediatly... Is there any way to get the size immediatly?

[flexcoders] Re: Memory usage by flex

2007-09-23 Thread elvezpablo
The best resource I've found for memory management was written up by Grant Skinner: http://www.gskinner.com/blog/archives/2006/06/as3_resource_ma.html He also wrote an article which is somewhat shorter on the Adobe Flex site. --- In flexcoders@yahoogroups.com, "mohneeshs" <[EMAIL PROTECTED]>

Re: [flexcoders] Are you going to MAX?

2007-09-23 Thread Arpit Mathur
I am there :) On 9/23/07, Ed Capistrano <[EMAIL PROTECTED]> wrote: > > Okay, I will not be there guys just give my thanks to > those @ adobe for developing such a nice app.. > > Ed™ > Proud & Happy Member > --- flexcoders@yahoogroups.com > <[EMAIL PROTECTED]> > wrote: > > I will be there! > >

Re: [flexcoders] JPGEncoder with progress support?

2007-09-23 Thread Arpit Mathur
on using timer for screen updates: Is there any advantage (or disadvantage) of that vs. callLater ? On 9/23/07, Gordon Smith <[EMAIL PROTECTED]> wrote: > > > the corelib version > This class is now an official part of Flex 3: > mx.graphics.codec.JPEGEncoder. > > - Gordon > > -

Re: [flexcoders] JPGEncoder with progress support?

2007-09-23 Thread Jon Bradley
Yea - but I haven't bothered to dl the flex 3 sdk yet. Ah, so much to do... :) Plus, I think it could use some some speeding up and control over whether or not to distribute the processing into chunks or as one continuous processed block. On Sep 23, 2007, at 12:43 PM, Gordon Smith wrote

Re: [flexcoders] Memory usage by flex

2007-09-23 Thread Arpit Mathur
without knowing what you are doing, there may not be much that anyone can point to. One thing that does that is if you have drawing routines on the graphic object in some updateDisplaylist handler. I did that on two occasions and am much more sensitive to that now than before. Are you using any dy

RE: [flexcoders] JPGEncoder with progress support?

2007-09-23 Thread Gordon Smith
> the corelib version This class is now an official part of Flex 3: mx.graphics.codec.JPEGEncoder. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jon Bradley Sent: Saturday, September 22, 2007 11:03 AM To: flexcoders@yahoogro

[flexcoders] Re: Setting the crossdomain.xml file for WebService in a diffferent path than ro

2007-09-23 Thread Claude Hussenet
FYI. I created a JIRA(SDK-12799) with a sample illustrating the issue . Thx-Claude Hussenet --- In flexcoders@yahoogroups.com, "Claude Hussenet" <[EMAIL PROTECTED]> wrote: > > > Yes,I did specify a WSDL. > > As noticed in my previous email the crossdomain.xml is loaded from the > web ROOT doma

[flexcoders] LCDS and FLEX 3

2007-09-23 Thread Christoph Guse
Hi All, at the moment I'm developing a flex application prototype. I use the AdvancedDatagrid, so I chose Flex 3 beta. I also need to have LCDS, so I installed LCDS 2.5 . In Flexbuilder I normally choose the option "user compiler on server" when I create a new flex project. Unfortunately in LCDS 2

RE: [flexcoders] pixel font [old] issue

2007-09-23 Thread Randy Martin
You might take a look at this, too. HYPERLINK "http://www.minifonts.com/tips.html"http://www.minifonts.com/tips.html The second major topic on the page deals with using pixel fonts with Flash. _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ary Sent: Sunday

[flexcoders] Re: Custom Components & Data

2007-09-23 Thread Andrew
Thank You So Much I just could not figure that out, you have been a great help. Thanks Alot!!!

RE: [flexcoders] Are you going to MAX?

2007-09-23 Thread Ed Capistrano
Okay, I will not be there guys just give my thanks to those @ adobe for developing such a nice app.. Ed™ Proud & Happy Member --- flexcoders@yahoogroups.com <[EMAIL PROTECTED]> wrote: > I will be there! > > Dimitrios Gianninas > Development Team Lead / Moderator > Optimal Payments Inc. > > >

RE: [flexcoders] Are you going to MAX?

2007-09-23 Thread Ed Capistrano
Okay, I will not be there guys but give my thanks to those @ adobe for developing such a nice app.. Ed™ Proud & Happy Member --- flexcoders@yahoogroups.com <[EMAIL PROTECTED]> wrote: > I will be there! > > Dimitrios Gianninas > Development Team Lead / Moderator > Optimal Payments Inc. > > > _

[flexcoders] Need Help With This Error -- No service is configured to handle messages of type

2007-09-23 Thread lifeonisland
I am trying to use Flex Data Services on jboss and I get this error when I try to access my mxml page. Does anyone know what causes this error [MessagingError message='No service is configured to handle messages of type 'flex.data.messages.DataMessage'.'] at mx.messaging.config::ServerCon

[flexcoders] AIR HTML control tag problem with target _blank

2007-09-23 Thread Mrinal Wadhwa
In the air html control if I put in the html google AIR does not launch a new browser window with google .. any ideas why? If I make navigateToUrl call with a _blank a new bowser window is launched ... why cant he HTML control do it? Is there something special that I need to do to make this w

Re: [flexcoders] pixel font [old] issue

2007-09-23 Thread Ary
Thanks Jon! i wil try that... ary --- Jon Bradley <[EMAIL PROTECTED]> wrote: > Search archives. Another embedding fonts thread was > discussed up > about a week ago ("Embed Flash Font" was the > subject). > > Text of my post is below, which works for all pixel > fonts I've tested > so far (