[flexcoders] Video Fullscreen Problem

2010-06-29 Thread venkat eswar
Hi, I will explain in detail.Please go through this link http://www.clients.iscripts.com/jude_videochat/index.html and click Start Video Chat  Button. Please provide a username and roomname and then click login. On login you will enter in Chat. There video component is shown. On mouse over there i

Re: [flexcoders] How to check if display object is visible to the user?

2010-06-29 Thread Oleg Sivokon
Something like: root.getRect(stage).intersects(clip.getRect(stage)) && clip.visible && clip.alpha I'm not sure about mask / clipRect / ColorMatrixFilter (they all may make the clip appear as invisible) + of course, there may be another display object on top of the clip, which you can roughly check

[flexcoders] How to check if display object is visible to the user?

2010-06-29 Thread dorkie dork from dorktown
Let's say I have 10 images in a list. Only one is visible to the user. If I have a fade in effect I want to add to that image on load complete is there a way to see if the component is visible to the user so then on those instances i'm not running the fade in effect? JP

[flexcoders] Re: Pass two arraycollections to one component

2010-06-29 Thread turbo_vb
Have you tried just one instance of the component? -TH --- In flexcoders@yahoogroups.com, "Liam" wrote: > > I need to pass two separate arraycollections to one component. I'm sure this > is possible but I can't find anything online as to how to do this. > > I thought I could do this but it o

[flexcoders] list event listener(s) for an event type?

2010-06-29 Thread Technusiast
Hello, These are more of AS3 questions, but probably useful for Flex: Is it possible to have more than one active event listener for the same event type on the same event dispatcher instance? Is it possible to list all the listener functions ( 1 or all ) for a particular event type? Thanks.

[flexcoders] Switch from Flex 3.2 SDK to 3.5 causing problems

2010-06-29 Thread pestrada2k
Hi, We recently rebuilt our app using the Flex 3.5 SDK (from 3.2), and now the app hangs. After trial and error commenting out code, setting the data used by the AdvancedDataGrid data provider seems to be the problem but no errors are displayed and the app eventually times out. I searched the b

[flexcoders] Pass two arraycollections to one component

2010-06-29 Thread Liam
I need to pass two separate arraycollections to one component. I'm sure this is possible but I can't find anything online as to how to do this. I thought I could do this but it only displays the last arraycollection: >From main application: With such little information, any suggestions? Can

[flexcoders] Re: DataGrid decides not to render on some occasions

2010-06-29 Thread atomilux
Other oddities I forgot to mention: 1) It renders fine when I build and test locally but only does the crash and burn when it's online. 2) Sometimes the aforementioned DataGrid never even renders.

[flexcoders] DataGrid decides not to render on some occasions

2010-06-29 Thread atomilux
We're dynamically instantiating components 1 or more times in our application depending on user inputs. In some instances, the component's DataGrid decides not to render. I know the DataGrid IS there because it can be accessed and can have its height manipulated, accept additions to the dataProv

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

2010-06-29 Thread Tom Chiverton
On Tuesday 29 Jun 2010 16:42:16 you wrote: > Sorry, you did not understand my problem. I DO want to allow the user to > edit the field. BUT I want to calculate a DEFAULT value. My problem is > that once the cursor in on this CELL and I try to changed the value in > action script (dgOrders.select

Re: [flexcoders] Flex version of excel spreadsheet?

2010-06-29 Thread Paul Andrews
On 29/06/2010 15:53, Gregor Kiddie wrote: How about running open office on your back end, having it open the spreadsheet on request and doing the work there? It's an interesting idea. I'll check it out. Paul Gk.

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

2010-06-29 Thread Bruce
Sorry, you did not understand my problem. I DO want to allow the user to edit the field. BUT I want to calculate a DEFAULT value. My problem is that once the cursor in on this CELL and I try to changed the value in action script (dgOrders.selectedItem.price = XXX), it does NOT update the gri

Re: [flexcoders] Flex version of excel spreadsheet?

2010-06-29 Thread Paul Andrews
On 29/06/2010 15:49, Tom Chiverton wrote: On Monday 28 Jun 2010 14:51:29 you wrote: > As far as I know the only way to make use of what they have is > to build a Java calculation engine that runs on the server and takes > inputs from the Flex front end and returns the outputs. As long as they

Re: [flexcoders] Flex version of excel spreadsheet?

2010-06-29 Thread Paul Andrews
On 29/06/2010 15:20, Andriy Panas wrote: Have a look at AS3XLS library http://code.google.com/p/as3xls/ Example of the usage: http://ippblog.intuit.com/blog/2010/06/flex-to-excel-or-excel-to-flex-now-that-is-the-question.html -- Best regards, Andriy Panas That's an interesting idea, but I n

Re: [flexcoders] Flex version of excel spreadsheet?

2010-06-29 Thread Jeffry Houser
Paul, I'd love to find out more off-list. The next Flextras component will be a Spreadsheet; however your described use case is not something we considered. We've been designing it so that formulas are easily accessible; just like Excel. Our implementation does support disabled cells, so

RE: [flexcoders] Flex version of excel spreadsheet?

2010-06-29 Thread Gregor Kiddie
How about running open office on your back end, having it open the spreadsheet on request and doing the work there? Gk.

Re: [flexcoders] Flex version of excel spreadsheet?

2010-06-29 Thread Tom Chiverton
On Monday 28 Jun 2010 14:51:29 you wrote: > As far as I know the only way to make use of what they have is > to build a Java calculation engine that runs on the server and takes > inputs from the Flex front end and returns the outputs. As long as they don't mind telling someone else (under NDA / n

Re: [flexcoders] Flex version of excel spreadsheet?

2010-06-29 Thread Andriy Panas
Have a look at AS3XLS library http://code.google.com/p/as3xls/ Example of the usage: http://ippblog.intuit.com/blog/2010/06/flex-to-excel-or-excel-to-flex-now-that-is-the-question.html -- Best regards, Andriy Panas On 29 June 2010 17:10, Paul Andrews wrote: > > > On 29/06/2010 10:43, dorkie

Re: [flexcoders] Send SMS

2010-06-29 Thread Tom Chiverton
On Sunday 27 Jun 2010 09:37:59 you wrote: > The API should be able to access the COM port for it, AFAIK there aren't no > solution for that yet, You can bundle native programs with AIR2, and use that to provide a bridge to the COM port. -- Tom Chiverton Helping to confidentially create third-ge

Re: [flexcoders] Flex version of excel spreadsheet?

2010-06-29 Thread Paul Andrews
On 29/06/2010 10:43, dorkie dork from dorktown wrote: all your questions will be answered with google spreadsheets and google domain key... The idea is that the user has a slick UI and doesn't have access to the formulas, so I'm not sure Google Spreadsheets helps. Ideally I need a spreads

[flexcoders] Video Fullscreen problem

2010-06-29 Thread venkat eswar
I have done a Video chat application.I have added full screen options to all videos.My problem is on clicking the Fullscreen button, the Application will be in Fullscreen Mode not the video. How to solve this. Code is shown below In my Videopod component i have given like this  private function

[flexcoders] Problem with custom cursor in AIR

2010-06-29 Thread reflexactions
So I have a flex web based app and an AIR app, both use some custom cursors (FB4/SDK3.2/AIR2). The images for the cursors are in an external runtime loaded CSS. The web app loads the CSS from it start directory, the AIR app picks them up straight from the installation directory, they are both

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

2010-06-29 Thread Scott
Thanks for your help everyone. I found the issue and it's fixed. The JVM has a bug in it and required upgrading it on the server. Now if I can stop getting these silly timewasting bugs I can finish my project! =) Thanks a ton! From: flexcoders@yahoogroup

Re: [flexcoders] Flex version of excel spreadsheet?

2010-06-29 Thread dorkie dork from dorktown
all your questions will be answered with google spreadsheets and google domain key... On Mon, Jun 28, 2010 at 8:51 AM, Paul Andrews wrote: > > > 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 t

Re: [flexcoders] SecurityError: Error #2121

2010-06-29 Thread Clark Stevenson
Hey your right :) If i goto http://domain.com/tool.html It will throw errors when loading SWFs but if i goto: http://www.domain.com/tool.html It works perfectly. Never seen that before so its new to me. Thanks for your input. Clark. On 29 June 2010 09:09, Clark Stevenson wrote: > > I

[flexcoders] Any PHP developers who knw ColdFusion and can help me convert this php code

2010-06-29 Thread ZIONIST
hi guys i am developing an eCommerce app using flex and ColdFusion and i would like to use PayPal as a way to make payments. i stumbled on a very nice tutorial on how to Integrate PayPal Express Checkout with Flex and Adobe AIR (http://www.adobe.com/devnet/flex/articles/flex_paypal_02.html). the

Re: [flexcoders] SecurityError: Error #2121

2010-06-29 Thread Clark Stevenson
I allowed every single combination i could think of: "domain.com" "http://domain.com"; "http://www.domain.com"; "www.domain.com" and so on, even "*" Still the same error :( On 29 June 2010 06:35, Alex Harui wrote: > > > In Flash, “domin” is not “domain” is not “domain.com” > > > On 6/28/10 3

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

2010-06-29 Thread Sefi Ninio
Sounds like the price is calculated value and should not be editable to the user.. If that is the case, try making the price column non-editable. On Mon, Jun 28, 2010 at 11:41 PM, Bruce wrote: > > > I have 3 fields, Quantity, UM and Price, the price is calculated after I > tab out of the UM fiel