Re: [flexcoders] Any issues with Windows 7(64bit) and Flex Builder

2009-11-18 Thread Paul Kukiel
I've been using Windows 7 ( 64bit ) and Flex 3 for several month's without issues both as standalone and plugins. Paul. On Wed, Nov 18, 2009 at 4:22 PM, Greg Hess flexeff...@gmail.com wrote: Hi All, I would like to replace my dev workstation with a farrari, slow compiles are killing me. I

[flexcoders] VideoEvent.READY

2009-11-10 Thread Paul Kukiel
I'm listing for VideoEvent.READY on mx:VideoDisplay Some times this event fires but the total time is still -1 it happens randomly. I foudn this as a possible solution : http://www.mail-archive.com/flexcompone...@yahoogroups.com/msg02779.html But it's not helping me as its still occuring.

Re: [flexcoders] Re: a simple way to search within a datagrid

2009-09-20 Thread Paul Kukiel
--- In flexcoders@yahoogroups.com, Paul Kukiel pkuk...@... wrote: This example might help http://tutorial7.flexcf.com/ Paul. On Sep 19, 2009, at 7:57 PM, ew6014 wrote: hi guys. ive been searching for a easy way to search within a datagrid and found an answer from flex 3 cookbook from

Re: [flexcoders] a simple way to search within a datagrid

2009-09-19 Thread Paul Kukiel
This example might help http://tutorial7.flexcf.com/ Paul. On Sep 19, 2009, at 7:57 PM, ew6014 wrote: hi guys. ive been searching for a easy way to search within a datagrid and found an answer from flex 3 cookbook from orielly. but for some strange reason it does not work. when i click

Re: [flexcoders] Re: Searching a DataGrid...

2009-09-09 Thread Paul Kukiel
This example may help get you started: http://tutorial7.flexcf.com/ Paul http://blog.kukiel.net On Wed, Sep 9, 2009 at 4:39 PM, turbo_vb timh...@aol.com wrote: Hi Larry, Usually this type of thing is done with a filterFunction on the dataProvider; which would eliminate items that don't

Re: [flexcoders] Add text on an image

2009-09-07 Thread Paul Kukiel
This shoudl help: http://www.bennadel.com/blog/775-Learning-ColdFusion-8-CFImage-Part-III-Watermarks-And-Transparency.htm Paul http://blog.kukiel.net On Sun, Sep 6, 2009 at 9:31 PM, kcg_21kcg...@yahoo.com wrote: Hi, I want to create an application that allow users to manually add text to

Re: [flexcoders] Switching from LCDS to Blazed DS

2009-08-21 Thread Paul Kukiel
I am considering the same move. I havnt watched/read it all yet but AAron West has some walkthroughs here: http://www.trajiklyhip.com/blog/index.cfm/2008/8/28/Integrating-BlazeDS-with-ColdFusion-8 Paul. On Aug 21, 2009, at 6:56 PM, jarottman wrote: So I am toying with the idea of

Re: [flexcoders] Embed image source with a url?

2009-07-30 Thread Paul Kukiel
private var imageHolder:BitmapData; var loader:Loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, saveImage); loader.load(new URLRequest(http://www.domain.com/icon.png;)); public function saveImage(event:Event):void { imageHolder=

Re: [flexcoders] Flex export to Excel

2009-06-11 Thread Paul Kukiel
Actually with Flash 10 you can do this. You can load and save directly in the browser and save client side with no backend. I have a short demo here: http://blog.kukiel.net/2009/02/file-manipulation-client-side-with.html I was playign with this a few months back. fileRef = new FileReference();

Re: [flexcoders] Re: Invoke RemoteObject synchronic

2009-05-28 Thread Paul Kukiel
That can't be done. You need to add a result handler to service.getData method and do your data manipulation in that method with the result of the remote object call. Paul. On 28/05/2009, at 1:52 PM, mhbmarcos wrote: i have a mxml component, and this have a textField, in the focusOut

Re: [flexcoders] Flex to excel sheet report

2009-05-18 Thread Paul Kukiel
Sure its possible to extract data from actionscipt to php here is a starting point hat may help you out. Of course you can send back the data to php and write a .cvs file and send that back you you want aswell. http://blog.kukiel.net/2009/01/flex-datagrids-and-excel-part-2.html Paul On Mon, May

Re: [flexcoders] Re: Flex to excel sheet report

2009-05-18 Thread Paul Kukiel
Actually Flash 10 allows you to write files client side. You could do this in the browser with no server if you wanted to and you have flash 10. Paul On 18/05/2009, at 4:57 PM, sminrana wrote: the current flash player version will not allow you write data into client application so

Re: [flexcoders] Creating RemoteObject in ActionScript as dataProvider for ComboBox

2009-04-02 Thread Paul Kukiel
A quick example that should get you going: import mx.rpc.remoting.RemoteObject; var ro:RemoteObject = new RemoteObject; ro.destination = ColdFusion; ro.source = com.company.ProjectData;

Re: [flexcoders] Re: is it not possible to upload a file to a flash app (no server)?

2009-03-26 Thread Paul Kukiel
Yes in FP10 and the 3.3 SDK you can load data client side. I have had trouble getting this to work on osx and linux though: http://blog.kukiel.net/2009/02/file-manipulation-client-side-with.html There are a few links on the entry to some decent references. Paul. On 26/03/2009, at 8:34 PM,

Re: [flexcoders] Re: Weborb

2009-03-25 Thread Paul Kukiel
I'm not sure why you need WebOrb for Cf - Flex communication. CF talk to Flex via AMF over remoteObejct calls out of the box. It can also push data to Flex by leveraging the inbuild LCDS bits. I'm told WebOrb for CF has some nice code generation but I am yet to look into it as CF and Flex just

Re: [flexcoders] Weborb

2009-03-25 Thread Paul Kukiel
There isn’t anything “built” into CF for push, but I could use livecycle in CF if I wanted to pay the large sum for it.  Regards,    Scott Push is part of CF install. I have apps where I am pushing data to Flex with CF8 Standard. It all depends of your needs and loads. If you want a

Re: [flexcoders] Cursors and datagrids

2009-03-19 Thread Paul Kukiel
Does this example help at all: http://tutorial7.flexcf.com/ Paul On 19/03/2009, at 11:39 AM, Jason Nichols wrote: I'm not sure if I'm missing something regarding cursors and datagrids... I'm trying to implement a 'find within datagrid functionality' generically. I had things working

Re: [flexcoders] Re: Ribbon in FLEX

2009-03-13 Thread Paul Kukiel
I believe Jeffery Houser is in the process of building a Ribon like the Office one for Flex and in 20 mins he has a live Demo and QA of his latest Flex creations: Flextras: Flextras Friday Meetup in 1 hour. Today: Mind Mapping an API http://is.gd/iDhV Random QA to follow Meeting URL:

Re: [flexcoders] May I install Flex Builder 3 and Flex Builder 4 in same computer?

2009-03-12 Thread Paul Kukiel
Yes you can on windows at least. They work fine side by side. Paul On Thu, Mar 12, 2009 at 10:08 AM, markflex2007 markflex2...@yahoo.com wrote: I hope they works independently and do nor affect each other. Thanks for your help Mark

Re: [flexcoders] flex + mysql unicode support

2009-03-12 Thread Paul Kukiel
Yes it's possible I have a multi language application and have several double byte languages displaying in flex datagrids via coldfusion. Paul On Wed, Mar 11, 2009 at 8:32 PM, cvsikh sonofgurugobindsing...@hotmail.com wrote: Hello all, I am displaying data from mySql database. This data some

Re: [flexcoders] May I install Flex Builder 3 and Flex Builder 4 in same computer?

2009-03-12 Thread Paul Kukiel
At Max in Nov 2008. It was for Max Attendees only. On Thu, Mar 12, 2009 at 10:33 AM, Romuald Quantin soundstep.mail...@googlemail.com wrote: Where did you get a copy, is there any way I can try it as well? Romu Paul Kukiel wrote: Yes you can on windows at least. They work fine side

Re: [flexcoders] Resize image

2009-03-09 Thread Paul Kukiel
This can be done with the client in Flex with Flash 10 but most more commonly is done server side. Here is a rough prototype I put together a few weeks back. It required Flash 10 and so far is only working in Windows: http://blog.kukiel.net/2009/02/file-manipulation-client-side-with.html Paul.

Re: [flexcoders] rss feed from various sources in flex

2009-03-06 Thread Paul Kukiel
Use cffeed in coldfusion then send it to Flex via remote obejct for example. This avoids the crossdomain issue with reading rss feeds directly within the flex client. Paul. On Fri, Mar 6, 2009 at 6:08 AM, stinasius stinas...@yahoo.com wrote: hi how can i create an rss feed reader that gets feed

Re: [flexcoders] Sending POST requests to php script??Help

2009-02-28 Thread Paul Kukiel
You nee to put { } around the variables ie: mx:request xmlns= first{modelName.name.first}/first last{modelName.name.last}/last email{modelName.email}/email /mx:request Paul On 28/02/2009, at 2:09 PM, fprihoda wrote: The following code is not working as I would expect it to. mx:HTTPService

Re: [flexcoders] Tons of errors using FlexBuilder on Ubuntu

2009-02-25 Thread Paul Kukiel
Did you install into Eclipse 3.3 or 3.4 because it only works with 3.3. When i tried with the apt-get install eclipse version with Ubuntu I got lots or errors but when i manually setup 3.3 FB worked correctly. Ubuntu 8.10 Paul.

Re: [flexcoders] UPS shipping online tools example?

2009-01-20 Thread Paul Kukiel
If you are using Coldfusion as he backend there is this project available: http://cfups.riaforge.org/ Paul. On 20/01/2009, at 10:34 PM, luvfotography wrote: Hi, has anyone integrated the UPS online tools with FLEX?? Or is there any other easy solution to figure out shipping charges for an

Re: [flexcoders] How to Push database update/insert into Datagrid using LCDS.

2009-01-06 Thread Paul Kukiel
Here is an example using LiveCycle with Coldfusion: http:// sherifabdou.com/2008/07/understanding-flex-data-management-by-using- coldfusion-livecycle/ Paul. On 06/01/2009, at 9:01 PM, bonny_us wrote: Hi All, Anyone have idea, how can i push my MYSql database update/insert into Datagrid

Re: [flexcoders] Install both Flex 2 and Flex 3

2009-01-05 Thread Paul Kukiel
In the properties of the Flex Project (in FB3 ) you can specify Flex 2 or 3 as the compiler. Paul. On Mon, Jan 5, 2009 at 3:52 PM, jwc_wensan jwcaldw...@zingit.com wrote: I have installed FlexBuilder 3 on my new PC. Can I go back and also install FlexBuilder 2 without messing anything

[flexcoders] Flex dates and time zones.

2008-12-15 Thread Paul Kukiel
I have a date in a server in Australia: 22/12/2008 12:00:00 AM I am using this label function for the grid to try and fix the time zone issue but my date always comes back to me as 21/12/2008 in the datagrid. I really just wan the exact date from the database regardless of where I am in the

Re: [flexcoders] Flex dates and time zones.

2008-12-15 Thread Paul Kukiel
. Paul. On 15/12/2008, at 7:46 PM, Tracy Spratt wrote: Pass the date as a string. Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Paul Kukiel Sent: Monday, December 15, 2008 3:17 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex dates

RE: [flexcoders] Auto expand TreeView on open - How?

2008-12-06 Thread Paul Kukiel
I was stuck with this aswell a while ago this is my solution: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=init() mx:Script private function init():void{

RE: [flexcoders] Flex 3 - Export to Microsoft Excel?

2008-12-03 Thread Paul Kukiel
at the same time? Thanks. -David. _ From: Paul Kukiel [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, December 1, 2008 2:45:49 PM Subject: RE: [flexcoders] Flex 3 - Export to Microsoft Excel? I use this method: http://blog. kukiel.net/ blog/2008/ 11/24/Flex- Data

RE: [flexcoders] Flex 3 - Export to Microsoft Excel?

2008-12-01 Thread Paul Kukiel
I use this method: http://blog.kukiel.net/blog/2008/11/24/Flex-Data-grids-and-Excel Paul. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sailorsea21 Sent: Monday, 1 December 2008 1:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 3 - Export to

[flexcoders] ArryCollection Columns.

2008-11-06 Thread Paul Kukiel
I wish to loop over an array collection and access all the elements (columns) so the arrayCollection looks like [1].columnOne [1].columnTwo [1].columnThree [2].columnOne [2].columnTwo [2].columnThree I need to loop over the rows and columns, but don't know the column names, any ideas. The

RE: [flexcoders] Re: ArryCollection Columns.

2008-11-06 Thread Paul Kukiel
-dimensional arrays or arrays of objects? If the former, see the docs: http://livedocs.adobe.com/flex/3/html/help.html?content=10_Lists_of_data_5.h tml#119820 --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Paul Kukiel [EMAIL PROTECTED] wrote: I wish to loop over an array

RE: [flexcoders] Re: ArryCollection Columns.

2008-11-06 Thread Paul Kukiel
to a structure in which case you would be able to return an array or structure key containing the columns. Paul Kukiel wrote: No. It's a simple array collection. Ie a ColdFusion query being passed back to Flex. Eg Select firstName, lastName, age From person

RE: [flexcoders] Re: ArryCollection Columns.

2008-11-06 Thread Paul Kukiel
] Re: ArryCollection Columns. hello Paul, try the following: for (var key:String in object) { data = object[key] ; } where object is your arraycollection item ie ac[0] On Thu, Nov 6, 2008 at 10:49 PM, Paul Kukiel [EMAIL PROTECTED] wrote: I have been using describeType for VO's

RE: [flexcoders] Re: ComboBox in Component won't open to Saved Value

2008-10-08 Thread Paul Kukiel
Take a look at Ben Forta's extended comboBox: http://www.forta.com/blog/index.cfm/2006/11/22/Flex-ComboBox-With-selectedVa lue-Support Paul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Thursday, 9 October 2008 2:51 PM To:

RE: [flexcoders] Re: Combobox does not hold selected item

2008-09-23 Thread Paul Kukiel
I have had this problem before I now use this Combobox by Ben Forta: http://www.forta.com/blog/index.cfm/2006/11/22/Flex-ComboBox-With-selectedVa lue-Support Perhaps take a look. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Wednesday, 24

[flexcoders] Restrict NumericStepper to only numeric characters

2008-06-25 Thread Paul Kukiel
Anyone know a simple way or a prebuilt adaption of NumericStepper that restricts Restrict NumericStepper to only numeric characters only. I need to stop the user inputting commas. Paul.

RE: [flexcoders] Restrict NumericStepper to only numeric characters

2008-06-25 Thread Paul Kukiel
to only numeric characters I can't think of a supported way to do it, but you can subclass, get the mx_internal inputField, and change its .restrict property _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Kukiel Sent: Wednesday, June 25, 2008 7:53 PM

RE: [flexcoders] SSL and Flex

2008-05-07 Thread Paul Kukiel
I found when moving from dev to production ( ie changing from non ssl to ssl ) I had to completely exist Flexbuilder edit the config file to look like this: default-channels channel ref=my-cfamf-secure/ /default-channels destination id=ColdFusion channels

[flexcoders] Repeater

2008-02-26 Thread Paul Kukiel
Hi, I have a repeater: mx:HBox top=10 bottom=40 left=10 right=10 mx:Repeater id=productsRepeater dataProvider={languageData} mx:Button id=buttonsArray label={productsRepeater.currentItem.name} toggle=true / /mx:Repeater /mx:HBox

Re: [flexcoders] Re: createPopUp question

2008-02-08 Thread Paul Kukiel
. centerPopUp( helpWindow) ; } I am getting: 1046: Type was not found or was not a compile-time constant: WhatToShow. --- In [EMAIL PROTECTED] ups.com, Paul Kukiel pkukiel@ wrote: Try this: var helpWindow:WhatToSh ow = WhatToShow(PopUpMan ager.createPopUp (parent, WhatToShow, true

RE: [flexcoders] Remoting over SSL

2008-02-07 Thread Paul Kukiel
Anyone? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Kukiel Sent: Wednesday, 6 February 2008 12:51 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Remoting over SSL Ok I figured it out I removed the endpoint from the RemoteObject tag and it worked

RE: [flexcoders] createPopUp question

2008-02-07 Thread Paul Kukiel
Try this: var helpWindow:WhatToShow = WhatToShow(PopUpManager.createPopUp(parent, WhatToShow, true); PopUpManager.centerPopUp(helpWindow); Paul. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Friday, 8 February 2008 4:56 AM To:

[flexcoders] Remoting over SSL

2008-02-05 Thread Paul Kukiel
Hi, I'm having an issue using remote objects over ssl. I have got this to work in FireFox but not in IE. I have searched around and have added add-no-cache-headersfalse/add-no-cache-headers to the properties tag of channel-definition but it's still not working. This is the error I am

RE: [flexcoders] Remoting over SSL

2008-02-05 Thread Paul Kukiel
Ok I figured it out I removed the endpoint from the RemoteObject tag and it worked. However it won't work when I compile as Air. Is anyone using Remote Objects over SSL in air? Any good references? Paul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul

[flexcoders] Capturing a restore event.

2008-01-23 Thread Paul Kukiel
I have an air app that when I minimize to the task bar I start a timer. I would like to be able to capture a restore window event is what should I be looking for. Paul.

Re: [flexcoders] Adding several NumericSteppers = Total

2008-01-13 Thread Paul Kukiel
Isn't value of NumericRepeater of type Number not String. ie: private function stepperSumFun( val1:int, val2:int, val3:int, val4:int, val5:int):Number { return (val1+val2+val3+val4+val5); Also the function name in Action script is stepperSumFun but you call stepperSunFunc On