Re: [flexcoders] Printing Images

2006-10-15 Thread Samuel Reuben
Hi Nathan,   Can you please send me a sample code of what works and what doesn't. I'll be able to help you out.   Thanks, -sam  On 9/28/06, nathanpdaniel <[EMAIL PROTECTED]> wrote: I have an issue when printing images! I am working on a shipping app which will generate a barcode label for p

[flexcoders] how to convert string to number

2006-10-15 Thread Akash
Hi,   I am new to flex 1.5. I searched a lot for this conversion but didn’t get anything helpful. Actually I am accepting  text from the TextInput which accepts only the number. So I want to convert it to the number but how to do it in flex?   Akash, __._,_.___

RE: [flexcoders] Location of Flex Data Service Load Test Tool???

2006-10-15 Thread Matt Chotin
It’s not something we’ve publicly released yet.  I’m not sure what are plans are on that front, I’ll ask internally.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Steven Toth Sent: Sunday, October 15, 2006 10:00 PM To: flexcoders@

Re: [flexcoders] Manipulating data before it populates the DataGrid

2006-10-15 Thread Douglas Knudsen
'Since the datagrid dataprovider is an arraycollection'I don't mean to pick at this statement, but I was browsing through the source for DataGrid today, glutton for punishment I know.  The code trail eventually leads to ListBase.as.  In the dataProvider setter it appears that this is not always

Re: [flexcoders] Simple way to put a border around an image?

2006-10-15 Thread John Grden
p_target.graphics.lineStyle(1, 0xcc, 1.0);p_target.graphics.drawRect(0, 0, p_target.width, p_target.height);  That'll do it,jpgOn 10/16/06, dj <[EMAIL PROTECTED]> wrote: How do you do a simple border around an image, easiest way. Do I really have to use t

[flexcoders] Re: FDS/PHP/AMFPHP

2006-10-15 Thread Renaun Erickson
Mark, Your right again, I just came across it when the PHP release was made. I should have been more explicit, all the better to educate people new to it like me... Renaun --- In flexcoders@yahoogroups.com, "Mark Piller" <[EMAIL PROTECTED]> wrote: > > Renaun, > > Yes, that's the pricing breakd

[flexcoders] Location of Flex Data Service Load Test Tool???

2006-10-15 Thread Steven Toth
I just finished the Adobe whitepaper on Flex Data Services Capacity Planning: http://www.adobe.com/products/flex/whitepapers/pdfs/flex2wp_fdscapacity planning.pdf I have the MS Web Application Stress Tool, anyonw know where to get the Flex Data Service Load Test Tool repeatedly mentioned in the

Re: [flexcoders] Re: DataGrid HeaderRenderer and DataProvider

2006-10-15 Thread Harish Sivaramakrishnan
Creating varying number of datagrid columns is fairly straightforward. Datagrid will by itself draw the columns if you do  not specify the in your code. The columns will be created according to the properties that each dataProvider object contains. For displaying an icon on the header, you will

Re: [flexcoders] Manipulating data before it populates the DataGrid

2006-10-15 Thread Harish Sivaramakrishnan
I suggest you take a look at the fiterFunction and labelFunction methods on the datagrid. Since the datagrid dataprovider is an arraycollection, you can apply all utilities that are available on the arraycollection class to manipulate what you display in the datagrid finally HarishOn 10/16/06, A

[flexcoders] Simple way to put a border around an image?

2006-10-15 Thread dj
How do you do a simple border around an image, easiest way. Do I really have to use the Rect method for this? thanks, Patrick -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroup

[flexcoders] Re: Week-Number

2006-10-15 Thread wayne_badu_johnson
Hi This might get you started: // MM/DD/ - start and end dates dateDiff(new Date("01/01/2006"),new Date("03/01/2006")); public function dateDiff(startDate:Date, endDate:Date):void { var one_day:Number=1000*60*60*24; trace("Week :"+ getWeekNumber(endDate) + " (" + Math.ceil ((

RE: [flexcoders] problems assigning an object to an object

2006-10-15 Thread Dimitrios Gianninas
try: model.currentUser = Users(event.result); Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of boy_trike Sent: Sun 10/15/2006 10:43 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] problems assigning an object to an objec

[flexcoders] Is there a way to find an object if you know the name

2006-10-15 Thread Marlon Moyer
What's the equivalent of javascript's getElementById in Flex? I've searched the help files numerous times and can't seem to find it. Thanks -- Marlon -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/fl

[flexcoders] problems assigning an object to an object

2006-10-15 Thread boy_trike
[Bindable] public var model:ModelLocator = ModelLocator.getInstance(); private function processLoginResults( event : ResultEvent) : void { // model.currentUser = event.result as Users;

[flexcoders] AS3 Custom Tween API Available for download

2006-10-15 Thread efeminella
If you have had problems with the new Tween classes in Flex 2 and are looking for an alternative then this is for you. I have had some issues myself with the new Tween API so I developed a simple Custom Tween API which you can download at: http://www.ericfeminella.com/blog/2006/10/09/as3-custom-tw

[flexcoders] Re: FDS/PHP/AMFPHP

2006-10-15 Thread Mark Piller
Renaun, Yes, that's the pricing breakdown I am referring to. As for WebORB being a couple months old, that's not entirely accurate. The product has been around for more than three years. It used to be knows as FlashORB. Flex integration in WebORB is as young as Flex 2. Thanks, Mark --- In flexco

[flexcoders] Invalidating a control during a CPU intensive task.

2006-10-15 Thread Steve Kellogg @ Project SOC
Hello,   I’ve got a long CPU routine, and I’m using a progress bar to show the user that we’re making…. progress..   The PROBLEM is that the progress bar doesn’t seem to be updating until my long CPU TASK is complete (presumably because I’m not relinquishing the CPU during the routine

[flexcoders] Re: FDS/PHP/AMFPHP

2006-10-15 Thread Renaun Erickson
Mark, Thanks for the clarification. I remember reading about the editions somewhere now, and to put it together I assume you are refering to the edition breakdown at: http://themidnightcoders.com/licensing/ Where PHP will have these editions: WebORB Open Source Edition - free WebORB Professional

Re: [flexcoders] Manipulating data before it populates the DataGrid

2006-10-15 Thread Aaron West
If you're using an ArrayCollection to populate your grid you could always edit/adjust or otherwise manipulate the data in your event handler. For instance, if you're using Web services, you can loop the data coming from the server and manipulate it as you add it into your ArrayCollection. Or, as

[flexcoders] Re: DataGrid HeaderRenderer and DataProvider

2006-10-15 Thread Aaron West
No problem jelentz, check out the link I've provided below. While you are looking to dynamically set the dataProvider of a DataGrid the content of the article discusses a ComboBox. The takeaway from the article is how to create your own custom DataGrid class (by extending DataGrid) and then writi

[flexcoders] Multi line Checkbox component has black border around label text

2006-10-15 Thread Wally Randall
A while ago Darron Schall posted this component for extending the CheckBox to permit multiple lines. It works great. I have used this method to do the same feature with RadioButtons. However, the resulting box places a black border around the label text. How can I remove that black border?

[flexcoders] Re: Why am I getting an "error accessing null property"

2006-10-15 Thread boy_trike
I am only showing a code snippet. I have imported the Alert class and the I thought that the public var model:ModelLocator = ModelLocator.getInstance(); creates the var model. (I the debug view, I can see the model.currentUser Object so I assume it has ben created) Bruce --- In flexcode

RE: [flexcoders] FDS Shared Development License

2006-10-15 Thread Matt Chotin
Hi, it’s $10K per server as the list price.  Of course, everything is negotiable with your sales rep.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jermlawhorn Sent: Friday, October 13, 2006 8:05 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Why am I getting an "error accessing null property"

2006-10-15 Thread Shannon Hicks
Well, you haven't imported the Alert class, and also I don't see you initializing the ModelLocator   Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of boy_trikeSent: Sunday, October 15, 2006 4:24 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Why am I ge

[flexcoders] Why am I getting an "error accessing null property"

2006-10-15 Thread boy_trike
[Bindable] public var model:ModelLocator = ModelLocator.getInstance(); private function processLoginResults( event : ResultEvent) : void { model.currentUser = new Users(); model.current

[flexcoders] Re: FDS/PHP/AMFPHP

2006-10-15 Thread Mark Piller
Let me clarify that WebORB for PHP is available under BOTH GPL and a commercial license. If GPL requirements do not suit your needs, you can always license WebORB for PHP commercially. Thanks, Mark --- In flexcoders@yahoogroups.com, "Renaun Erickson" <[EMAIL PROTECTED]> wrote: > > No PHP packages

[flexcoders] Re: FDS/PHP/AMFPHP

2006-10-15 Thread Renaun Erickson
No PHP packages support the full functionality of Flex data access features, which Flex Data Services server provides. Part of Flex data access is RPC serivces, which includes Remoting. When it first came out, before Flex, it was called Flash MX Remoting. In Flex remoting is done by the RemoteOb

Re: [flexcoders] Re: getting printed versions of the docs

2006-10-15 Thread Paul Andrews
And what about the rest of us outside the US?  :-(   Paul - Original Message - From: greg h To: flexcoders@yahoogroups.com Sent: Sunday, October 15, 2006 7:32 PM Subject: [flexcoders] Re: getting printed versions of the docs Printed versions of the Flex 2 d

Re: [flexcoders] Re: Global keyboard event listener

2006-10-15 Thread Drew Miller
Thanks Krxtopher!  On 10/6/06, krxtopher <[EMAIL PROTECTED]> wrote: Drew,What you want to do is of course very common, but surprisingly, the way to pull it off isn'tvery obvious. In fact, even the documentation is a little inaccurate on this topic (at the timeof this writing). Here's a solution.

[flexcoders] Flex Data Services - Client.Data.UnderFlow

2006-10-15 Thread Aurélien BLOND
Hi there,   I’m currently trying to use Flex Data Services and Hibernate to link my web application with a MySQL database.   All Java classes are written and mapped to the database with hibernate. AS3 classes are written and mapped to Java classes with [Managed] and [RemoteClass(…)].

[flexcoders] Re: getting printed versions of the docs

2006-10-15 Thread greg h
Printed versions of the Flex 2 doc set can now be purchased for $50 online at: https://store1.adobe.com/cfusion/store/index.cfm?category=/Applications/FlexwithCharting&NR=0#view=ols_prod&categoryOID=1579184 The manuals included in this documentation set include the following 4 books: Develo

[flexcoders] remoting tutorials/examples

2006-10-15 Thread relisanhard52
Hi Can someone please send links to good tutorials and samples for remoting. I am having tough time here trying to make remote calls to my jboss server. I am following cairngorm2 model. I did 1. In my remote object tag, {userName.text}

Re: [flexcoders] Manipulating data before it populates the DataGrid

2006-10-15 Thread Douglas Knudsen
look at the labelFuntion attribute of the grid column tag. This give you the ability to massage the displayed value in a column.  You can also bind using a function if you need more done to the data provider like this: dataProvider="{ doSomething(myData) }"DKOn 10/14/06, iko_knyphausen <[EMAIL P

[flexcoders] Manipulating data before it populates the DataGrid

2006-10-15 Thread iko_knyphausen
Hi, what would be the best way to inspect and possibly manipulate data that gets populated into a DataGrid via data binding? This could be used to filter data, transform values, compute calculated fields etc. Is there a hook similar to the itemRenderer (which you could even 'abuse' for this, I g

[flexcoders] FDS/PHP/AMFPHP

2006-10-15 Thread jmfillman
I've tried all these tutorials, and can't get any of them to work. The PHP(http://www.adobe.com/devnet/flex/articles/flex2_php.html) article runs without errors but doesn't load data from the database or submit it, the AMFPHP (http://www.adobe.com/devnet/flex/articles/flex2_amfphp.html) exampl

[flexcoders] Re: How to invalidate ViewStack Pages

2006-10-15 Thread jlentz2112
Thanks for the explanation. That all makes sense, but what do you mean by using databinding to do the same thing? Thanks again for the explanation - it helped alot. jelentz --- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote: > > There is no function on the child pane tha

[flexcoders] Re: Where to Download Eclipse 3.1.x?

2006-10-15 Thread shemeshkale
i m running FlexBuilder 2.0 plug-in on Eclipse 3.2.0 and did not encounter any problems. i have installed the Eclipse 2.0 and the FlexBuilder as a plugin. are there any known problems/limitations to this setup ? --- In flexcoders@yahoogroups.com, "Dimitrios Gianninas" <[EMAIL PROTECTED]> wrote: >