[flexcoders] Datagrid how to get access to cellRenderer instance

2006-02-28 Thread t_msreddy
I have a cellRenderer in Datagrid column which has text box and an image. I want to implement focus on tab key. I dont know how to do it. The only way i thought was to get the instance of cell renderer for that cell(itemIndex, columnIndex) and do FocusManager.setFocus (cellRendererInstance.MyTex

[flexcoders] Flex2 bug report: TabBar selectedIndex

2006-02-28 Thread Dion Mendel
Hi All, Firstly, is there more appropriate place to report bugs with Flex2 other than here or the web form at http://www.macromedia.com/cfusion/mmform/index.cfm?name=wishform Flex 2 beta1 - TabBar bug report. The code below should create a TabBar with the 2nd tab selected. The TabBar is creat

Re: [flexcoders] Re: Full dynamic tree example

2006-02-28 Thread Pat Buchanan
Hari!  That worked like a charm.  THANK YOU!  Saved me hours of pain.  Hopefully this will help others down the road as well.   -Pat  On 2/27/06, Hari Kolasani <[EMAIL PROTECTED]> wrote: Here is a sample .mxml/as  code that worked for me.  Hope this will help.- Hari**

RE: [flexcoders] Manually setting selected row in DataGrid

2006-02-28 Thread Matt Chotin
You might need to wait a frame or two after the DP has been set before setting the selectedItem/Index. Try using a doLater and see how that goes. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of feuille76 Sent: Tuesday, February 28, 2006 5:09 PM T

RE: [flexcoders] Re: Exception using checkbox as cellEditor in DataGrid (2.0b1)

2006-02-28 Thread Matt Chotin
Might be a known bug. Any chance you can provide a sample file for us to test against? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Tuesday, February 28, 2006 3:49 PM To: flexcoders@yahoogroups.com Subject: [flexcod

RE: [flexcoders] Flex 2: is there a way to know when a client disconnects?

2006-02-28 Thread Matt Chotin
In Beta 2 there is a new FlexSession object where you can attach listeners for session creation and destruction.  It won’t be done via messaging though.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tom Bray Sent: Tuesday, February

RE: [flexcoders] What is "ObjectEvent.property" property?

2006-02-28 Thread Matt Chotin
Yes, QName is usually the other type. But we use * for the parameter type to match what the Player does in its Proxy class. You're probably right that we should match them up. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Vadim Melnik Se

RE: [flexcoders] flex 1.5, custom-auth, and JRun

2006-02-28 Thread Matt Chotin
Maybe you can edit gateway-config.xml and set the error level on the logging up to Fatal? I'm not sure who's logging that, I checked the JRun module and I don't think it comes from us. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Douglas

RE: [flexcoders] Delete popup issue in Flex 1.5

2006-02-28 Thread Matt Chotin
parentDocument.deletePopUp() maybe? Depending on component nesting it may be two parentdocuments. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robs Sent: Tuesday, February 28, 2006 7:47 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] D

[flexcoders] Re: About ApplicationDomain.getClass method

2006-02-28 Thread sn197412
Hi, Thank you for replay. > Beta 2 will have some player API changes that clarify all this, and > introduce an explicit notion of a security domain. > > -rg I wish that setting of this security feature is able to be chosen by a developer. I mean, I want to build "Flash application" that can acce

RE: [flexcoders] ActionScript 3 Value Object Generator

2006-02-28 Thread Dekayd Media Inc.
Is there any way to get this thing to generate the files under the same folder structure that their corresponding Java files would be created in? Say I have: myProject-- --src --com --myNamespace --myFile.hbm.xml

[flexcoders] Manually setting selected row in DataGrid

2006-02-28 Thread feuille76
Hi, In my application, when a user clicks on a row in a DataGrid, the "onCellPress" event is caught and a roundtrip to the server is triggered. Upon returning from the server, I would like to manually set the selected row when the DataGrid is reloaded. Is it possible? I have tried setting t

[flexcoders] especial caracters on AMFPHP

2006-02-28 Thread jf.saldanha
Hi I know that this is not the place certain to make this question but: Need some help on AMFPHP. I have everything run Ok with Flex with this last example of Mike Potter: http://blogs.adobe.com/mikepotter/2006/02/flex_and_php_us.html But AMFPHP dont make array object with especial caracter l

[flexcoders] Re: 'A flex server couldn’t be found at the url' error

2006-02-28 Thread Renaun Erickson
It can't find your Flex Framework classes. Usually found at {App_Root}/WEB-INF/flex/flexworks/mx.swc Or maybe {App_Root}/WEB-INF/flex/system_classes/ Not sure how Flex Builder does the deployments with the internal Jrun. But when you install the Flex 1.5 you can find a flex.war that will deploy

[flexcoders] Re: Exception using checkbox as cellEditor in DataGrid (2.0b1)

2006-02-28 Thread thunderstumpgesatwork
As usual, forgot to mention - Flex2 Beta1 Thunder --- In flexcoders@yahoogroups.com, "thunderstumpgesatwork" <[EMAIL PROTECTED]> wrote: > > Hi all, I have set up a "selected" column in a datagrid and am using a > checkbox as the cell editor. Clicking around on different rows of the > datagrid pro

[flexcoders] Exception using checkbox as cellEditor in DataGrid

2006-02-28 Thread thunderstumpgesatwork
Hi all, I have set up a "selected" column in a datagrid and am using a checkbox as the cell editor. Clicking around on different rows of the datagrid produced this error: ReferenceError: Error #1069: Property text not found on mx.controls.CheckBox and there is no default value at mx.controls::Data

[flexcoders] Re: problem with cell renderer in ComboBox

2006-02-28 Thread george_lui
Just sharing the solution I got for this with Flex Support. I basically just used the labelFunction attribute. function formatName( item ) : String { return item.firstName + " " + item.lastName; } I still wondering why the cellRenderer solution didn't work. cheers, George ---

[flexcoders] Re: repost - ColumnChart MOUSE_OVER_DATA event bug (2.0b1)

2006-02-28 Thread thunderstumpgesatwork
Excellent! I'll be waiting for it then! =) Thunder --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > QA says looks like it's fixed in B2. > > -Original Message- > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Matt Chotin > Sent: T

RE: [flexcoders] repost - ColumnChart MOUSE_OVER_DATA event bug (2.0b1)

2006-02-28 Thread Matt Chotin
QA says looks like it's fixed in B2. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Tuesday, February 28, 2006 1:31 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] repost - ColumnChart MOUSE_OVER_DATA event bug (2.0b

[flexcoders] Flex2 :: Button :: Getting custom skins to refresh IE getStyle() is used

2006-02-28 Thread Teoti Graphix
Hello, I have a custom skin class that draws all button skins. I am using a parent.swatchColor to get the color of the swatch but, when changing the color through a setter of the subclassed button component, it is not updating all 8 skins of the button. What is proper procedure to get a whole

RE: [flexcoders] repost - Memory leak repeatedly assigning new series to a chart. (2.0b1)

2006-02-28 Thread Jonathan Miranda
I can tell you after talking with one of the Chart QA team, they know of a memory leak involving resetting the dataprovider of a chart. I had a chart that would refresh every 30 seconds (httpservice connected to an arraycollection for the chart’s dp) that in 4-5 hours would take 95% of

[flexcoders] repost - Memory leak repeatedly assigning new series to a chart. (2.0b1)

2006-02-28 Thread thunderstumpgesatwork
Hello, I'm reposting this because I got no responses last time and I was hoping one of the Flex engineers could confirm that it has been noted (if not verified) that this is happening. This represents a major blocking point to releasing our app. Memory usage CAN NOT continue to grow unbounded.

RE: [flexcoders] repost - ColumnChart MOUSE_OVER_DATA event bug (2.0b1)

2006-02-28 Thread Matt Chotin
K, I forwarded it on to the charts QA -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Tuesday, February 28, 2006 1:28 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] repost - ColumnChart MOUSE_OVER_DATA event bu

[flexcoders] repost - ColumnChart MOUSE_OVER_DATA event bug (2.0b1)

2006-02-28 Thread thunderstumpgesatwork
Hello, I'm re-posting this because I am pretty sure it is a bug, and I was hoping one of the Flex engineers could confirm that it has been noted (if not tested). I'm getting really sporatic responses from a listener to the ChartMouseEvent.MOUSE_OVER_DATA By "sporatic" I mean that the events only

RE: [flexcoders] Coloring a MenuBar

2006-02-28 Thread Joan Tan
You can use the style fillColors. It takes an Array of two colors.   Joan   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Pablo Apanasionek Sent: Tuesday, February 28, 2006 10:30 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Colori

[flexcoders] Re: Need some solid Help. With DG and CFC Array

2006-02-28 Thread Jeremy Rottman
Thanks doug worked like a charm. --- In flexcoders@yahoogroups.com, "Doug Lowder" <[EMAIL PROTECTED]> wrote: > > Here's what works for me. Give these steps a try and post back if > you still run into problems. > > 1. Define an tag for your webservice and include a > result handler function: >

RE: [flexcoders] DataGrid automatic height

2006-02-28 Thread Jonathan Miranda
Yeah but how can I set that rows height without using cell-renderers J _ Jonathan Miranda Flexible Master of the Web "In the game of chess, it's important to never let your opponent see your pieces." HealthGrades: Guiding America to Better He

[flexcoders] Re: Adobe Labs Colin Moock's AS3 Viewer Example Compile Error

2006-02-28 Thread sufibaba
Thanks Geoffrey, That was the problem. Tim --- In flexcoders@yahoogroups.com, "Geoffrey Williams" <[EMAIL PROTECTED]> wrote: > > I havn't used it, but you need to remove Type from all of the event types > (the constants are now located in the event class and not in a separate > class). i.e.

RE: [flexcoders] DataGrid automatic height

2006-02-28 Thread Matt Chotin
Yes it should work with variableRowHeight and if you specify a starting index of 1 and a length of 1 I’d imagine it should give you that individual row.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda Sent: Tuesday, February 2

RE: [flexcoders] DataGrid automatic height

2006-02-28 Thread Jonathan Miranda
Does it work with variableRowHeight=true? And how is calculate height actually getting the individual row heights? Reason I ask is I am still trying to find a way to find an individual row height in AS. _ Jonathan Miranda Flexible Master of th

[flexcoders] Re: Need some solid Help. With DG and CFC Array

2006-02-28 Thread Doug Lowder
Here's what works for me. Give these steps a try and post back if you still run into problems. 1. Define an tag for your webservice and include a result handler function: http://flex.homesmartagent.com/cfc/adminHS2F.cfc?wsdl"; showBusyCursor="true"> 0

RE: [flexcoders] DataGrid automatic height

2006-02-28 Thread Matt Chotin
Found it: in B1 the function is named calculateHeight: http://livedocs.macromedia.com/labs/1/flex/langref/mx/controls/listclasses/ListBase.html#calculateHeight()   Set your DP, then set height equal to that value.   In B2 the function will be measureHeightOfItems   Matt Fro

RE: [flexcoders] Adobe Labs Colin Moock's AS3 Viewer Example Compile Error

2006-02-28 Thread Geoffrey Williams
I havn't used it, but you need to remove Type from all of the event types (the constants are now located in the event class and not in a separate class). i.e. EventType > Event; ProgressEventType > ProgressEvent; MouseEventType > MouseEvent; &c -Original Message- From: flexcoders@yahoogrou

[flexcoders] Adobe Labs Colin Moock's AS3 Viewer Example Compile Error

2006-02-28 Thread sufibaba
Hi All, Has anyone managed to get Colin Moock's Viewer Example running in Flex2 Beta. I am getting errors in the ImageViewer.as and DragManager.as For some reason, all the lines that have addEventListener are giving a compile error. Access of undefined property 'EventType' Access of undefined p

Re: [flexcoders] Re: Flex Builder 1.5 question

2006-02-28 Thread JesterXL
Or your webserver isn't running - Original Message - From: "JesterXL" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 28, 2006 1:26 PM Subject: Re: [flexcoders] Re: Flex Builder 1.5 question I usually get this in FlexBuilder when the Flex server I've defined is wrong. Sometimes, I

[flexcoders] Coloring a MenuBar

2006-02-28 Thread Pablo Apanasionek
I hate bugging you people for something that might be obvious, but it seems to be escaping my sight:   - Can I change the background color(s) of a MenuBar?   Thanks in advance. ---Pablo Gustavo Apanasionek -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files

Re: [flexcoders] Re: Flex Builder 1.5 question

2006-02-28 Thread JesterXL
I usually get this in FlexBuilder when the Flex server I've defined is wrong. Sometimes, I'll switch sites, and forget, and when I hit Run, it'll be pointing to some other project. - Original Message - From: "nntasha1976" <[EMAIL PROTECTED]> To: Sent: Tuesday, February 28, 2006 12:26

[flexcoders] 'A flex server couldn’t be found at the url' error

2006-02-28 Thread nntasha1976
Hi, I really do hope that someone could assist me. I have been searching for a solution for almost a week now but to no avail. I am a newbie, still working on the flex sample tutorial. Followed every single steps without any problem but when I tried to test my application (on flex builder) I go

[flexcoders] Flex 2: is there a way to know when a client disconnects?

2006-02-28 Thread Tom Bray
Let's say you have a chat room with a list of users and you want to remove a user from that list when they close their browser window.  In FMS2 you'd handle it with Application.onDisconnect( client_obj ).  Is there an FES message I can subscribe to and accomplish the same thing? Thanks,Tom

[flexcoders] Re: Flex Builder 1.5 question

2006-02-28 Thread nntasha1976
Hi Nick, I am having the same problem but unfortunately have yet to find a solution. Best Regards, Natz --- In flexcoders@yahoogroups.com, "Sauro, Nick" <[EMAIL PROTECTED]> wrote: > > Hey everyone, has anyone come across a problem while attempting to a > compile a flex application, and the build

[flexcoders] What is "ObjectEvent.property" property?

2006-02-28 Thread Vadim Melnik
Hi All, Documentation describes mx.utils.event.ObjectEvent.property as public String property [1]. But Flex 2 Beta 1 implements it as AS3 Object (and we have to cast it to String explicitly, to prevent compilaton errors). Is there reason to have other type for property name than string? And if so

[flexcoders] flex 1.5, custom-auth, and JRun

2006-02-28 Thread Douglas Knudsen
I have a Flex 1.5 app running on JRun. I'm using custom-auth to secure it. Each non-authenticated user access is causing an error to be logged to my JRun -err.log file. that looks like the below. How to turn this off or catch it? The log file is growing VERY fast. 10/11 21:54:59 error Authenti

Re: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Valy Sivec
Joe,  I'm not in a position to offer you a job but I would if I was looking for somebodyI would hire you as my boss if I could...Have a nice day!.ValyJoe Berkovitz <[EMAIL PROTECTED]> wrote: I am sure that there are many viewpoints on this subject, and I won't presume to have the "right" one

[flexcoders] Need some solid Help. With DG and CFC Array

2006-02-28 Thread Jeremy Rottman
I have been working on my cfc for a bit of time now, and I think that I certain parts of if finished. I am now working on getting my flex app connected to my cfc.The place where I am stuck is displaying returned results in my datagrid. Here I have my function called agentDisplayQry. I am taking

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Jonathan Miranda
Good points and thanks for the insight (coming from a newer developer). And hey now, you can't plug "we have openings" and give no links, info, or email address :) _ Jonathan Miranda Flexible Master of the Web "In the game of chess, it's important to never l

Re: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Joe Berkovitz
I am sure that there are many viewpoints on this subject, and I won't presume to have the "right" one. However, I have been in the business for over 20 years, so I can at least claim to have seen a lot, even if I'm wrong in my conclusions :) I have a couple of things to share -- both my own or

RE: [flexcoders] About ApplicationDomain.getClass method

2006-02-28 Thread Roger Gonzalez
> Can we use > Loader.loadeeInfo.applicationDomain.getClass("CLASS NAME") > from other domain's swf?? > It depends; if the other application domain is in your security domain, then yes. If not, then no. Security domains are an internal implicit concept in Beta 1. You can sort of imagine a

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Nick Weekes
not at all.  my point is that a good dev should be aware of all technologies, and not the one he is most comfortable with.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tolulope OlonadeSent: 28 February 2006 15:48To: flexcoders@yahoogroups.comSubject: RE: [f

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Tolulope Olonade
Umn that’s a nice way of allowing the discussion enter the “Which technology/platform is better” argument. I can tell u I have seen many. And so far in terms of aesthetics and unconventional/unbounded creativity, flex is the strongest player I have seen so far. Though I don’t do much in

[flexcoders] Re: About Flex 2 Beta risk to use and best way to communicate with php

2006-02-28 Thread Mike Potter
I've posted a sample on using AMFPHP with Flex to my blog at http://blogs.adobe.com/mikepotter/ So far I haven't run into any problems using AMFPHP and Flex together. You just need to make a small change to one file and you're on your way. Mike --- In flexcoders@yahoogroups.com, Sönke Rohde <[E

Re: [flexcoders] Reading or Embedding SWFs?

2006-02-28 Thread Abdul Qabiz
Cool! I had heard of the trust files but never tried using it.Thanks Harish for info :)-abdulOn 2/28/06, Harish Sivaramakrishnan < [EMAIL PROTECTED]> wrote:Hi Bruce,For getting rid of the Security Sandbox violation error that you are getting, you will have toexplicitly trust the swfs / images th

[flexcoders] Delete popup issue in Flex 1.5

2006-02-28 Thread Robs
Hi there, I have 3 components which have the following relation: Component 1 --> Component 2(inside component 1) -- Component 3 (inside component 2). Within component 1, I've invoked a popup which embeds components 2 & 3. My close button is within component 3. How do I delete the popup on

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Jonathan Miranda
Awww, so I’m wearing this “Flex Monkey” t-shirt for nothing? J jk _ Jonathan Miranda Flexible Master of the Web "In the game of chess, it's important to never let your opponent see your pieces." HealthGrades: Guiding America to Better Healthc

RE: [flexcoders] Accesing flex-config variables in MXML

2006-02-28 Thread Matt Horn
Pablo, you can do it with @ContextRoot(): http://www.adobe.com/2006/mxml"; creationComplete="trace('url='+s1.url);"> Remember that a context root is only available in the context of a web app, so if you are using the command line compiler or offline Flex Builder compiler, you will need to

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Nick Weekes
Im sure the Ajax 'evangelists' would wish the same thing, as would the MS next gen people.  Whatever is fit for purpose gets used, and the market pretty much decides what becomes the standard, not the well wishers ;-)   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Nick Weekes
Brendan,   yeah, I guess with the infancy of flex, anything that gives you an edge over other job candidates is a good thing (and like Carson/Jonathan have stated, its impossible to have a great deal of experience at this stage).   However, Id also say that anyone using flex heavily right

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Tolulope Olonade
I am actually talking about Adobe making Flex the unofficial standard for rich internet application development in a very smart way. So we flex evangelists can even carry the gospel further to executive pple J   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Beha

RE: [flexcoders] Webservices swapping parameters

2006-02-28 Thread Philippe Maegerman
because 'args' is typed as an array, shouldn't you have loginManager.makeRemoteCall("logIn","loginRetrieved", [userName, userPassword]) instead of loginManager.makeRemoteCall("logIn","loginRetrieved", userName, userPassword) Philippe From: flexcoders@yahoogroups

RE: [flexcoders] About Flex 2 Beta risk to use and best way to communicate with php

2006-02-28 Thread Sönke Rohde
Hi, > I got two concrete questions about FLex 2 Beta > > 1- Now this is a beta and not an alpha any more, is it risky > to developp > with it ? > I think no, because Beta means nothing gonna change only bug will be > corrected. I also think developing with the beta should be no problem anymo

[flexcoders] Accesing flex-config variables in MXML

2006-02-28 Thread Pablo Apanasionek
Back again with awful questions:   Can I get access to @context.root or localserver variables (used in flex-config.xml) inside a MXML page?   Thanks in advance ---Pablo Gustavo Apanasionek -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.tx

Re: [flexcoders] Reading or Embedding SWFs?

2006-02-28 Thread Harish Sivaramakrishnan
Hi Bruce, For getting rid of the Security Sandbox violation error that you are getting, you will have to explicitly trust the swfs / images that you are loading. One way of doing this is the method that abdul has suggested in his mail alternatively, You could also do this: Trust an SWF explicitl

[flexcoders] Bitmap

2006-02-28 Thread Richard Schutten
Hi, I'm having trouble displaying a Bitmap with Flex 2. Just as in the Help documentation i've added the following code: var pictLdr:Loader = new Loader(); var pictURL:String = "image.jpg" pictLdr.addEventListener(Event.COMPLETE, showPict); var pictURLReq:URLRequest = new URLRequest(pictURL); pic

[flexcoders] application MXML loading children component MXMLs

2006-02-28 Thread grae_hall
I'm writing the foundations of an ecommerce site in Flex. I've created an application MXML as the stub with the tags - and I've created the major subsections as MXML components framed by tags. What's the best method of including the component MXML files so that data can be shared with relati

Re: [flexcoders] Positioning Alert

2006-02-28 Thread Omar Ramos
Hi,Are you using the mx.core.Application.alert? if so that call does not return a reference to the alert which you wouln't be able to position it. You would have to use the mx.controls.Alert.show() instead. Omar RamosSystem DeveloperOn 2/21/06, Daniel Cascais <[EMAIL PROTECTED]> wrote: Yeah,

Re: [flexcoders] JSON library now available

2006-02-28 Thread Abdul Qabiz
Cool! I was about to finish AS3 version of this, but was stuck with few things. I would probably stop now :)-abdulOn 2/28/06, Darron J. Schall < [EMAIL PROTECTED]> wrote:For those interested, the JSON library is now available through the ActionScript 3 library page on the labs wiki:http://labs.m

[flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Brendan Meutzner
Nick, You've got a point... I agree with you in that solid experience does mean more than any specific degree/certification... but... Given the relative infancy of the Flex, and the fact that it has been licenced to target the larger scale companies/projects, I would think it's generally difficul

[flexcoders] About ApplicationDomain.getClass method

2006-02-28 Thread sn197412
Can we use Loader.loadeeInfo.applicationDomain.getClass("CLASS NAME") from other domain's swf?? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*>

Re: [flexcoders] Re: About Flex 2 Beta risk to use and best way to communicate with php

2006-02-28 Thread Abdul Qabiz
2. You can also use HTTPService to communicate with PHP using HTTP GET/POST methods. -abdulOn 2/28/06, Mike Potter < [EMAIL PROTECTED]> wrote:1.  I don't think so, but that's really up to you.  What are you going to be developing?2.  I've written up a small tutorial on how to communicate with PH

RE: [flexcoders] Flex2 :: Button :: Custom Skin Classes

2006-02-28 Thread Matt Horn
This technique is also documented (w/examples) in the Skinning chapter of the Developing Flex Applications book:   http://livedocs.macromedia.com/flex/20beta1/docs/1052.html   hth,   matt horn flex docs   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Re: About Flex 2 Beta risk to use and best way to communicate with php

2006-02-28 Thread Mike Potter
1. I don't think so, but that's really up to you. What are you going to be developing? 2. I've written up a small tutorial on how to communicate with PHP. Basically, you can do it in one of two ways: using XML to encode the data (as the tutorial below shows), or using AMFPHP. AMFPHP has a sub

RE: [flexcoders] xml files embedded in swf?

2006-02-28 Thread Jan L. Nauta
Hi Abdul, Ok, so this is intended behaviour. But then the xml file shouldn't be copied into the bin (output) directory, as it's already embedded in the swf file? The fact that it _was_ copied into the bin directory led me to believe that it wasn't embeded in the first place. Regards, and thanks f

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Jonathan Miranda
That’s more than likely true here….a degree goes a lot longer. But hey, if you have the degree and the time, why not? J _ Jonathan Miranda Flexible Master of the Web "In the game of chess, it's important to never let your opponent see your pie

[flexcoders] Webservices swapping parameters

2006-02-28 Thread mvbaffa
Hi, everybody I am experiencing a strange problem with webservices. I am using a class, developed by Jeff Tapper to call my webservice. There is a method difined like that: public function makeRemoteCall (methodName:String, eventName:String, ...args:Array):void I have developed a Webservice t

[flexcoders] JSON library now available

2006-02-28 Thread Darron J. Schall
For those interested, the JSON library is now available through the ActionScript 3 library page on the labs wiki: http://labs.macromedia.com/wiki/index.php/ActionScript_3:resources:apis:libraries#corelib If you run into any problems with it, let me know. It passed all of the unit tests, but th

RE: [flexcoders] Automated Testing of Flex Components

2006-02-28 Thread Steven Webster
> FlexUnit is intended for unit-testing and regression testing, > rather than automated testing per se. Stay tuned for some > updates on FlexUnit Thanks for staying tuned. http://www.richinternetapps.com/archives/000151.html Kudos to the developer relations team at Adobe for making this h

[flexcoders] About Flex 2 Beta risk to use and best way to communicate with php

2006-02-28 Thread Flapflap
Hi there, I got two concrete questions about FLex 2 Beta 1- Now this is a beta and not an alpha any more, is it risky to developp with it ? I think no, because Beta means nothing gonna change only bug will be corrected. 2- What's best way in flex to communicate with Php ? My experiment with ht

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Nick Weekes
just my 10 cents, but over here in the UK graduates of tech (comp science/systems dev etc) based degrees usually get some sort of certification (mostly MSCE/MSCD).  So we have college leavers with this kind of certificate, which kind of puts certification at the junior/entry level, rather

RE: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Tolulope Olonade
You are probably right. I jus suggest they don’t stay too late on coming out with it. It could really give them an edge and probably some market dominance. Remember there are other competing  technologies/companies e.g Nexaweb, ajax etc. Anyone of them that comes out early is most like

Re: [flexcoders] Re: Array based class throws error for splice method call

2006-02-28 Thread Manish Jethani
On 2/28/06, Vadim Melnik <[EMAIL PROTECTED]> wrote: > Thanks for interesting information, dynamic keyword helps and 1068 > runtime error disappears, now I always have pure Access violation > GPF in fldbg85a.dll, at 0x00142c74. If someone @ Macromedia need Dr > Watson mini dump and test case, it's

RE: [flexcoders] Automated Testing of Flex Components

2006-02-28 Thread Steven Webster
Hi all, FlexUnit is intended for unit-testing and regression testing, rather than automated testing per se. Stay tuned for some updates on FlexUnit For automated testing, Adobe are working with a number of vendors ... Lucian Beebe has an article on Macromedia Devnet that describes our approa

[flexcoders] Re: Array based class throws error for splice method call

2006-02-28 Thread Vadim Melnik
Thanks for interesting information, dynamic keyword helps and 1068 runtime error disappears, now I always have pure Access violation GPF in fldbg85a.dll, at 0x00142c74. If someone @ Macromedia need Dr Watson mini dump and test case, it's uploaded to http://www.docsultant.com/temp/dump.zip . As

Re: [flexcoders] Re: RIA Certified Developer/Architect

2006-02-28 Thread Clint Modien
The point of most certifications is too insure to a resonable degree that the person is capable of doing what they say they can do. I would hesitate to take a car I owned to anyone "claiming" to be a mechanic but lacked formal certification. I think the bottom line is...  there are certificati