RE: [flexcoders] Big problem with OCX, Flash 8 release version

2005-10-27 Thread Robert Thompson
Thanks, but no I haven't had anything running and re-booted twice. I have noticed that the flashVersion returned seems to be 0 instead of 8.5 but that should not be problem when it's re-installed -- I was able to uninstall via regsvr32 but that didn't work; same problem. I'm familiar with the

Re: [flexcoders] Big problem with OCX, Flash 8 release version

2005-10-27 Thread Robert Thompson
I know what you mean Julian. I spent the 90's in blind faith, until I saw the documents I've seen which are under court seal right now. Believe me, as billg said it once in a tape I have which is public I can tell you as one of the big guys it's a dangerous world out there. Go figure what that

Re: [flexcoders] Popup Issue

2005-10-27 Thread David Harris
>From what I see... you code: function testTable(){var cReports:TitleWindow = TitleWindow(popupWindow (MyTest,false));} The third argument is a flag to indicate if the PopUp is Modal or not. You have false in there, so if you change that to true, it will be Modal EG: function

RE: [flexcoders] Problem with type casting a TreedataProvider back to array...

2005-10-27 Thread Matt Chotin
A TreeDataProvider cannot be an array. It has to be a single object that has a child array. So try creating an object like this: Var treeDetails:Object = {label: root}; treeDetails.children = treeList; get the array of details back: var arr:Array =

RE: [flexcoders] DataGrid Bug?

2005-10-27 Thread Matt Chotin
You should be looking into createChild, you cant do new for UI objects. Check out this page in the docs: http://livedocs.macromedia.com/flex/15/flex_docs_en/1064.htm Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of knly browne Sent:

RE: [flexcoders] HTTPS Flex Apps

2005-10-27 Thread Matt Chotin
If the web service is http and your swf is https youre going to need a crossdomain.xml file or youll need to go through the proxy (and if its not working turn on debugging in flex-config and check the logs). Matt From: flexcoders@yahoogroups.com

RE: [flexcoders] issue w/ two-way binding on checkboxes and radiobuttons?

2005-10-27 Thread Matt Chotin
The ViewStack might have something to do with it. Can you create a full example that shows the problem? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jaime Bermudez Sent: Thursday, October 27, 2005 12:59 PM To: flexcoders@yahoogroups.com

[flexcoders] Re: issue w/ two-way binding on checkboxes and radiobuttons?

2005-10-27 Thread Jaime Bermudez
Here's a sample app I created that illustrates the problem. Notice that you have to flip over to Panel 2, then back to Panel 1 for the checkbox and the radio button bindings to fire in Panel1. There are two files you need to compile 1) the main test app ?xml version=1.0

Re: [flexcoders] issue w/ two-way binding on checkboxes and radiobuttons?

2005-10-27 Thread Jaime Bermudez
As a follow-up, in the example provided the bindings work fine if the mx:Binding tags are commented out. The bindings also work if the initObj() method is called on a childrenCreated event of the Application, which I don't understand. Any idea on what's going on? On 10/27/05, Matt Chotin

RE: [flexcoders] Re: Two way data binding?

2005-10-27 Thread Matt Chotin
This doesnt work in the alpha but it will at some point. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml xmlns=* mx:Script ![CDATA[ [Bindable] public var sourceData:XML = items itemnameOne/nameprice100/price/item

RE: [flexcoders] Re: set Effect at runtime

2005-10-27 Thread Gordon Smith
Hi, Keishichi. I'm confused about why you're using that long dotted expression to get to the image. You should be able to simply specify id=image1 on the mx:Image and use that to refer to it; you would just write image1.getStyle(fontSize). (Also, what does the fontSize of an Image do?) The only

RE: [flexcoders] issue w/ two-way binding on checkboxes and radiobuttons?

2005-10-27 Thread Matt Chotin
Its just an ordering problem. The bindings from the checkbox to the data object are executing before the binding from the data to the checkbox. So the checkbox is winning this little fight. Its definitely an annoyance, youd like the data to take priority over the UI thats representing

Re: [flexcoders] Big problem with OCX, Flash 8 release version

2005-10-27 Thread JesterXL
Ok, so that's: - João Fernandes - Robert Thompson - Julian Suggate - Jesse Warden - Chrisemersonnc This proves it's not an isolated incident via 5 people have the exact same issue. At this point, I'll just pray that the Player Team figures this one out. Julian, and you could please tell me

Re: [flexcoders] 1.5 dev version

2005-10-27 Thread JesterXL
Apply for a non-commercial license if you wish to utilize FlexBuilder, otherwise, you can drop the .war file in Tomcat, and compile with Eclipse + Oxygen XML + ANT. FlexBuilder 2 will not require a server. - Original Message - From: Robert Thompson [EMAIL PROTECTED] To:

<    1   2