Re: [flexcoders] Send SMS

2010-06-28 Thread Matthew Muller
Or call a web service. Sent from my iPad mini On 27 Jun 2010, at 09:37, chenrij...@gmail.com wrote: The API should be able to access the COM port for it, AFAIK there aren't no solution for that yet, correct me if I'm wrong. Powered by Telkomsel BlackBerry® From: Smin Rana

[flexcoders] Disable the enter key mx:TextArea

2010-06-28 Thread cos_tan_10
Hi all, i try using keyUp listener and substring the text but sometimes i still can use the enter keyboard. if(event.keyCode == Keyboard.ENTER){ var txt:String = (event.currentTarget as TextArea).text; (event.currentTarget as TextArea).text=txt.substring(0,txt.length-1); } Can anyone help me?

[flexcoders] Melbourne Flex User Group Thursday

2010-06-28 Thread Dale Fraser
Melbourne Adobe Flex User Group this Thursday 1st July, Manipulating 2D objects in 3D space please RSVP @ http://mfug.groups.adobe.com/ Regards Dale Fraser http://dale.fraser.id.au http://dale.fraser.id.au http://cfmldocs.com/ http://cfmldocs.com http://learncf.com http://learncf.com

RE: [flexcoders] Disable the enter key mx:TextArea

2010-06-28 Thread Smin Rana
Hi your question is not cler. -Original Message- From: cos_tan_10 Sent: 06-28-2010 14:07:03 Subject: [flexcoders] Disable the enter key mx:TextArea Hi all, i try using keyUp listener and substring the text but sometimes i still can use the enter keyboard. if(event.keyCode ==

[flexcoders] Disable the enter key mx:TextArea

2010-06-28 Thread Andriy Panas
Because KeyboardEvents are not cancelable in Flash Player, you can listen instead for textInput event and prevent starting the new line if Enter key was pressed. / mx:Script ![CDATA[ private function txtInputHandler(event:TextEvent):void{ if

RE: [flexcoders] Working with date/Time in FB

2010-06-28 Thread Scott
I am using remoteobject. The following code returns the same timezone information as my workstation is in. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Paul Hastings Sent: Sunday, June 27, 2010 10:59 PM To:

RE: [flexcoders] Melbourne Flex User Group Thursday

2010-06-28 Thread Scott
I've always wanted to go to Australia! =) From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Dale Fraser Sent: Sunday, June 27, 2010 11:44 PM To: cfaus...@googlegroups.com; flexaus...@googlegroups.com; flexcoders@yahoogroups.com

Re: [flexcoders] How much does FXG affect performance?

2010-06-28 Thread dorkie dork from dorktown
i had seen this before but in the context of this thread it makes much more sense this time around: http://help.adobe.com/en_US/as3/mobile/index.html http://help.adobe.com/en_US/as3/mobile/WS4bebcd66a74275c36c11f3d612431904db9-7ffc.html On Wed, Jun 23, 2010 at 4:29 PM, dorkie dork from dorktown

[flexcoders] Re: Create a handler similar to focusIn/Out

2010-06-28 Thread aceoohay
Alex: Thanks for the pointer, I will investigate it further when I get to the office. If you have a link that shows someone doing what I am trying to do, that'd help a lot. Paul --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: [Event] metadata? On 6/27/10 8:48 PM,

Re: [flexcoders] Re: Create a handler similar to focusIn/Out

2010-06-28 Thread Fotis Chatzinikos
Here you are : In your custom component (custom comp is a panel in this example): ?xml version=1.0 encoding=utf-8? mx:Panel xmlns:mx= http://www.adobe.com/2006/mxml; xmlns:ns1=components.* width=1000 height=100% mx:Metadata [Event(name=expandMe, type=flash.events.DataEvent)] /mx:Metadata ...

[flexcoders] Flex version of excel spreadsheet?

2010-06-28 Thread Paul Andrews
I have a potential client who has an excel spreadsheet they'd like to make into a proper application, delivered via a web page. Problem is that they are protective of the formulas used in the spreadsheet and don't want them running on the client (I may talk to them about that again). As far as

[flexcoders] Re: line returns in a tooltip field

2010-06-28 Thread valdhor
Works for me in Flex 3.5. I copied and pasted your tooltip and got 3 lines. --- In flexcoders@yahoogroups.com, Scott h...@... wrote: I'm scratching my head on this one... Can't be any more simple than it is... http://livedocs.adobe.com/flex/3/html/help.html?content=tooltips_3.html

[flexcoders] Re: Create a handler similar to focusIn/Out

2010-06-28 Thread aceoohay
I think I understand. My components are as based not mxml based, but I get the idea. Instead of a metadata/setter/getter all I will need is a metadata tag. I will give it a try. Paul --- In flexcoders@yahoogroups.com, Fotis Chatzinikos fotis.chatzini...@... wrote: Here you are : In your

[flexcoders] Managing LCDS FlexSession with CF8

2010-06-28 Thread Brendan Meutzner
I am trying to figure out how to manage the session for a flex client which is connecting to lcds/coldfusion instance. I have determined the logic behind the problem, but can't figure out how to implement using CF8. I'd like to be able to track login/logout (browser close) via

Re: [flexcoders] Re: Compile Modules in AIR Project

2010-06-28 Thread Alex Harui
SWFs not in the application directory are not secure content and won’t load as a module. On 6/27/10 10:37 PM, jmfillman jmfill...@verizon.net wrote: Thanks for the reply, I have created a topic there. I tried creating a standard FB project, and linked the src folder to my AIR project.

[flexcoders] Re: Create a handler similar to focusIn/Out

2010-06-28 Thread aceoohay
I am trying this, but it is not showing up in intellisense. How can I make show up in intellisense? Paul --- In flexcoders@yahoogroups.com, aceoohay pa...@... wrote: I think I understand. My components are as based not mxml based, but I get the idea. Instead of a metadata/setter/getter

[flexcoders] Charting Line Segments

2010-06-28 Thread Jake Churchill
I've run into an issue that for the life of me I can't seem to figure out. I've been working on this same problem for days and I keep hitting a wall. I have a Cartesian chart with several LineSeries and a PlotSeries. The vertical axis is numeric and the horizontal is a category axis. The value

[flexcoders] Re: Create a handler similar to focusIn/Out

2010-06-28 Thread aceoohay
I had the [event] tag in the wrong place. I needs to go before the public class. Paul --- In flexcoders@yahoogroups.com, aceoohay pa...@... wrote: I am trying this, but it is not showing up in intellisense. How can I make show up in intellisense? Paul --- In

Re: [flexcoders] Charting Line Segments

2010-06-28 Thread Brendan Meutzner
Which LineSeries is affected? Have you isolated the line series on its own (don't add/load the others) and does it still occur? Have you tried creating a sub class from LineSeries and overriding the appropriate functions inside of it to try and trace out how each segment is loading? Brendan

Re: [flexcoders] Charting Line Segments

2010-06-28 Thread Jake Churchill
I haven't isolated just that series. I'll try that. I was however, trying to figure out which methods to override to see that. Do you know which method to override to see the line segments? I overrode updateData and that seems to set the data but it looks correct. The rendered data cache has

[flexcoders] can NOT change value of cell in grid while in edit mode

2010-06-28 Thread Bruce
I have 3 fields, Quantity, UM and Price, the price is calculated after I tab out of the UM field. It requires some database lookups and takes about a second. the problem is, I tab OUT of UM and INTO price, and it will NOT update the value once the cursor goes to the Price field and is in edit

Re: [flexcoders] Charting Line Segments

2010-06-28 Thread Brendan Meutzner
Hmmm... at runtime, have you inspected getAllDataPoints? Does the first (or last) line segment simply not show up? Does the hit data point still trigger if you mouse over the approximate area where it should be rendering? I'm curious to hear your results from isolating the line series and

Re: [flexcoders] Charting Line Segments

2010-06-28 Thread Jake Churchill
I can't override getAllDataPoints. I see that in Flex 3 but not 2. I assume that changed. When I isolated that series, I saw everything which made me search the data a bit more and there is a date/time generated by the server for the datevalue... The date was the same but the time was different

Re: [flexcoders] Charting Line Segments

2010-06-28 Thread Brendan Meutzner
It wouldn't be overriding getAllDataPoints, but rather just inspecting the array returned from it. Glad you got it working, Good stuff :-) On Mon, Jun 28, 2010 at 4:03 PM, Jake Churchill reyna...@gmail.com wrote: I can't override getAllDataPoints. I see that in Flex 3 but not 2. I

[flexcoders] Insert Record directly from dataGrid

2010-06-28 Thread mr hank
Hi All, I want to ask a question, how to input record directly from dataGrid? please help me..

[flexcoders] SecurityError: Error #2121

2010-06-28 Thread Clark Stevenson
Hi everyone. My problem seems pretty simple. Im trying to load a SWF into a SWFLoader in FB4. I get this error in the debug view locally, but also when on the test server. SecurityError: Error #2121: Security sandbox violation: Loader.content: http://domin/dir/tool.swf/[[DYNAMIC]]/2 cannot

Re: [flexcoders] Insert Record directly from dataGrid

2010-06-28 Thread Fernando Lobos
Use data service 2010/6/28, mr hank hank_gu...@yahoo.com: Hi All, I want to ask a question, how to input record directly from dataGrid? please help me.. -- Enviado desde mi dispositivo móvil

Re: [flexcoders] SecurityError: Error #2121

2010-06-28 Thread Alex Harui
In Flash, “domin” is not “domain” is not “domain.com” On 6/28/10 3:34 PM, Clark Stevenson a.scots...@gmail.com wrote: Hi everyone. My problem seems pretty simple. Im trying to load a SWF into a SWFLoader in FB4. I get this error in the debug view locally, but also when on the test