RE: [flexcoders] How do I print in Flex?

2008-03-26 Thread Alex Harui
FlexPrintJob From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of coolz22in Sent: Tuesday, March 25, 2008 10:35 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How do I print in Flex? Hi, I want to print some data obtained from

Re: [flexcoders] Developer Exam

2008-03-26 Thread li wenzhi
you means the Flex2, not Flex3 exam? Does Adobe do anything toward Flex3 exam? - Original Message From: Merrill, Jason [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, March 26, 2008 3:11:52 AM Subject: RE: [flexcoders] Developer Exam Congrats! Jason Merrill Bank

RE: [flexcoders] Re: Singletone class in Application and Modules !?

2008-03-26 Thread Rick Winscot
Er. bah?!? Any var foo:DataManager = new DataManager() - - will fail. As a properly constructed singleton it won't compile! The constructor takes an argument that is restricted to the package! The implementation that I provide you will require all treatment to follow

[flexcoders] Where to search!!!!!

2008-03-26 Thread hworke
Hi, I am looking for a flex developer's job in Canada. Where do I search? Regards

Re: [flexcoders] [Offtopic] Flex Email Application

2008-03-26 Thread Max Frigge
Hey, sorry for the late response. I will upload a debug version tonight and post it as soon as possible. - Original Message From: Tom Chiverton [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, March 25, 2008 8:28:43 PM Subject: Re: [flexcoders] [Offtopic] Flex Email

[flexcoders] Re: creating MXML components with new-operator in ActionScript

2008-03-26 Thread vdeprojects
Good point but in my case (as in most real world cases) things are a bit more complicated... So if anyone knows a good solution then I'm all ears. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: For performance reasons, children are not created until the container is

[flexcoders] Re: How do I set width to 100% in actionscript?

2008-03-26 Thread Cato Paus
var can:Canvas = new Canvas(); can.percentHeight = 100; // setting it back to default can.percentHeight = undefined; --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: you could always do

Re: [flexcoders] Singletone class in Application and Modules !?

2008-03-26 Thread Manish Jethani
On 3/26/08, lytvynyuk [EMAIL PROTECTED] wrote: Is it true if I have singleton class instantiated in main application and in module, instances will be different? [snip] If you don't include the class in the main application, each of the modules will have their own instance of the class. Class

Re: [flexcoders] creating MXML components with new-operator in ActionScript

2008-03-26 Thread Manish Jethani
On 3/25/08, mavdzee [EMAIL PROTECTED] wrote: I have noticed that when I create an MXML component in ActionScript, that the children of the MXML component are not created until I add it as a child of another component. Is there any way to force creation of children before it is added? I

Re: [flexcoders] Where to search!!!!!

2008-03-26 Thread Manish Jethani
On 3/26/08, hworke [EMAIL PROTECTED] wrote: I am looking for a flex developer's job in Canada. Where do I search? http://tech.groups.yahoo.com/group/flexjobs/ Manish

Re: [flexcoders] Re: Perl with Flex - with proper question

2008-03-26 Thread Manish Jethani
On 3/26/08, chandra shekar [EMAIL PROTECTED] wrote: my question was, how can i call a perl script running on a server. whether i should use http service or is there any other way. Call it using HTTPService. Manish

[flexcoders] Re: Need help passing data to a title window

2008-03-26 Thread Cato Paus
first of all the datagrid is not initialized before it is drawn on the screen, you can use public get and set, and a bindable var that holds your data, or you can send the data after you catch the creationComplete event on the titlewindow. --- In flexcoders@yahoogroups.com, valdhor [EMAIL

[flexcoders] Re: How do I print in Flex?

2008-03-26 Thread coolz22in
Hi, I want to print only the data and not the UI. But the FlexPrintJob.addObject() method takes only the UIComponent to print. Thanks in advance. ~ Sundar ~ --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: FlexPrintJob From:

Re: [flexcoders] Re: How do I print in Flex?

2008-03-26 Thread Paul Andrews
- Original Message - From: coolz22in [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, March 26, 2008 6:42 AM Subject: [flexcoders] Re: How do I print in Flex? Hi, I want to print only the data and not the UI. But the FlexPrintJob.addObject() method takes only the

Re: [flexcoders] Re: Get the Domain the Flex app is running in

2008-03-26 Thread Tom Chiverton
On Wednesday 26 Mar 2008, shivkxr wrote: I've already tried BrowserManager. It doesn't do the job, in fact I can't image how or where one could use it, because it seems the url has to change while the FLASH/Flex app is still alive and I've not been able to create such a case. You wont be able

[flexcoders] Drag and Drop for Variable Custom Component

2008-03-26 Thread kenny14390
Hi. I've read the documentation about drag and drop and I've read up on custom components, but my case is a little different. I'm never directly invoking my custom component, but rather conditionally invoking it (if a condition is true). So I don't write the tags for the component, I'm just adding

Re: [flexcoders] RemoteObject and Arguments Order

2008-03-26 Thread Tom Chiverton
On Tuesday 25 Mar 2008, Franca Daniel wrote: Iam using remoteObject (WebOrb) in my flex application and i got a problem with arguments order, argumentNames doen´t working. Thats only work when i With ColdFusion and RemoteObject, arguments are passed positionaly, not by name. -- Tom

Re: [flexcoders] Get the Domain the Flex app is running in

2008-03-26 Thread Manish Jethani
On 3/25/08, shivkxr [EMAIL PROTECTED] wrote: I need to get the domain the Flex app is running in. My is hosted at aaa.com A page on bbb.com embeds my app on their page. At runtime I need to know that my app is running on bbb.com I guess the only way to do this is to have the URL passed

Re: [flexcoders] Flex module support multi processor ?

2008-03-26 Thread Tom Chiverton
On Wednesday 26 Mar 2008, Yohanes Iwan Sugiarto wrote: Will Flex compiler module take advantage from the multiprocessor box? Does it matter ? Compiles would be a fairly rare occurrence I'd think... -- Tom Chiverton Helping to simultaneously extend plug-and-play experiences on:

[flexcoders] LCDS one-to-many managed associations

2008-03-26 Thread Zdenek Mikan
Hi, I am trying to comprehend how to implement the one-to-many managed associations in LiveCycle Data Services. Unfortunately there is no complete sample available. I have got the Company and Employee tables in database and there is an id_company foreign key in the Emploee records. I

Re: [flexcoders] Get the Domain the Flex app is running in

2008-03-26 Thread Christian
- SNIP - I instantiate an instance of it in the initialize event of the application. All it's properties are null. - SNIP - I think this might be your problem. I remember trying to use Application.urlsome time back in the application initalize event, only to find that it was null. But once I

Re: [flexcoders] Re: Spell Checking

2008-03-26 Thread Niamath Basha
thank you very much ya i saw that site in that google toolbar spell check api is using if i use that api when the version of that api changes does it work well? Regards, Niamath Basha... - Original Message From: caffeinewabbit [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] Re: Spell Checking

2008-03-26 Thread Tom Chiverton
On Wednesday 26 Mar 2008, Niamath Basha wrote: when the version of that api changes does it work well? No, it'll probably break. But you can replace the call to Google with your own server side spell checker, such as aspell or whatever the Java world uses. -- Tom Chiverton Helping to

[flexcoders] profiler data in a release build?

2008-03-26 Thread Amitabh Ghatak
hi there im thinking about adding a built in profiler mode into my existing flex app. by that i mean besides basic stats like total memory / CPU etc, instances of some critical objects created, their memory consumption, current objects etc. a) is it possible to do this or am i dreaming? b) is it

Re: [flexcoders] Developer Exam

2008-03-26 Thread VELO
I look at prometric... Only has flex 2, no flex 3. VELO On Wed, Mar 26, 2008 at 3:15 AM, li wenzhi [EMAIL PROTECTED] wrote: you means the Flex2, not Flex3 exam? Does Adobe do anything toward Flex3 exam? - Original Message From: Merrill, Jason [EMAIL PROTECTED] To:

RE: [SPAM] RE: [flexcoders] Heights of repeated datagrids

2008-03-26 Thread Paul Steven
Thanks for your suggestion Tracy. I tried to use the rowCount as you suggested but it doesn't seem to have any effect Just as a test, I set it to 1 and still they heights of all the datagrids vary mx:DataGrid x=20 y=36 showHeaders=false width=525 id=markSheetSectionDG wordWrap=true

[flexcoders] blazeds performance

2008-03-26 Thread netdeep
I am wondering if anyone has an idea about increasing blazeds performance. I am receiving information from a database for a chart. Each record is a java object and the entire set of aproximately 180K records is contained in two separate arrays since it is a multi-series chart. I convert

[flexcoders] ANN: Flex Jobs

2008-03-26 Thread Rick Winscot
Any Flex developers live in CA (San Diego) or wanting to relocate to the land of vitamin K? Drop me a line - Rick Winscot

RE: [flexcoders] Singletone class in Application and Modules !?

2008-03-26 Thread Rick Winscot
Good point. you do have to have at least one dangling reference in your application for modules to work as expected. Rick Winscot From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Wednesday, March 26, 2008 4:48 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Get the Domain the Flex app is running in

2008-03-26 Thread Rick Winscot
If BrowserManager is initialized without a trailing fragment (i.e. http://www.mydomain.com/myapp.html#frament) you will get empt-ies. Rick Winscot From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Christian Sent: Wednesday, March 26, 2008 6:09 AM To:

[flexcoders] Locking row

2008-03-26 Thread Niamath Basha
hi all In flex 3 how to lock first column which user is viewing first column view means if user scroll to right and he lock the column then first column which he was viewing must be locked similar to MS Exel - View - Window - Freeze column Regards, Niamath Basha...

[flexcoders] Re: Automate build for large apps?

2008-03-26 Thread ivan.division40
Try to peek inside Cairngorm project package. Cairngorm 2.2.1 - Cairngorm2_2_1-src - Cairngorm You can find sth like this in build.xml: xslt in=.flexLibProperties out=${config} style=config.xsl/xslt Really nice thing... ;) --- In flexcoders@yahoogroups.com, toofah_gm [EMAIL PROTECTED] wrote:

[flexcoders] Re: Flex ContextMenu in a DataGrid

2008-03-26 Thread cyrill.zadra
You should be able to get the ContextMenu's events and modify the menu before it goes up. Can I modify the menu with fresh requested data from a server (RemoteObject)? regards cyrill

Re: [flexcoders] Locking row

2008-03-26 Thread Tom Chiverton
On Wednesday 26 Mar 2008, Niamath Basha wrote: how to lock first column which user is viewing AdvancedDataGrid has this feature, if you are a Flex 3 Professional user. -- Tom Chiverton Helping to professionally cultivate high-yield m-commerce on: http://thefalken.livejournal.com

[flexcoders] Re: AMFPHP with NetConnection or RemoteObject ?

2008-03-26 Thread actionscript_czar
When I first started working with AMFPHP 1.9 I was using NetConnection to connect to AMFPHP. It worked well for very simple object structures. As structures became more complex it started costing me more time. Once I started to learn the Cairngorm framework it gave me a reason to start

Re: [flexcoders] Re: How do I print in Flex?

2008-03-26 Thread Frederico Garcia
-- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links __ NOD32 2974 (20080326) Information __ This message was checked by NOD32

Re: [flexcoders] blazeds performance

2008-03-26 Thread James Ward
You will probably need to do more research to determine where in the process the bottleneck is. Check out my Census Benchmark app to see what the different parts of process you can measure (right-click to get the source code): http://www.jamesward.org/census My guess is that it's not blaze

[flexcoders] Re: Singletone class in Application and Modules !?

2008-03-26 Thread dbronk
I'm in crunch mode right now, but in a week or two when it slows a bit I'll try and recreate what I had. How did I make sure that the instances were different? By going into debug mode and checking the memory address of each as well as setting a variable in the singleton from the application and

Re: [flexcoders] blazeds performance

2008-03-26 Thread Tom Chiverton
On Wednesday 26 Mar 2008, netdeep wrote: java object and the entire set of aproximately 180K records is contained in two separate arrays since it is a multi-series chart. What's the point of drawing 180K points on a chart ? The user can't see that many at once. -- Tom Chiverton Helping to

[flexcoders] Re: Singletone class in Application and Modules !?

2008-03-26 Thread dbronk
Will this even compile? Your static variable singleton_ is declared with new DataManager(). But your constructor requires a parameter. If this was just a typo in the post and it was declared passing in SingletonEnforcer, then you should not even need the if null check in getInstance as it will

[flexcoders] Re: Singletone class in Application and Modules !?

2008-03-26 Thread dbronk
Okay, with this post it lit a light for me. Let me add a bit more information which I _hope_ will get me the answer. Here is how my project is setup: I have a swc project setup where I have a lot of framework stuff. This is also where my Config singleton is housed. I have another main

[flexcoders] Saving Typed Objects with AIR

2008-03-26 Thread Nick Collins
I'm trying to use the AIR file libraries to write an actionscript object and it saves it just fine but it saves it as just a type of Object. Is there a way where I can save the actionscript objects, yet maintain their typing?

[flexcoders] Column header - two colors for text

2008-03-26 Thread markgoldin_2000
Is it possible to have a header text that consists of two words in different colors? Thanks

RE: [flexcoders] Get the Domain the Flex app is running in

2008-03-26 Thread Shiv Kumar
Rick, Can you explain your last comment please? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick Winscot Sent: Wednesday, March 26, 2008 8:45 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Get the Domain the Flex app is running in If

RE: [flexcoders] How do I print in Flex?

2008-03-26 Thread Chad Gray
In the component explorer I discovered a really nice example of printing. http://examples.adobe.com/flex3/componentexplorer/explorer.html -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of coolz22in Sent: Wednesday, March 26, 2008 1:35 AM To:

Re: [flexcoders] Flex module support multi processor ?

2008-03-26 Thread Yohanes Iwan Sugiarto
well you're right Tom, compilations may be a rare occurrence. just a curiousity, if someday somehow we have 3 or more users refreshing mxml pages at the same time. or even if maybe someday Adobe release this compiler module for production use. On 3/26/08, Tom Chiverton [EMAIL PROTECTED] wrote:

[flexcoders] BlazeDS configuration

2008-03-26 Thread Dominic Pazula
I am getting the following error in BlazeDS: MessageBrokerServlet failed to initialize due to runtime exception: flex.messaging.license.InvalidLicenseException: Beta expired. I have a fully licensed profession copy of FB3. This BlazeDS installation is brand new. I just downloaded and

[flexcoders] Re: Get the Domain the Flex app is running in

2008-03-26 Thread shivkxr
--- In flexcoders@yahoogroups.com, Rick Winscot [EMAIL PROTECTED] I think this might be your problem. I remember trying to use Application.url some time back in the application initalize event, only to find that it was null. But once I moved the code to to the creationComplete event, it

RE: [flexcoders] Get the Domain the Flex app is running in

2008-03-26 Thread Shiv Kumar
Ok, I tried creationComplete and still the same result. Thanks for the suggestion though. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Christian Sent: Wednesday, March 26, 2008 6:09 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Get the Domain the Flex

[flexcoders] VerticalAxis - Flex SDK 3 Release BUG

2008-03-26 Thread Rodrigo Pereira Fraga
Hi! I need multiple VerticalAxis in a LineChart, in Fx2 is impossible, But, when the Fx3 get out, this requirement has been implemented. So.. has a BUG! this requirement has to be dynamic, and when I remove an added verticalAxis, the display don't update. An image in attached:

Re: [flexcoders] BlazeDS configuration

2008-03-26 Thread shaun
Dominic Pazula wrote: I am getting the following error in BlazeDS: MessageBrokerServlet failed to initialize due to runtime exception: flex.messaging.license.InvalidLicenseException: Beta expired. I have a fully licensed profession copy of FB3. This BlazeDS installation is brand

[flexcoders] Basic authentication webservice in Flex

2008-03-26 Thread bauwensbrecht
Hey flexcoders, I'm using a webservice that need a login. Now I want to hardcode the username and password. I can't use the .setRemoteCredentials or .setCredentials... This doesn't work. Anybody with a idea how I can fix this? Thanks in advance!

Re: [flexcoders] VerticalAxis - Flex SDK 3 Release BUG

2008-03-26 Thread Tom Chiverton
On Wednesday 26 Mar 2008, Rodrigo Pereira Fraga wrote: The lineChart.verticalAxisRenderers, is an Array, I just remove a position and give me an error. Really ? Anyone in particular :-) ? -- Tom Chiverton Helping to revolutionarily transition virtual systems on:

[flexcoders] Re: BlazeDS configuration

2008-03-26 Thread Dominic Pazula
Posted there first. There seems to be very little activity there so I keep bringing it back here. --- In flexcoders@yahoogroups.com, shaun [EMAIL PROTECTED] wrote: Dominic Pazula wrote: I am getting the following error in BlazeDS: MessageBrokerServlet failed to initialize due to

Re: [flexcoders] [Offtopic] Flex Email Application

2008-03-26 Thread Max Frigge
Ok.. just uploaded a debug version to: http://mail.osfeeling.com/debug/ The only thing is that the login mechanism is still the same. Thus you will be redirected to the other version after creating a temp account. But once you have created it the session will also be accepted by the debug

[flexcoders] Re: BlazeDS configuration

2008-03-26 Thread meteatamel
FlexBuilder licensing has nothing to do with BlazeDS licensing. Actually, the official BlazeDS release does not even have license checks. BlazeDS had beta expiration checks when it was still in beta and this is the error you're running into. I know you mentioned that you have a fresh copy of

[flexcoders] Event fired when Object is created ?

2008-03-26 Thread Vaan S Lanko
Does anyone know whether there is an event fired when an object is instantiated ? I have objects that are created from an sqlite SQLEvent result. Presently I'm iterating over the results and calling the populateBar function manually, but it would be nice for the object to detect its been

[flexcoders] Re: BlazeDS configuration

2008-03-26 Thread Dominic Pazula
I will download it again and let you know. Thanks Dominic --- In flexcoders@yahoogroups.com, meteatamel [EMAIL PROTECTED] wrote: FlexBuilder licensing has nothing to do with BlazeDS licensing. Actually, the official BlazeDS release does not even have license checks. BlazeDS had beta

[flexcoders] Best practice for filtering a large dataset

2008-03-26 Thread Danny Gold
I have an ArrayCollection with a few thousand strongly typed VOs that is the dataProvider for a datagrid in our app. This ArrayCollection has a filterFunction specified and we have a few controls to help the user find the data they're looking for. As the dataset grows in size, it takes longer and

[flexcoders] Re: blazeds performance

2008-03-26 Thread netdeep
Yeah, I know at some point we need to reduce and optimize the data size. At this point its just the raw data that happens to be there. I'm sure that will help the performance, but eventually I'd like it to be close to real time in updating and that's why I was wondering if I might be

[flexcoders] Re: Forcing the Column Series to begin at -100 instead of zero

2008-03-26 Thread vic8427
--- In flexcoders@yahoogroups.com, vic8427 [EMAIL PROTECTED] wrote: I have a ColumnChart with the LinearAxis's minimum value set to -100 and the maximum value set to 100. I want the columns to begin at -100 instead of at 0 (which would be in the middle of the chart) even if the value

Re: [flexcoders] Best practice for filtering a large dataset

2008-03-26 Thread Tom Chiverton
On Wednesday 26 Mar 2008, Danny Gold wrote: operation? Would this even help me because the UI will be blocked while the filter is running anyways? I think I've optimized my You could break your filtering up into K chunks of N items, and use a ProgressBar to indicate something was happening.

[flexcoders] Re: BlazeDS configuration

2008-03-26 Thread cyrill.zadra
Hi, (1) Try to update your flex-*. librares in your WEB-INF/lib folder with the newest, which you'll find in blazeds.war. (2) Try to re-enter a the license key in Flexbuilder. --- In flexcoders@yahoogroups.com, Dominic Pazula [EMAIL PROTECTED] wrote: I will download it again and let you know.

Re: [flexcoders] Re: blazeds performance

2008-03-26 Thread Tom Chiverton
On Wednesday 26 Mar 2008, netdeep wrote: Yeah, I know at some point we need to reduce and optimize the data size. At this point its just the raw data that happens to be there. I'm sure that will help the performance, but eventually I'd like it to be close to real time in updating and that's

Re: [flexcoders] [Offtopic] Flex Email Application

2008-03-26 Thread Tom Chiverton
On Wednesday 26 Mar 2008, Max Frigge wrote: Ok.. just uploaded a debug version to: http://mail.osfeeling.com/debug/ Windows opened by double clicking a name in contacts drag, have hover effects on the three balls, and close OK. Windows opened by double clicking a message in the list don't

[flexcoders] Re: Singletone class in Application and Modules !?

2008-03-26 Thread lytvynyuk
Aha, that is the answer for my question! Thank you Manish ;) Thank you all guys for participating, I still have many things to learn, so I will be around for a while :) Is it true if I have singleton class instantiated in main application and in module, instances will be different? [snip]

[flexcoders] Re: Binding to Microphone

2008-03-26 Thread Jason The Saj
I too would love to know the answer to this. I'd like to BIND to the activityLevel of the camera.

[flexcoders] Topcoders and Flexcoders

2008-03-26 Thread Merrill, Jason
I just read this interesting artivle on ZDNet today on Topcoders, and they mention Flex developers are one of the types of developers Topcoders taps into. http://blogs.zdnet.com/enterprisealley/?p=124tag=nl.e622 Is anyone on this list linked into TopCoders as a developer, and if so, what has

RE: [flexcoders] Event fired when Object is created ?

2008-03-26 Thread Shiv Kumar
Vaan, Shouldn't the design of the object be such that it does that initialization you require when it gets instantiated? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Vaan S Lanko Sent: Wednesday, March 26, 2008 10:11 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Security setup for a Flex application

2008-03-26 Thread Fidel Viegas
Hello folks, I have finished implementing a Flex application and now the client has requested that it is made available publicly. I am using BlazeDS in the backend, and I was wondering what the best security setup would be to make it a secure application. Does anyone have any suggestion on how

[flexcoders] Re: BlazeDS configuration

2008-03-26 Thread Dominic Pazula
That's what I did yesterday. It worked until I shut down Tomcat. Then it wouldn't restart. --- In flexcoders@yahoogroups.com, cyrill.zadra [EMAIL PROTECTED] wrote: Hi, (1) Try to update your flex-*. librares in your WEB-INF/lib folder with the newest, which you'll find in blazeds.war.

RE: [flexcoders] drawing in Flex

2008-03-26 Thread Merrill, Jason
You can just add a sprite to a container and draw on that with basic Actionscript 3. look at Sprite.graphics.* Jason Merrill Bank of America GTO and Risk LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform Developer Community Are you a Bank of

Re: [flexcoders] [Offtopic] Flex Email Application

2008-03-26 Thread Max Frigge
Ahhmm.. that's a bit too short for me :-) What I understood: you can close a window opened by double click in contacts !? close button works but the other two don't!? hover effects work everywhere!? On Wednesday 26 Mar 2008, Max Frigge wrote: Ok.. just uploaded a debug version to:

Re: [flexcoders] [Offtopic] Flex Email Application

2008-03-26 Thread Max Frigge
sorry.. damn shortcut send the message but i was still writing. Bit clumsy today. So here we go again: What I understood: you can close a window opened by double click in contacts as well as dragging it.. (close button works but the other two don't!?) hover effects work everywhere.. and you

RE: [flexcoders] Re: Singletone class in Application and Modules !?

2008-03-26 Thread Tracy Spratt
I am trying to implement this in my singleton. How, where is SingletonEnforcer implemented? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick Winscot Sent: Wednesday, March 26, 2008 1:37 AM To:

RE: [flexcoders] Re: Get the Domain the Flex app is running in

2008-03-26 Thread Shiv Kumar
Rick, Ok, I get how the BrowserManager work from your explaination. However, this is not something I control unfortunately. I don't determine the url the user would type or got to in the browser. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick Winscot Sent:

[flexcoders] Re: BlazeDS configuration

2008-03-26 Thread cyrill.zadra
--- In flexcoders@yahoogroups.com, Dominic Pazula [EMAIL PROTECTED] wrote: That's what I did yesterday. It worked until I shut down Tomcat. Then it wouldn't restart. Mhh even you have no webapps like blazeds, ds-console and samples you still get the error?

Re: [flexcoders] Event fired when Object is created ?

2008-03-26 Thread Vaan S Lanko
Indeed in a normal case its a no brainer, but these objects are being created from the SQLResult event, hence why I am asking. Shiv Kumar wrote: Vaan, Shouldn’t the design of the object be such that it does that initialization you require when it gets instantiated?

RE: [flexcoders] Re: Automate build for large apps?

2008-03-26 Thread Gregor Kiddie
I've answered similar questions on flex coders in the past on using ant to dynamically generate file lists for compc. A straightforward search of Flex coders should turn it up. Gk. I don't see any other way to build .swc files without having to manually tell compc .exe which classes to

Re: [flexcoders] drawing in Flex

2008-03-26 Thread Willy Ci
thank you very much guys! it will help a lot! Willy On Wed, Mar 26, 2008 at 11:00 AM, Merrill, Jason [EMAIL PROTECTED] wrote: You can just add a sprite to a container and draw on that with basic Actionscript 3. look at Sprite.graphics.* Jason Merrill *Bank of America * GTO and

[flexcoders] Re: BlazeDS configuration

2008-03-26 Thread Dominic Pazula
No, just the webapps that come with it. So, yes to blazeds, etc. I'm making some progress. Redownloaded BlazeDS (same file name I had before (blazeds_turnkey_3-0-0-544.zip). Again, deleted the old folder and unzipped Blaze. This time Tomcat starts without the error. I'm sure there was some

RE: [flexcoders] Re: Get the Domain the Flex app is running in

2008-03-26 Thread Shiv Kumar
Rick, I can't seem to get to your blog post. When you say url to your app is that the url to the swf file or the url in the browser? I can't control the url in the browser. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick Winscot Sent: Wednesday, March 26,

Re: [flexcoders] [Offtopic] Flex Email Application

2008-03-26 Thread Tom Chiverton
On Wednesday 26 Mar 2008, Max Frigge wrote: you can close a window opened by double click in contacts as well as dragging it.. (close button works but the other two don't!?) New message from contacts works fine. All three balls and dragging. and you cant drag any other windows?? Not the

[flexcoders] Re: BlazeDS configuration

2008-03-26 Thread Dominic Pazula
I redownloaded the file. The file name was identical to what I had on my file system (blazeds_turnkey_3-0-0-544.zip). I deleted the old version. After re-unzipping, tomcat seems to start OK. I'm going to slowly add things to it until I find what is breaking it. Thanks for the help! --- In

Re: [flexcoders] Topcoders and Flexcoders

2008-03-26 Thread Mark Ripley
Judging from this chap, it's not that good at all: http://talkback.zdnet.com/5208-13617-0.html?forumID=1threadID=45981messageID=849311start=0 I usually avoid these sites - they're typically full of posts like we want a SimCity game writing, in three weeks, for $500. M -- Mark Ripley cheeky.gr

[flexcoders] Re: blazeds performance

2008-03-26 Thread netdeep
Thanks for the reply. Since you were pulling down 20K rows in less than 2 seconds in the benchmark app, it seems like I am certainly doing something wrong. I looked at the benchmark app and tried to emulate the way you measured the performance, however it looks like you are doing things a

[flexcoders] How to get data in initial function in Flex 3?

2008-03-26 Thread markflex2007
Hi, I am working for conver Application form Flex 2 to Flex 3. I have the following code,I can see in the dataGrid and ArrayCollection length in the label loopNumber,but why I can not get ArrayCollection length in initPage() for Flex 3 and the loop doesn't work. But I can get ArrayCollection

Re: [flexcoders] drawing in Flex

2008-03-26 Thread Richard Rodseth
See also http://graphics-geek.blogspot.com/ On Wed, Mar 26, 2008 at 8:28 AM, Willy Ci [EMAIL PROTECTED] wrote: thank you very much guys! it will help a lot! Willy

[flexcoders] Re: Singletone class in Application and Modules !?

2008-03-26 Thread dbronk
Look at the bottom of the DataManager class and you'll see: class SingletonEnforcer{} That should be the last line in your DataManager.as class, even outside the closing } for the DataManager class. It is called an inner class and is accessible by DataManager. Dale --- In

RE: [flexcoders] How do I remove an effect?

2008-03-26 Thread Gordon Smith
Try setStyle(effectName, undefined); Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Tuesday, March 25, 2008 6:25 PM To: flexcoders@yahoogroups.com Subject: Re:

RE: [flexcoders] Column header - two colors for text

2008-03-26 Thread Joan Lafferty
It's fairly simple if one of the words is a static word and the other comes from your dataProvider. You could use a headerRenderer on a DataGridColumn like this: mx:HBox xmlns:mx=http://www.adobe.com/2006/mxml; mx:Text text=column: color=#ff / mx:Text text={data.headerText}

[flexcoders] mx:SetProperty no longer works right in Flex3

2008-03-26 Thread Robert Csiki
The following code used to work in Flex2 and no longer works in Flex3 (i.e. the property does not gets set). Any ideas? Thank you mx:states mx:State name=displayState mx:SetProperty target={objectNameLabel} name=visible value={myValue}/

[flexcoders] Adding Object to ArrayCollection adding Two Objects

2008-03-26 Thread Mark Forsberg
I have an ArrayCollection that I've populated with an empty array: private var myArray:Array = []; [Bindable] private var approvers:ArrayCollection = new ArrayCollection(myArray); One of the functions in my app moves the item from one list (populated by an ArrayCollection) and moves it another

[flexcoders] Moving ROs CFCs from Flex - Flash CS3

2008-03-26 Thread qnotemedia
So I'm experimenting with moving my RemoteObject development to Flash CS3 instead of Flex. My main reasoning for this is filesize (300KB min with Flex vs 15KB min with Flash). Here's my problem. I currently use CFCs. With Flex, as long as the swfs are on the same server, I can set my CFCs

[flexcoders] Group Box

2008-03-26 Thread Raghu
Is there any possibility of having group box in flex? If possible can u please update how it can be done.

Re: [flexcoders] Re: Perl with Flex - with proper question

2008-03-26 Thread Anthony Ettinger
On Wed, Mar 26, 2008 at 2:03 AM, Manish Jethani [EMAIL PROTECTED] wrote: On 3/26/08, chandra shekar [EMAIL PROTECTED] wrote: my question was, how can i call a perl script running on a server. whether i should use http service or is there any other way. Call it using HTTPService.

Re: [flexcoders] Re: Perl with Flex - with proper question

2008-03-26 Thread Douglas Knudsen
or WebService calls with things like http://www.soaplite.com/ a SOAP framework for Perl DK On Wed, Mar 26, 2008 at 1:45 PM, Anthony Ettinger [EMAIL PROTECTED] wrote: On Wed, Mar 26, 2008 at 2:03 AM, Manish Jethani [EMAIL PROTECTED] manish.jethani%40gmail.com wrote: On 3/26/08,

[flexcoders] FlexBuilder Linux

2008-03-26 Thread Maciek
There are five days remaining on my FlexBuilder alpha 2 trial. From what I can see, there is still no version I can purchase. Will there be another alpha or a beta (or a GA release) soon? If not, what can I do when my trial expires? -- Maciek Sakrejda Truviso, Inc. http://www.truviso.com

[flexcoders] Re: getting authenticating error

2008-03-26 Thread Michael Labriola
Parag, Send me the code offline and I will help you debug. I am not sure I understand the issue currently. Mike --- In flexcoders@yahoogroups.com, Parag Metha [EMAIL PROTECTED] wrote: Hi All, I have written multiple login testcases using dpunit and using sequence as per sample

[flexcoders] Re: FDS:one-to-many with lazy evaluation

2008-03-26 Thread zdenekmikan
Eventually I have found this sample in the old FDS installation, but id does not use one-to-many, only one-to-one and many-to-one. I do not believe it is possible to implement one-to-many managed association using only fragments of information from LiveCycle® Data Services Developer's Guide.

  1   2   >