[flexcoders] component reuse

2008-10-02 Thread sefi.ninio
Hi everyone. I have a functionality that needs to be implemented both as a standalone app (for users with restricted access) and as a module in the main app (for users with full rights access). In the effort of code reuse (and laziness, of course), I'd like to implement the functionality once

Re: [flexcoders] component reuse

2008-10-02 Thread Scott Melby
I would be inclined to use the component compiler (compc http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_22.html) to build a component into a .swc library (think flexlib) that you could then easily use from each version of your application (just load the .swc as a library).

RE: [flexcoders] Macros or templates in Builder / Eclipse?

2008-10-02 Thread Gregor Kiddie
I use snippits which have a form of templates. Normally use it for making getters / setters, singleton boilerplate, etc. You get it as part of the Web Standard Tools (WST) plugin for eclipse. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread

Re: [flexcoders] component reuse

2008-10-02 Thread Sefi Ninio
Hey Scott, I actually thought of creating a SWC as well, but I wanted to leverage lazy loading into the main app, that's why I thought more along the lines of a module loaded first time it's needed. Is it possible to lazy load a SWC? On Thu, Oct 2, 2008 at 10:17 AM, Scott Melby [EMAIL PROTECTED]

[flexcoders] [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-02 Thread Josh McDonald
Hey guys, Just wanted to let you know I've publicly released my dependency-injection library, Smartypants IOC! It uses an AS3-based DSL to to specify rules, and injection points are defined via AS3 metadata, similar to Google Guice. Blog post:

[flexcoders] Re: Using ActionScript2 swf in Flex 3

2008-10-02 Thread greenfishinwater
Thanks, I googled Local connection and found some useful references. Unfortunately I did not code the original application so don't know the degree of communication between the AS2 swf and the Flex 3 code. Andrew --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: With

Re: [flexcoders] Re: Using ActionScript2 swf in Flex 3

2008-10-02 Thread Paul Andrews
You're going to have to have to write an AS2 stub for AS3 to communicate with. The AS2 stub will interact with the AS2 swf and will have to pass data back and fore through the local connection via handlers. It's likely to be a PIA. If at all possible, I'd rewrite the code in the AS2 swf convert

[flexcoders] drag and drop in flex

2008-10-02 Thread abhishekchess1
hello all, could anyone tell me how can we allow users to drag controls like datagrid , slider ,etc from 1 canvas to anather ? [EMAIL PROTECTED]

Re: [flexcoders] component reuse

2008-10-02 Thread Michael Schmalle
Is it possible to lazy load a SWC? No, SWC have to be compiled with the mxmlc compiler into the app. RSLs can lazy load component libraries though. Mike On Thu, Oct 2, 2008 at 3:39 AM, Sefi Ninio [EMAIL PROTECTED] wrote: Hey Scott, I actually thought of creating a SWC as well, but I

[flexcoders] Right align menu (not label) of PopUpButton

2008-10-02 Thread itdanny2002
If I click PopUpButton, it will display a menu. How can I align the menu (not label inside) to the right of PopUpButton. e.g. .. Menu Button ..The long Menu A ... ..The long Menu B ... ..The long Menu C ... I have tried to adjust X value of menu control but not

Re: [flexcoders] component reuse

2008-10-02 Thread Sefi Ninio
Hmm... I thought that for SWC to be lazy loaded as RSLs, they need to be SWZ (which only Adobe can create)... On Thu, Oct 2, 2008 at 1:53 PM, Michael Schmalle [EMAIL PROTECTED]wrote: Is it possible to lazy load a SWC? No, SWC have to be compiled with the mxmlc compiler into the app. RSLs

RE: [flexcoders] component reuse

2008-10-02 Thread Gregor Kiddie
A SWZ is just a signed RSL. Unsigned RSLs are SWCs. http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:Flex_3 _RSLs Will give you some more info. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street,

[flexcoders] SecurityError #2048 20 seconds after Socket closure.

2008-10-02 Thread Samuel Loretan
Hello, I've met a very unexpected problem with a Socket connection. I'm very used to client-server communication, and it's the first time I encounter such behaviour. I have an AS3 application, connected to a custom Java server using the Socket class. The server is run on a distant computer

RE: [flexcoders] Re: More questions on weborb, creating my own services

2008-10-02 Thread Jim Hayes
that one has irritated me before! it sees 127.0.0.1 and localhost as being different domains (correctly I believe). if you change either the endpoint in the services xml file or the debugging url in project properties such that they match then you should find it all works (apologies for not

RE: [flexcoders] Re: More questions on weborb, creating my own services

2008-10-02 Thread Jim Hayes
apologies, now I read valdhors example code I see the endpoint is set in the code, here : channelSet = new ChannelSet(); amfChannel = new AMFChannel(my-amf, http://myserver/WebORB/weborb.php;); channelSet.addChannel(amfChannel); so it's there you need to change localhost to 127.0.0.1 (or

Re: [flexcoders] component reuse

2008-10-02 Thread Michael Schmalle
Hi, SWCs have nothing to do with loading and runtime. An SWC is a collection of abc bytecode that gets compiled into a application with the mxmlc compiler. You have to create the rsl from an SWC with the compiler. Mike On Thu, Oct 2, 2008 at 7:29 AM, Sefi Ninio [EMAIL PROTECTED] wrote:

[flexcoders] decrementing the x axis on a chart

2008-10-02 Thread flexie_eric
Can someone tell me how to to reverse the scale on an axis in flex so that it decrements rather then increments. ie, if my x values are 0 to 10 on the x-axis i want the x scale to show 10 to 0.

[flexcoders] Plotting values equal to Zero on the Line Chart

2008-10-02 Thread David Unger
I'm relatively new to flex, and I have been using the line charting control to display a line chart of how many times a media type on my site has been accessed on a daily basis. The problem is that any time I have a value of zero for any one day there is a break in my chart. If I set

[flexcoders] as3corelib usage

2008-10-02 Thread karthikeyan.sivanantham
Hi guys, Goodday! I am trying to use JSON with flex. I am following the instructions from the link http://www.adobe.com/devnet/flex/articles/flex_php_json.html; to setup the JSON development environment in flex. The instructions say that I should get the as3corelib from

[flexcoders] (unknown)

2008-10-02 Thread Anand Kumar
Hi, Please some one explain me about  Cairngorm architecture. Thanks Anand

[flexcoders] Flash Player - Excel performance issue

2008-10-02 Thread Ash Weaver
Hi all, I work for a company that produces a rich Flex application. We are getting reports from one of our customers, however, that if they have our app loaded in their browser (IE7 or Firefox but not IE6), opening a spreadsheet in Excel takes on the order of 15 seconds. As soon as they close

[flexcoders] Re: extend titlewindow ?

2008-10-02 Thread Marielle Lange
i am looking to add a minimize button. I was trying to do something similar today with a Panel. I came across these demos: http://blog.olivermerk.ca/index.cfm/2007/6/17/Flex-Adding-Icons-to-the-Panel http://yussi.net/tt/97

[flexcoders] Display problem with repeater

2008-10-02 Thread guillaumeracine
Hi guys, I have a problem with a repeater component... Context : I developped a product viewer for a client. I have a menu of product's sections on the left and when we click on a section a call to my backend is made to feed my repeater component wich render properly the products associated with

[flexcoders] Cairngorm

2008-10-02 Thread florian.salihovic
Don't foget the subject next time. The following link might help. http://www.adobe.com/devnet/flex/articles/cairngorm_pt1.html --- In flexcoders@yahoogroups.com, Anand Kumar [EMAIL PROTECTED] wrote: Hi, Please some one explain me about  Cairngorm architecture. Thanks Anand

Re: [flexcoders] Macros or templates in Builder / Eclipse?

2008-10-02 Thread Douglas Knudsen
Also cast your vote for https://bugs.adobe.com/jira/browse/FB-11842 a request for templating support. Currently the #2 most popular in FB project. DK On Thu, Oct 2, 2008 at 3:20 AM, Gregor Kiddie [EMAIL PROTECTED] wrote: I use snippits which have a form of templates. Normally use it for

[flexcoders] DataGrid header background

2008-10-02 Thread markgoldin_2000
If I want to have a header of some columns in a different color what do I basically do? Custom renderer? What would I use? Canvas? Thanks for help.

Re: [flexcoders] extend titlewindow ?

2008-10-02 Thread Tom Chiverton
On Monday 29 Sep 2008, greg_knight_66 wrote: i am looking for an example illustrating how to extend/modify the header of the titlewindow. im assuming this is possible? specifically, i am looking to add a minimize button. I think FlexLib has this. -- Tom Chiverton Helping to continually

[flexcoders] Re: More questions on weborb, creating my own services

2008-10-02 Thread valdhor
Oh yes, I completely forgot about the crossdomain.xml file. You can do a search on this here and will get thousands of hits. Basically, if your Flex application requires access to another server, that server must have a crossdomain.xml file in its root directory (ie. It must be able to be

Re: [flexcoders] (unknown)

2008-10-02 Thread João Pedro Bourbon
Hi Just google for David Tucker's blog ;) Em 2008/10/02, às 04:02, Anand Kumar escreveu: Hi, Please some one explain me about Cairngorm architecture. Thanks Anand

RE: [flexcoders] Cairngorm

2008-10-02 Thread Dimitrios Gianninas
or just read here: http://www.cairngormdocs.org/ Dimitrios Gianninas RIA Developer Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of florian.salihovic Sent: Thursday, October 02, 2008 8:49 AM To:

Re: [flexcoders] component reuse

2008-10-02 Thread Sefi Ninio
So, the RSL is a SWF file created at compile time from the SWC? On Thu, Oct 2, 2008 at 3:40 PM, Michael Schmalle [EMAIL PROTECTED]wrote: Hi, SWCs have nothing to do with loading and runtime. An SWC is a collection of abc bytecode that gets compiled into a application with the mxmlc

[flexcoders] Re: as3corelib usage

2008-10-02 Thread valdhor
It looks like the compiled library is no longer on Google code. You will need to get a SVN client (I used TortoiseSVN from http://tortoisesvn.net/) and checkout a version from Trunk. Once it's checked out, add the contents of the src directory to your project src. There is a JSONExample.mxml file

[flexcoders] Use of ChangeEvent tag in Flex 1.5

2008-10-02 Thread greenfishinwater
I am converting a Flex 1.5 app to Flex 3 and came across the following code: [ChangeEvent(change)] [Bindable(event=change)] public var highScores:Array; My understanding is that [Bindable(event=change)] specifies that when a change event is dispatched then anything bound to the variable will be

[flexcoders] Re: extend titlewindow ?

2008-10-02 Thread valdhor
Check out FlexMDI (http://code.google.com/p/flexmdi/) --- In flexcoders@yahoogroups.com, greg_knight_66 [EMAIL PROTECTED] wrote: hi all, i am looking for an example illustrating how to extend/modify the header of the titlewindow. im assuming this is possible? specifically, i am

[flexcoders] Re: html and swf file gone

2008-10-02 Thread flexaustin
No errors in Problems pain. It looks like if your orig. .swf and .html files get deteleted the only fix is to recreate the project from scratch. Re-building doesn't do anything, atleast when svn is invovled. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Yes, look at

Re: [flexcoders] decrementing the x axis on a chart

2008-10-02 Thread Tom Chiverton
On Wednesday 01 Oct 2008, flexie_eric wrote: ie, if my x values are 0 to 10 on the x-axis i want the x scale to show 10 to 0. What happens if you set the maximum to 0 and minimum to 10 ? -- Tom Chiverton Helping to carefully optimize next-generation robust paradigms

Re: [flexcoders] SecurityError #2048 20 seconds after Socket closure.

2008-10-02 Thread Maciek Sakrejda
Samuel, Don't know if this is helpful, but when working with URLStream, we ran into a situation where calling close() did not actually do anything (i.e., it did not issue a TCP FIN--we watched for this with tcpdump). We did not encounter any security errors, so I don't know if this is related,

Re: [flexcoders] Problem handling RemoteObject Errors

2008-10-02 Thread Tom Chiverton
On Thursday 02 Oct 2008, reflexactions wrote: But the AsyncDispatcher.timerHandler method nevers gets called to The what ? Are you using a Timer and not the error events ? dispatch the event becuase no reference was kept to the AsyncDispatcher and it gets GC'd before the Timer runs. I've

Re: [flexcoders] Regarding a flex app with integratiion of java

2008-10-02 Thread Tom Chiverton
On Friday 26 Sep 2008, chandra_mcas wrote: tomcat,weblogic also i can connect flex app directly with out using lcds just by tomcat. Yes, Flex can invoke a normal SOAP web service, just retrieve XML or even make AJAX still GET/POST calls. -- Tom Chiverton Helping to autoschediastically

RE: [flexcoders] DataVisualization RSL Issues

2008-10-02 Thread Battershall, Jeff
Matt, I built a simple Flex project that replicates the issue. Should I enter a bug? Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Tuesday, September 30, 2008 1:36 PM To: flexcoders@yahoogroups.com Subject: Re:

[flexcoders] refreshing data via BlazeDS

2008-10-02 Thread netdeep
I have a persistent instance of my Flex App which needs to run constantly and recieve data via server push. It displays the latest data via a chart. The charts are defined in ActionScript. Here is a snippet: var lineSeries:LineSeries = new LineSeries(); BindingUtils.bindProperty(lineSeries,

[flexcoders] mx.messaging.channels.RTMPCHannel

2008-10-02 Thread djhatrick
I'm doing a proof of concept to switch to rails, and flex wants this class mx.messaging.channels.RTMPCHannel because it's delclared in the service config. The docs read that it's part of Flex2 DataServices, but isn't Flex2 DataServiced that a changed product product, to LiveCycle and BlazeDS?

[flexcoders] Re: Plotting values equal to Zero on the Line Chart

2008-10-02 Thread Amy
--- In flexcoders@yahoogroups.com, David Unger [EMAIL PROTECTED] wrote: I'm relatively new to flex, and I have been using the line charting control to display a line chart of how many times a media type on my site has been accessed on a daily basis. The problem is that any time I have a

[flexcoders] Re: DataGrid header background

2008-10-02 Thread Amy
--- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: If I want to have a header of some columns in a different color what do I basically do? Custom renderer? What would I use? Canvas? Thanks for help. You could look at my extended datagrid component, and use

[flexcoders] Re: mx.messaging.channels.RTMPCHannel

2008-10-02 Thread djhatrick
Found this in my LCDS download. --- In flexcoders@yahoogroups.com, djhatrick [EMAIL PROTECTED] wrote: I'm doing a proof of concept to switch to rails, and flex wants this class mx.messaging.channels.RTMPCHannel because it's delclared in the service config. The docs read that it's part of

[flexcoders] Triggering Validator based on string value for TextInput

2008-10-02 Thread djohnson29
Does anyone know how to trigger a validator on a TextInput based on a certain string value? I have a regular TextInput with a regular Validator attached to it (required Validation). I would like to also trigger this Validator so that the red outline and tooltip displays when there is a

Re: [flexcoders] DataVisualization RSL Issues

2008-10-02 Thread Matt Chotin
Yes please On 10/2/08 8:47 AM, Battershall, Jeff [EMAIL PROTECTED] wrote: Matt, I built a simple Flex project that replicates the issue. Should I enter a bug? Jeff -Original Message- From: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com

[flexcoders] PERT Chart

2008-10-02 Thread Jerry DuVal
Does anyone have any suggestions on a open source PERT chart flex widget? Thanks in advance Jerry

[flexcoders] Flex video cross-domain nightmare!! help please!!

2008-10-02 Thread Ryan
I am attempting to load a flv file from a media server on a different url into our flex app. Extremely frustratingly, I get this error: SecurityError: Error #2122: Security sandbox violation: BitmapData.draw: http://localhost:8080/survey-service/client-1.0-alpha2-SNAPSHOT.swf cannot access

Re: [flexcoders] Triggering Validator based on string value for TextInput

2008-10-02 Thread Ryan Gravener
I suppose you would need to use the regular expression validator. Ryan Gravener http://twitter.com/ryangravener On Thu, Oct 2, 2008 at 12:46 PM, djohnson29 [EMAIL PROTECTED] wrote: Does anyone know how to trigger a validator on a TextInput based on a certain string value? I have a

RE: [flexcoders] DataVisualization RSL Issues

2008-10-02 Thread Battershall, Jeff
OK Matt, It's issue SDK-17155. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Thursday, October 02, 2008 1:02 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] DataVisualization RSL Issues Yes please On

[flexcoders] Re: [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-02 Thread Tim Hoff
Hey FO Smartypants. Totally kidding Josh. Good on you mate. But, I'm getting a blank page for the blog post. Just a heads up. Cheers, -TH --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: Hey guys, Just wanted to let you know I've publicly released my

[flexcoders] Re-Center Pop-Up on Resize

2008-10-02 Thread jmfillman
Is there a way to re-center a pop-up window if the browser is resized?

[flexcoders] Re: decrementing the x axis on a chart

2008-10-02 Thread Tim Hoff
HI, You're goung to have to massage the data to get your desired result. Youcan also use a second dataProvider and layer it on top of the first dataProvider (alpha = 0), if you want to keep the labels intact. -TH --- In flexcoders@yahoogroups.com, flexie_eric [EMAIL PROTECTED] wrote: Can

[flexcoders] Re: Re-Center Pop-Up on Resize

2008-10-02 Thread Tim Hoff
The way that I do it, is to dispatch an event when the application resize event is fired. Of course this is easy when you use an MVC framework; like Cairngorm. In the popup, I then use an event listener that executes a method: mx.managers.PopUpManager.centerPopUp(this as IFlexDisplayObject);

[flexcoders] Sending parameters to server

2008-10-02 Thread ilikeflex
Hi I am sending request to the server. I am pasing parameters as shown below params.action=businessServicebusinessDataworkLists + worklistmonth2/monthyear2008/year/worklist + /workLists/businessData/businessService; params.action=businessServicebusinessDataworklistsworklistmont

Re: [flexcoders] Sending parameters to server

2008-10-02 Thread Howard Fore
It's helpful in asking about error messages to include the error that you are getting. :-) On Thu, Oct 2, 2008 at 2:39 PM, ilikeflex [EMAIL PROTECTED] wrote: In second case i do not get error but in the first case i get the error from server.I do not know what is different?? -- Howard

RE: [flexcoders] Re: html and swf file gone

2008-10-02 Thread Ryan Graham
Do you still have your html-template folder? It should generate a fresh html wrapper for you when you build. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexaustin Sent: Thursday, October 02, 2008 7:31 AM To:

[flexcoders] Re: extend titlewindow ?

2008-10-02 Thread actionscript_czar
FlexMDI is now ( and has been ) a part of FlexLib. (http://code.google.com/p/flexlib/) --- In flexcoders@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote: Check out FlexMDI (http://code.google.com/p/flexmdi/) --- In flexcoders@yahoogroups.com, greg_knight_66 gknight@ wrote: hi all,

[flexcoders] Using data from List Control to send to PHP

2008-10-02 Thread ghus32
Hello Everyone, I was wondering if any of you guys know how to extract data from a list control as each separate entry as a var? I was to send each entry to my php script. Ex. I have 4 entries in my list control I want to send file_name1, filename_2, filename_3, filename_4 to my php script

Re: [flexcoders] Using data from List Control to send to PHP

2008-10-02 Thread Ryan Gravener
You can iterate through the dataprovider; for each (var obj:Object in list.dataProvider) { //do work } Ryan Gravener http://twitter.com/ryangravener On Thu, Oct 2, 2008 at 3:11 PM, ghus32 [EMAIL PROTECTED] wrote: Hello Everyone, I was wondering if any of you guys know how to extract data

[flexcoders] Developing with Flash Player 10a

2008-10-02 Thread markgoldin_2000
I have installed that version but when I run it from Builder I am getting: C:\WINDOWS\system32\Macromed\Flash\Flash10a.ocx Flex Builder cannot locate the required debugger version of Flash Player. You might need to install the debugger version of Flash Player 9 or reinstall Flex Builder. Do

RE: [flexcoders] Developing with Flash Player 10a

2008-10-02 Thread Ryan Graham
You need the debug version of the player installed. This guy seems to have some good info on where to get it and how to setup flex builder: http://www.flexer.info/2008/08/18/flash-player-10-debug-is-out/ HTH, Ryan From: flexcoders@yahoogroups.com

Re: [flexcoders] Using data from List Control to send to PHP

2008-10-02 Thread Rico Leuthold
... or use amfphp and you can send an array. _rico On 02.10.2008, at 21:16, Ryan Gravener wrote: You can iterate through the dataprovider; for each (var obj:Object in list.dataProvider) { //do work } Ryan Gravener http://twitter.com/ryangravener On Thu, Oct 2, 2008 at 3:11 PM, ghus32

[flexcoders] Re: Developing with Flash Player 10a

2008-10-02 Thread markgoldin_2000
Thanks for help. I did install FP10 from that location and I am not getting warning anymore, but now I am getting this: Failed to connect; session timed out. Ensure that: 1. You compiled your Flash application with debugging on. 2. You are running the debugger version of Flash Player. Any

[flexcoders] Re: Problem handling RemoteObject Errors

2008-10-02 Thread reflexactions
Well I dont think our code will help at all becuase the issues are deep within the Adobe classes which is what I was quoting but if thats what you want... var opr:AbstractOperation = getRemoteObject.getOperation(methodName); opr.addEventListener(ResultEvent.RESULT, gotResult, false, 0, true);

[flexcoders] Re: Flex video cross-domain nightmare!! help please!!

2008-10-02 Thread Ryan
UPDATE: I think this is being caused by a 'wipe effect which is touching the video. Still very annoying and not sure how to solve it though, short of taking out the effects. I pre-load the videos before the screen with the player is shown, so when I do reveal that screen, the wipe in touches the

[flexcoders] Re: html and swf file gone

2008-10-02 Thread j_lentzz
--- In flexcoders@yahoogroups.com, flexaustin [EMAIL PROTECTED] wrote: So I was working on my project and flex builder 3 started acting funny. Hit one keystroke and it would type 10 more and I keep getting really weird errors when nothing was wrong with the file. So I did project clean.

[flexcoders] Prototyping a form

2008-10-02 Thread markgoldin_2000
Lets' say I want all my forms to be based on same form. Base form would have just a push button. A click of this button might look like this: runButton.addEventListener(click, handleClick); private function handleClick(e:MouseEvent):void { completeParameters();

Re: [flexcoders] Re: [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-02 Thread Josh McDonald
Aw jeeze, I'm getting tired of fixing that! What browser are you on? I thought it worked on ie 6... On Fri, Oct 3, 2008 at 4:17 AM, Tim Hoff [EMAIL PROTECTED] wrote: Hey FO Smartypants. Totally kidding Josh. Good on you mate. But, I'm getting a blank page for the blog post. Just a heads

[flexcoders] Complete event error for Image control within Repeater

2008-10-02 Thread gwangdesign
I am loading 50-ish something images using an Image control wrapped in a repeater wrapped in a VBox component. I want to do some stuff once I know the full dimensions of the VBox, which is when all the images have been loaded. Here is the code snippet: mx:VBox id=imgBx mx:Repeater id=rp

Re: [flexcoders] Prototyping a form

2008-10-02 Thread Maciek Sakrejda
It's possible if you tell us the compilation errors you're hitting. However, in this case, you're probably hitting something telling you that you can't override something not marked for override, so you need to add the 'override' keyword to the completeParameters() function definition. -- Maciek

RE: [flexcoders] Re: Developing with Flash Player 10a

2008-10-02 Thread Ryan Graham
The second link on that page details the flex builder setup which in a nutshell looks like --downloading a snapshot build of the latest flex SDK from adobe --letting flex builder know that the sdk is available for use --setting the compiler targets to hit Flash Player 10 debug HTH, Ryan

Re: [flexcoders] Re: [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-02 Thread Michael Schmalle
Hey FO Smartypants I'm reporting you to YAHOO POLICE Tim! This is un exceptable list protocol! Expect a summons in the mail next week. ... the bitter one On Thu, Oct 2, 2008 at 4:47 PM, Josh McDonald [EMAIL PROTECTED] wrote: Aw jeeze, I'm getting tired of fixing that! What browser are you

[flexcoders] Re: Prototyping a form

2008-10-02 Thread markgoldin_2000
1180: Call to a possibly undefined method completeParameters. --- In flexcoders@yahoogroups.com, Maciek Sakrejda [EMAIL PROTECTED] wrote: It's possible if you tell us the compilation errors you're hitting. However, in this case, you're probably hitting something telling you that you can't

[flexcoders] Serverside swf compile

2008-10-02 Thread horizens
Hi, I'm about to being working on a skin configurator. I'm wondering how to approach generating swfs serverside that could in turn be loaded at runtime into a separate Flex app. Ideally, I'd like to have a library of assets and color picker that a user could choose from in order to create their

[flexcoders] Re: extend titlewindow ?

2008-10-02 Thread valdhor
Yes, I know. Unfortunately, the FlexLib project does not list FlexMDI in its component list nor does it provide any information on it. The site I quoted gives documentation as well as examples and notes that FlexMDI is now part of FlexLib. --- In flexcoders@yahoogroups.com, actionscript_czar

[flexcoders] Re: Sending parameters to server

2008-10-02 Thread valdhor
Perhaps the carriage returns are confusing the server? I have had this happen to me in the past. --- In flexcoders@yahoogroups.com, ilikeflex [EMAIL PROTECTED] wrote: Hi I am sending request to the server. I am pasing parameters as shown below

Re: [flexcoders] Re: Prototyping a form

2008-10-02 Thread Maciek Sakrejda
Ok, what's the context here? If this is the error, it could be that you're not defining the method in the parent form. This is true even if the method doesn't do anything and *must* be overridden in child forms--most object-oriented languages provide the 'abstract' keyword to ensure this, but

[flexcoders] Re: [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-02 Thread Tim Hoff
Too funny Mike. Works in FF, but not IE7 Josh. -TH --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hey FO Smartypants I'm reporting you to YAHOO POLICE Tim! This is un exceptable list protocol! Expect a summons in the mail next week. ... the bitter one On

Re: [flexcoders] Re: Prototyping a form

2008-10-02 Thread Scott Melby
I'm going to guess that your problem is that you have declared completeParameters() incorrectly (since it is private in your subclass example). You need to declare it as protected or public in the parent class is order to allow subclasses to override it. Note: it must be declared in the

[flexcoders] Re: Triggering Validator based on string value for TextInput

2008-10-02 Thread djohnson29
Thanks - I tried that out but the problem is the Regex matches the value that I don't want. In other words I need the opposite of the matched expression to trigger a valid result, and the matched expression to be invalid. Anyways, after much canoodling I just overrode the Validator class.

[flexcoders] Re: [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-02 Thread nathanpdaniel
Works in Chrome too! :D but still not IE7... --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Too funny Mike. Works in FF, but not IE7 Josh. -TH --- In flexcoders@yahoogroups.com, Michael Schmalle teoti.graphix@ wrote: Hey FO Smartypants I'm reporting you

[flexcoders] Re: Serverside swf compile

2008-10-02 Thread nathanpdaniel
Using PHP, you can execute commands as you would on a command prompt (hopefully that makes sense)... I don't know enough about .NET to say what to do with that - although I'm sure it'd be just as simple. --- In flexcoders@yahoogroups.com, horizens [EMAIL PROTECTED] wrote: Hi, I'm about to

[flexcoders] Re: Debugger disconnects for one project only

2008-10-02 Thread JWOpitz
Forgot to mention that I also removed and reinstalled the debug player with no luck as well.

[flexcoders] Debugger disconnects for one project only

2008-10-02 Thread JWOpitz
I just started experiencing this issue recently. A certain project I am working on which is basically a very simple Flex application. The only thing that is different than any other Flex application is that it is deployed to a local web server. Nothing unique, in fact almost all of my flex

[flexcoders] Re: Prototyping a form

2008-10-02 Thread markgoldin_2000
Yes, did it like this, works now. Thanks --- In flexcoders@yahoogroups.com, Scott Melby [EMAIL PROTECTED] wrote: I'm going to guess that your problem is that you have declared completeParameters() incorrectly (since it is private in your subclass example). You need to declare it as

Re: [flexcoders] Re: [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-02 Thread Josh McDonald
Ah, IE7's the problem now... I'm rejigging the whole damn thing tomorrow morning! Thanks for letting me know guys! -Josh On Fri, Oct 3, 2008 at 8:08 AM, nathanpdaniel [EMAIL PROTECTED] wrote: Works in Chrome too! :D but still not IE7... --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL

[flexcoders] Can you do multiple namespace manifests in a single .swc from within builder?

2008-10-02 Thread Josh McDonald
Hey guys, I've tried a few things (adding --namespace commands in additional compiler options, and adding another entry in .flexlibProperties), but I can't seem to get this to work from Builder. It seems to break auto-complete; somethings auto-complete to package names instead of namespaces,

[flexcoders] Re: [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-02 Thread Amy
--- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: Aw jeeze, I'm getting tired of fixing that! What browser are you on? I thought it worked on ie 6... It DOES work for me on IE 6 :-)

[flexcoders] Re: Complete event error for Image control within Repeater

2008-10-02 Thread Amy
--- In flexcoders@yahoogroups.com, gwangdesign [EMAIL PROTECTED] wrote: I am loading 50-ish something images using an Image control wrapped in a repeater wrapped in a VBox component. I want to do some stuff once I know the full dimensions of the VBox, which is when all the images have been

Re: [flexcoders] Re: [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-02 Thread Josh McDonald
Yeah it seems 7 is the problem now. That'll teach me to try and do nice xhtml+css without 10 different versions of IE to test it on. I'll redo it with tables inside and do away with the floats, it's not worth the headache. Moral of the story: outsouce the html, stick to the Flex. -Josh On Fri,

Re: [flexcoders] Re: [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-02 Thread Matt Chotin
Dreamweaver has all sorts of compatibility checks and systems available :-) /obligatory buy adobe and help our stock price plug On 10/2/08 4:26 PM, Josh McDonald [EMAIL PROTECTED] wrote: Yeah it seems 7 is the problem now. That'll teach me to try and do nice xhtml+css without 10 different

[flexcoders] Strange transition behavior with ComboBox change events (Bug?)

2008-10-02 Thread mookie298347
Hello, I am trying to display a component when a ComboBox selection is changed using transitions. The component is added to the layout then displayed using the Iris effect. My problem is that the UI jumps around when this transition is linked to the ComboBox change. It works fine when linked to a

Re: [flexcoders] Re: [ANN] Announcing Smartypants IOC, a dependency-injection library for Flex.

2008-10-02 Thread Josh McDonald
Sorry Matt, I'm a Textmate guy. Never cared for Dreamweaver. Nice plug tho! :D -Josh On Fri, Oct 3, 2008 at 9:34 AM, Matt Chotin [EMAIL PROTECTED] wrote: Dreamweaver has all sorts of compatibility checks and systems available :-) /obligatory buy adobe and help our stock price plug On

[flexcoders] Matching n groups with a regex?

2008-10-02 Thread Josh McDonald
Hey guys, I'm trying to turn this objectA.objectB.objectC into [objectA, objectB, objectC] using a regex, but all I seem to get using String.match() is [objectA, objectC]. Can anybody tell me what's wrong with the following? const multiLevelReferencePattern : RegExp =

Re: [flexcoders] Can you do multiple namespace manifests in a single .swc from within builder?

2008-10-02 Thread Doug McCune
Yeah, you can do it. I do that both with the additional compiler args of the project properties panel and with ANT. So I've got something like this as my additional compiler args: -locale en_US -namespace http://ns1.dougmccune.com/ /manifest1.xml -namespace http://ns2.dougmccune.com/

Re: [flexcoders] Matching n groups with a regex?

2008-10-02 Thread Scott Melby
Josh - Maybe I am mis-understanding what you want to do... but, the following code var startStr:String =objectA.objectB.objectC; var afterSplit:Array = startStr.split(.); results in afterSplit[0] == objectA; afterSplit[1] == objectB; afterSplit[2] == objectC; Can you

[flexcoders] Chained data providers -- when to refresh and redraw?

2008-10-02 Thread kyleashipley
I have an architectural question concerning the use of sets of data providers for a Tree control. We have a master list of Users for our chat application, which we might need to filter and sort in various ways (buddies only, blocked only, etc). For our buddy list, we were using an adapter-esque

Re: [flexcoders] Matching n groups with a regex?

2008-10-02 Thread Josh McDonald
That's what I'm doing now as a workaround, but I need to run the regex anyway to see if the input matches the correct format. The perfectionist in me wants to extract the matches at the same time, and I want to know what's wrong with my regex, coz otherwise how will I learn? :D -Josh On Fri, Oct

  1   2   >