RE: [flexcoders] not kosher to call function from inline renderer?

2007-10-16 Thread Alex Harui
I think you want to use outerDocument. I'm surprised you didn't get a runtime error. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Hastings Sent: Tuesday, October 16, 2007 11:08 PM To: flexcoders@yahoogroups.com Subject: Re: [fle

RE: [flexcoders] Grid editor not being reused

2007-10-16 Thread Alex Harui
Only renderers are recycled. We might recycle editors someday, but not in 3.0 either. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of reflexactions Sent: Tuesday, October 16, 2007 11:18 PM To: flexcoders@yahoogroups.com Subject: [flexco

RE: [flexcoders] Re: security sandbox violations

2007-10-16 Thread Alex Harui
I suppose you could say that's a bug in Flex. You are either in a "remote" sandbox or one of the "local" sandboxes. You're only in "remote" when the swf is served via HTTP. If you're in local, it isn't a matter of what constitutes network i/o as much as what is in allowed by the sandbox.

[flexcoders] Grid editor not being reused

2007-10-16 Thread reflexactions
(Using FB3B2) I have a custom control I am using to edit a cell in a grid. I check it in the debugger every time I click in to the cell and a watch expression of "this" has a different "@" number, does this indcate as I think that it is a new instance being created every time. I though edit

[flexcoders] Re: security sandbox violations

2007-10-16 Thread Stephen Roy J. Tang
Also, my original understanding of "-use-network=false" is that the SWF would be trusted to access local resources, but not network resources. What counts as "network resources" in this case? I initially assumed that I would encounter an error if I uploaded the SWF and the image to a web server, bu

Re: [flexcoders] not kosher to call function from inline renderer?

2007-10-16 Thread Paul Hastings
Paul deCoursey wrote: > The inline component doesn't have that method in scope. Try > {this.parentDocumen t.blobToImage. ... spoke too soon. while this got rid of the complier error, that method's still not getting called ie breakpoints on it never get fired. any ideas? thanks.

[flexcoders] Re: HTTPService: Request timed out

2007-10-16 Thread mitek17
G'day! Here are the latest results from my HTTPService problems saga. I isolated the problem to the Apache2.x/mod_ssl2.x and HTTPService configuration. HTTPService works very stable with Apache 1.3/mod_ssl but with Apache2 SSL connection is vulnerable to network errors. With full logging tur

[flexcoders] How to use Refresh()

2007-10-16 Thread Tom Preet
In my application am using a button for Refresh. Upto Now: I have retrived the list of files from Directory in to the combo box usingthe Remote Object method. when I select a particular file from combo the content of the file is displaying on the text area. upto here working fine. along with t

[flexcoders] Re: security sandbox violations

2007-10-16 Thread Stephen Roy J. Tang
In that case, say I have an SWF compiled using FlexBuilder and I move the copy to another folder (or another machine), would it raise the security violation? --- In flexcoders@yahoogroups.com, Mac Martine <[EMAIL PROTECTED]> wrote: > > > When you create a Flex workspace, that workspace path is th

RE: [flexcoders] Problem printing component with

2007-10-16 Thread Alex Harui
It should be the updateComplete right after the "complete" event. Note that you have to wait for this before starting to print. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mitek17 Sent: Tuesday, October 16, 2007 10:41 PM To: flexcod

[flexcoders] Problem printing component with

2007-10-16 Thread mitek17
G'day! I've got a problem with printing a component which dynamically loads a SWF image. Sometimes image is missing from the print or it is printed well off the page. My understanding is that component is being printed before it's finished loading, measurements and rendering. Which event tells me

[flexcoders] Display Text Bold in Piechart

2007-10-16 Thread Ramanujam, Pratap
Hi Flexcoders, I have a problem dunnow why it isn't working. Appreciate any inputs on this. I have a pie chart component and I need to display the String Value beside the Pie chart in Bold. The String contains an attribute "result" which has to be displayed

RE: [flexcoders] stylesheet issue crashing app

2007-10-16 Thread Alex Harui
Are you using an mx:Application as the top tag in your app? It looks like you may not be and initialization is out of order. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Cuadra Sent: Tuesday, October 16, 2007 5:23 PM To: flexc

Re: [flexcoders] security sandbox violations

2007-10-16 Thread Mac Martine
When you create a Flex workspace, that workspace path is then added to the list of directories ³trusted² by the Player (in flexbuilder.cfg). Therefore, on your machine any files that are in that directory (or a subdirectory of that folder) are trusted. When your friend is trying to run it, the Pla

RE: [flexcoders] Help Needed Please.for beginner!!!...Flex and Struts Development Instructions

2007-10-16 Thread Dimitrios Gianninas
Yes that is correct, your MXML and AS classes get compiled into one binary file namely your index.swf. So yes if you try to access http://localhost:7001/bla/index.swf you will be accessing your Flex build app. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcode

RE: [flexcoders] bindable data type to update datagrid

2007-10-16 Thread Dimitrios Gianninas
Basically you are looking at binding some instance of an ArrayCollection to the dataProvider property of your grid, like so: Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of indawebbiz Sent: Tue 16/10/2007 4:31 PM To: flexcode

[flexcoders] Help Needed Please.for beginner!!!...Flex and Struts Development Instructions

2007-10-16 Thread tarun chandra
Hi Everyone, I just started developing in Flex since well yesterday. And I just wanted to make sure I was in the right path. I am using the Flex2 SDK and notepad, I am trying to develop a web application using struts and only flex for my View with no JSPs. So far I have created some mxml (index.

[flexcoders] stylesheet issue crashing app

2007-10-16 Thread Robert Cuadra
using Flex3 beta2. I have this in my .css file: .loginBoxLabel { color: #FF; font-size: 12; text-align: right; font-family: Verdana; } And this in a class which inherits from Panel: unLabel = new Label(); unLabel.styleName = 'loginBoxLabel'; unLabel.text = 'Username:'; this.add

[flexcoders] security sandbox violations

2007-10-16 Thread Stephen Roy J. Tang
Hi, How exactly does the Flash Player determine when it will throw a security sandbox error? I encountered a problem with a case like this: I had an Image object loading a file via relative path, i.e. . The swf works fine on my machine. A coworker checks out the source and compiles it on her own

Re: [flexcoders] Mock objects in AS3

2007-10-16 Thread Bjorn Schultheiss
try add flash.net.registerClassAlias( "attempt.TestInterface", TestInterface ); prior to your cast attempt. regards, Bjorn On 17/10/2007, at 1:06 PM, aduston1976 wrote: lus I see a number of places on the web where the idea is mentioned, e.g. http://www.herrodius.com/blog/?m=200704 . Howeve

[flexcoders] Mock objects in AS3

2007-10-16 Thread aduston1976
lus I see a number of places on the web where the idea is mentioned, e.g. http://www.herrodius.com/blog/?m=200704 . However I cannot find any mock frameworks for AS3. This evening I spent some time trying to mock one up on my own (ok, sorry for the pun!) but I ran into troubles. Is anyone interest

[flexcoders] Re: New Flex Aggregator

2007-10-16 Thread maunger
but it ain't done in flex :) --- In flexcoders@yahoogroups.com, "Seth Caldwell" <[EMAIL PROTECTED]> wrote: > > You meant http://www.flexbloggers.com > > =) > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Scott Stroz > Sent: Tuesday, October 16, 2007 2:50 PM

[flexcoders] Re: Flex modules and jms messaging

2007-10-16 Thread ivhaggi
Hi Alex, with your comments we checked the following link: Application Domain review and in the function that loads the module we add the ne

RE: [flexcoders] New Flex Aggregator

2007-10-16 Thread Seth Caldwell
You meant http://www.flexbloggers.com =) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Stroz Sent: Tuesday, October 16, 2007 2:50 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] New Flex Aggregator I would like to announce that I have launched a blo

[flexcoders] New Flex Aggregator

2007-10-16 Thread Scott Stroz
I would like to announce that I have launched a blog aggregator, similar to http://www.coldfusionbloggers.org, at http://www.AllYourFlexAreBelongToUs.com , or if that URL scares you, like it has some others, http://www.flexblogers.com. -- Scott Stroz http

[flexcoders] Re: bindable data type to update datagrid

2007-10-16 Thread kaleb_pederson
Bindable isn't a datatype. It's a metadata tag that tells the compiler that it needs to generate some code that will perform updates when the data changes. I posted a blog a week or so ago that talks about data binding and some of the code that is generated to support data binding. It might

[flexcoders] Re: Flex 2 Profiler

2007-10-16 Thread realeyes_jun
M@, Flex Builder 2 did not have a built in profiler. You need the Flex Builder 3 Beta for this. You can get it from labs: http://labs.adobe.com/technologies/flex/flexbuilder3/ The nice thing about Flex Builder 3 is that it has built in multiple SDK support so you can point to your Flex 2 SDK an

Re: [flexcoders] Re: Snippets in Flex?

2007-10-16 Thread George
Thanks Jun, I've already installed. I'm using FB3 beta 2 standalone. The Callisto Discovery Site update url not work for this version, must use the default Europa Discovery Site to update. Also, I found 'Select Required' make updates quite easy which I didn't realize such an option before. Geo

[flexcoders] Re: Snippets in Flex?

2007-10-16 Thread realeyes_jun
George, Sorry to hear you're having issues. I will admit it's one of the harder plugins to install. Anyway: - What version of Flex Builder you running? - Standalone or Plugin version, and if plugin what version of Eclipse? Also, you can try the following: - Using the Flex Builder/Eclipse buil

Re: [flexcoders] How to allow scroll in disabled TextArea?

2007-10-16 Thread Daniel Freiman
textArea.editable = false; - Dan Freiman On 10/16/07, dbronk <[EMAIL PROTECTED]> wrote: > > Part of my app has two panes. One on the left, on on the right. The > one on the left is not very wide and has the data entry fields. As > the user enters data in the form, the right pane changes to show

RE: [flexcoders] Re: Problems do make framework caching work

2007-10-16 Thread Alex Harui
Try just -keep From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Tuesday, October 16, 2007 1:49 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Problems do make framework caching work Hello Alex, I try t

[flexcoders] Re: Snippets in Flex?

2007-10-16 Thread realeyes_jun
Cool good point. However I'm kinda anal and don't really like that class name. :) Btw, you rock Alex! -Jun --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > You can always make a subclass called VBox100Pct > > > > > > From: flexcoder

[flexcoders] Re: Snippets in Flex?

2007-10-16 Thread realeyes_jun
--- In flexcoders@yahoogroups.com, Zac <[EMAIL PROTECTED]> wrote: > > On 16-Oct-07, at 9:42 AM, droponrcll wrote: > > > An interesting question...why can't they borrow the snippets code > > from Dreamweaver? > > Or the snippets code from the cfeclipse plugin. > Yeah...no doubt. :)

[flexcoders] Re: Snippets in Flex?

2007-10-16 Thread realeyes_jun
Amy, Sorry...was trying to assist you while being in a rush, see below. -Jun --- In flexcoders@yahoogroups.com, "droponrcll" <[EMAIL PROTECTED]> wrote: > > --- In flexcoders@yahoogroups.com, "realeyes_jun" jun@ wrote: > > > > Amy, > > > > I've done a bunch of research and demoing and currently I

[flexcoders] How to allow scroll in disabled TextArea?

2007-10-16 Thread dbronk
Part of my app has two panes. One on the left, on on the right. The one on the left is not very wide and has the data entry fields. As the user enters data in the form, the right pane changes to show the formatted document. I only want the user to be able to enter data in the left pane where th

[flexcoders] Re: Problems do make framework caching work

2007-10-16 Thread danielvlopes
Hello Alex, I try this and still getting error, saying keep-generated is not recognized. PainelAdmApp.mxml -keep-generated -runtime-shared-library-path=C:\3.0.0\frameworks\libs\framework.swc,C:\3.0.0\frameworks\rsls\framework_3.0.183453.swz,,framework_3.0.183453.swf -target-player=9.0.60 -service

[flexcoders] Nested accordion-like menus

2007-10-16 Thread jcamargo1969
Hi, I have a project that requires a collapsible accordion-like menu for a dashboard. It is to be used to select an item from a company's hierarchy. The top level is Groups, below each Group are Market Areas and below each Market Area are Business Units. Initially the menu would be in it's closed

[flexcoders] Scrollbar width

2007-10-16 Thread gur_sukh
Hi all, Is there a way we can change the width of the scrollbar. Thanks Jas

[flexcoders] bindable data type to update datagrid

2007-10-16 Thread indawebbiz
what datatype is bindable? so that when the results of my search are returned the datagrid will update. i'm a newbie practicing my flex by rebuilding my portfolio. so far i have my xml data, a ComboBox that displays the technologies i have worked with, a btn that triggers a search of projects base

RE: [flexcoders] Centering CheckBox itemRenderer in grid cell?

2007-10-16 Thread Alex Harui
http://blogs.adobe.com/aharui/2007/04/more_thinking_about_item_rende.htm l From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Tuesday, October 16, 2007 1:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Centering

RE: [flexcoders] Re: Problems do make framework caching work

2007-10-16 Thread Alex Harui
You want to force update to 9.0.60 or else if the user clears his cache he'll have to download the framework rsl again. Try building from the command line with -keep-generated. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvl

RE: [flexcoders] Re: Problems do make framework caching work

2007-10-16 Thread Alex Harui
It is a parameter to MXMLC From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Tuesday, October 16, 2007 12:51 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Problems do make framework caching work Hum sti

RE: [flexcoders] Can't figure out why this fails : creating a TabBar using AS

2007-10-16 Thread Alex Harui
Actually, a TabBar holds Tabs which are buttons. Do you want to create TabNavigators instead? They hold Canvases. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sheriff Sent: Tuesday, October 16, 2007 12:45 PM To: flexcoders@yahoog

[flexcoders] Centering CheckBox itemRenderer in grid cell?

2007-10-16 Thread candysmate
How can I center the checkbox I have as an itemRenderer within a data grid's column please?

Re: [flexcoders] Re: Flex Remoting Options - Any Opinions?

2007-10-16 Thread Paul Dale
Has the pricing been improved on LCDS? When I last looked into FDS it was ~20k EUR per CPU, which is just silly. On 10/16/07, Anatole Tartakovsky <[EMAIL PROTECTED]> wrote: > > Bruce, > None of the options you have would work for serious production > application unless you invest heavily in

[flexcoders] Re: Problems do make framework caching work

2007-10-16 Thread danielvlopes
Hum still don't working, only work whe i compile using flexbuilder... whe i compile in ant and try access web app nothing happen either erros msg or initial preloader, everything keep white (background color of my app)... What i must do to -keep-generated work to generate the .as file? Thanks. -

Re: [flexcoders] Re: Flex Remoting Options - Any Opinions?

2007-10-16 Thread Anatole Tartakovsky
Bruce, None of the options you have would work for serious production application unless you invest heavily in making the client and server code more reliable. Please keep in mind that once you go that route you are on your own for data traffic robustness and performance. I would try to see if

Re: [flexcoders] Can't figure out why this fails : creating a TabBar using AS

2007-10-16 Thread Sheriff
the tabBar holds buttons, tab itself is a button so we are u using a canvas? - Original Message From: oneproofdk <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, October 16, 2007 2:39:43 PM Subject: [flexcoders] Can't figure out why this fails : creating a TabBar using A

[flexcoders] Re: Problems do make framework caching work

2007-10-16 Thread danielvlopes
Hello alex... I think the reason is a change the beta1 to beta2 and some configurations in Flex Build Path still like in beta1, using .sgn file and not .swz file. I clean all configurations and remake like showed in video on labs, and now compiling from command line works... But when i try use -kee

[flexcoders] Can't figure out why this fails : creating a TabBar using AS

2007-10-16 Thread oneproofdk
Hi. I'm trying to loop through a ArrayCollection and make a TabBar for each item This fails miserably - "Cant convert Canvas to Button" - I've been staring at this all day today (it's almost 10pm here in Denmark now). So I'd be very please if some of you guys could have a look - propably some stup

Re: [flexcoders] flex remoting with cf7 running on weblogic

2007-10-16 Thread Derrick Anderson
ok, i had a guy that actually knows weblogic come over and set me straight... i have to call the flex gateway like http://{ipaddress_or_domain}:7100/{appName}/flex2gateway/ and i get the blank page i've been waiting for.. but this brings up another problem, we are not going to want to be making

RE: [flexcoders] tree itemRenderer problem

2007-10-16 Thread Alex Harui
2.x or 3.0? In 2.x, mouseEnabled=false and may affect ContextMenu. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Schuenke Sent: Tuesday, October 16, 2007 9:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] tree itemRende

RE: [flexcoders] Re: Snippets in Flex?

2007-10-16 Thread Alex Harui
You can always make a subclass called VBox100Pct From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of droponrcll Sent: Tuesday, October 16, 2007 9:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Snippets in Flex? --- In fle

RE: [flexcoders] Re: Flex modules and jms messaging

2007-10-16 Thread Alex Harui
Consumers and messaging is not my area of expertise, but I talked to one of the engineers in that area. Your AS data objects must be "registered" in the same application domain as the network services you are using, and probably need to get registered before any network i/o takes place. In the ca

[flexcoders] Re: ColdFusion CFCs Not Returning Data

2007-10-16 Thread Randy Martin
I solved this problem by rearranging some of the code -- moving the call to remoteObject to a function that is called later in the app. ~randy --- In flexcoders@yahoogroups.com, "Randy Martin" <[EMAIL PROTECTED]> wrote: > > > I never got any response to this email. If no one knows anything ab

RE: [flexcoders] Attn Moderators: A few users need help with configurations

2007-10-16 Thread Dimitrios Gianninas
Already emailed them, thx Alex. Dimitrios Gianninas Development Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Tuesday, October 16, 2007 3:02 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Re: Problems do make framework caching work

2007-10-16 Thread Alex Harui
I use command line compiling all the time. Can you add -keep-generated to your mxml commands? It will create a folder called "generated". I want to see the file whose name ends with "_mx_managers_SystemManager-generated.as: From: flexcoders@yahoogroups.com [

[flexcoders] FileReference.upload() and SSL

2007-10-16 Thread Richard Rodseth
Tomcat/Struts. Works great over HTTP, fails over HTTPS (all browsers). I'm told I need a crossdomain.xml (haven't until now). Does this ancient article still apply? http://www.onflex.org/ted/2005/11/using-flash-player-under-https-with.php

RE: [flexcoders] Can the Datagrid do this ?

2007-10-16 Thread Alex Harui
You want to set selectedItem if you can get your hands on the exact item in the dataprovider. Otherwise, you have to scan for the item in order to figure out the index of it and set selectedIndex. If you have sorted your collection, you can use findAny on an IViewCursor, but that essentially does

[flexcoders] Attn Moderators: A few users need help with configurations

2007-10-16 Thread Alex Harui
I've seen two folks trying to figure out how to not get every email. Can you help them out?

RE: [flexcoders] Re: searching or filtering a tree

2007-10-16 Thread Alex Harui
Trees use hierarchical data, take a top-level flat collection, and use the dataDescriptor to get children collections. A custom datadescriptor can apply a filter to the children collections, and even apply different filters to different children collections. In Moxie, there should be a Hierarchic

[flexcoders] Instantiating an HTTPService with actionscript

2007-10-16 Thread donvoltz
Hi, Would someone show me how to send an HTTPService using actionscript. For example, how would I do the following without using tags? {mode} {mode2} {catid} Thanks in advance for the help Don

Re: [flexcoders] Adobe Boston User Group :: Meeting Tomorrow :: Custom Component Development

2007-10-16 Thread Luís Eduardo
lol, i liked the "where" clause witch says(expecially the a) one ) : "Note: The Stata Center's doors are generally locked at this hour. Your options for entering are: a) follow someone who is entering with a key card; b) we'll try to have a volunteer at the main entrance closest to Vas

Re: [flexcoders] flex remoting with cf7 running on weblogic

2007-10-16 Thread Derrick Anderson
actually, i checked the BEA admin and in the servlets section i see MessageBrokerServlet /flex2gateway/ myserver 0 0 so weblogic does recognize it... On 10/16/07, Derrick

[flexcoders] Re: httpservice vs xml

2007-10-16 Thread Jack OMelia
When you use an XML tag you embed the xml in the swf. If you use HTTPService the xml is brought in at runtime and can therefore be changed without recompiling the swf. HTH, Jack --- In flexcoders@yahoogroups.com, Zac <[EMAIL PROTECTED]> wrote: > > Is there any reason why you would use the mx:http

[flexcoders] flex problem with coldfusion 8

2007-10-16 Thread Rick Root
I posted this problem to [EMAIL PROTECTED] a week or so ago but I haven't gotten a solution yet. So I'm trying flexcoders and cf-talk I have an application that doesn't seem to be working properly. Basically, I've got a query (in coldfusion 8) that returns a few columns directly to flex via a

[flexcoders] Re: searching or filtering a tree

2007-10-16 Thread TJ Downes
Chris, did you find a solution for this problem? --- In flexcoders@yahoogroups.com, "zenwarden" <[EMAIL PROTECTED]> wrote: > > Ignore the comment below. It is acceptable (at least in a hack) to > always return true. > > Sadly, this code example is not working, but it has put me on the > righ

Re: [flexcoders] httpservice vs xml

2007-10-16 Thread Zac
On 16-Oct-07, at 11:11 AM, Scott Bachman wrote: > The biggest difference is that when use mx:XML the xml data is > embedded into your SWF Well that explains another issue I was having earlier this week

[flexcoders] Drag and Drop onto AIR Flex

2007-10-16 Thread Robert Thompson
Does anybody have reference to the latest Flex3 Beta examples? What is the latest method of using drag and drop for multiple operating systems to drop onto an AIR application and upload files? thx p.s. Flex3 to be released any day right? At MAX next week is it? ---

Re: [flexcoders] httpservice vs xml

2007-10-16 Thread Scott Bachman
The biggest difference is that when use mx:XML the xml data is embedded into your SWF, but with mx:HttpService it's not. So if you use a lot of mx:XML tags or big xml files it could make you're SWF considerably larger. Scott On 10/16/07, Zac <[EMAIL PROTECTED]> wrote: > > Is there any reason wh

[flexcoders] Flex 2 Profiler

2007-10-16 Thread M@ Sheppard
I've found several articles that reference the flex profiler - but I am at a loss as to where it is. There are some recent posts here about the Flex 3 profiler, but I am looking for one that will work with a flex builder 2 project. I don't have the profile.war file on my dev system (installed Fle

RE: [flexcoders] not kosher to call function from inline renderer?

2007-10-16 Thread Darin Ashby
I really need to unsubscribe to this. Didn't realize I would get e-mailed a copy of every entry in every thread. I used to think I got a lot of junk mail...this, however, is overwhelming. Please help!! Thanks, Darin >From: Paul Hastings <[EMAIL PROTECTED]> >Reply-To: flexcoders@yahoogroups

[flexcoders] httpservice vs xml

2007-10-16 Thread Zac
Is there any reason why you would use the mx:httpservice tag as opposed to the mx:xml tag to import external XML data? I am using both in an application and both work fine yet whenever I see an example of loading external XML data it is always with the mx:httpservice tag. Am I missing a be

Re: [flexcoders] Re: Flex Remoting Options - Any Opinions?

2007-10-16 Thread Bruce Hopkins
Yeah, I'm using HTTPService right now with E4X results. The for large data results, however, XML is not desirable. I'd prefer to use some framework that uses AMF3 in order to get more compact results. Bruce On 10/16/07, Jeff Schuenke <[EMAIL PROTECTED]> wrote: > > You can also just use HTTPSer

Re: [flexcoders] flex remoting with cf7 running on weblogic

2007-10-16 Thread Derrick Anderson
is it not the web.xml for my application that determines that? i have the following in my web.xml file: MessageBrokerServlet /flex2gateway/* i'm not sure what else to do to make it recognize the url, is this a weblogic problem or a CF problem?? On 10/16/07, Tom

Re: [flexcoders] Maven plugin out of memory problem

2007-10-16 Thread Christian Edward Gruber
I'm blind, sorry. I saw antrun and ignored the rest of the pom. lol. So I'm not seeing anything that would cause this. One thing you can do is execute "mvn -X blah blah" and look at the debug output. The output should include the command-line, and then the compc or mxmlc options provided

Re: [flexcoders] Maven plugin out of memory problem

2007-10-16 Thread Ronen Naor
Actually, I forgot one more detail, I have more configuration in the parent pom which I override: net.israfil.mojo maven-flex2-plugin 1.1 true ${flex.home} true

Re: [flexcoders] Getting Mouse Coords

2007-10-16 Thread Sheriff
get it from the application this.mouseX, this.mouseY or parent or whatever - Original Message From: essuark <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, October 16, 2007 12:19:19 PM Subject: [flexcoders] Getting Mouse Coords I need to t

Re: [flexcoders] Maven plugin out of memory problem

2007-10-16 Thread Ronen Naor
sure, it was alreasy as part of the pom I sent, only it is not used right now. Here it is again: net.israfil.mojo maven-flex2-plugin true true true true ../aa-we

Re: [flexcoders] Maven plugin out of memory problem

2007-10-16 Thread Christian Edward Gruber
Ok, unfortunately the antrun config doesn't help me because if htere's something subtle we're not seeing that you got right in the antrun, well... we can't see it. Could you send the snippet that configures the plugin only. If you change any paths and proprietary names, then it can't be a di

Re: [flexcoders] Can the Datagrid do this ?

2007-10-16 Thread Jeffry Houser
I think selectedIndex needs an integer. You'd have to loop over the data provider, figure out which one has capital==Paris' and then set the selectedIndex based on that. You could also experiment with selectedItem; although I haven't experimented with setting that. d coda wrote: > > >

[flexcoders] Re: Problems do make framework caching work

2007-10-16 Thread danielvlopes
I think the swz must be loaded, or not? I must upload swz and swf, right? If right, i doing right, but still doesn`t work, i try exactly Darrel teached, but dont work. I become thinking framework caching can't work when use ant for compile. Here is the link for test: www.areaprojetos.com , in bot

[flexcoders] Re: Flex modules and jms messaging

2007-10-16 Thread ivhaggi
Hi Alex again !! Thanks for your time to answer. I checked the presentation in order to begin my project and it help us so much, the problem is to get data in the module from the consumer. The scenario is the next one: * We created several projects, each of them with one or more modules.We a

Re: [flexcoders] Re: Snippets in Flex?

2007-10-16 Thread Zac
On 16-Oct-07, at 9:42 AM, droponrcll wrote: > An interesting question...why can't they borrow the snippets code > from Dreamweaver? Or the snippets code from the cfeclipse plugin.

[flexcoders] Getting Mouse Coords

2007-10-16 Thread essuark
I need to the x&y coords of the mouse during a Timer Event. Any way to do this? thanks Ralph

[flexcoders] Can the Datagrid do this ?

2007-10-16 Thread d coda
Hi all I need to programmatically select a particular row in a datagrid and cannot see how it is done. I want to do the same as if the user clicked on a row only programmatically. Say I had a DataGrid with ID=dg containing two columns Countries and Capitals. I want to be able to issue a command

Re: [flexcoders] Re: Snippets in Flex?

2007-10-16 Thread George
Thanks Jun. I read your post before but didn't get that installed successfully. Try it again today so. The eclipse is always hard task to update even such a single snippet to be installed will asking us for more relative updates. Such as what I get right now. Requested operation cannot be perf

[flexcoders] Re: Flex Builder cannot locate the required debug version of the Flash Player

2007-10-16 Thread Mike Morearty
You can also find the installer for the Flash player in the "Player" subdirectory of your Flex Builder installation. In fact, if you are running the Flex Builder 3 beta, then you should install the player from the "Player" directory, not the one from the official adobe.com download page. The reas

[flexcoders] Re: Flex Remoting Options - Any Opinions?

2007-10-16 Thread Jeff Schuenke
You can also just use HTTPService to do direct HTTP requests. I am using this for communications with a JAVA backend. --- In flexcoders@yahoogroups.com, "Bruce Hopkins" <[EMAIL PROTECTED]> wrote: > > Hi all, > > All I want to do is have my Flex client to communicate with my Java backend. > Du

Re: [flexcoders] Re: Unknown destination 'EmployeeServiceRO

2007-10-16 Thread Greg Morphis
So I copied the folder down from dev to my local machine. I was able to run the app from there.. But I cannot build my copy in Eclipse and run it. WTF?!?!?! This is pissing me off On 10/16/07, Greg Morphis <[EMAIL PROTECTED]> wrote: > > I copied the tomcat folder from our dev server down to my

[flexcoders] Flex Remoting Options - Any Opinions?

2007-10-16 Thread Bruce Hopkins
Hi all, All I want to do is have my Flex client to communicate with my Java backend. Due to licensing restrictions, LCDS won't be an option for us. So far the biggest contenders are: 1. Granite Data Services 2. OpenAMF 3. WebORB 4. Red5 Does anyone have any strong opinions, suggestions, or biase

[flexcoders] tree itemRenderer problem

2007-10-16 Thread Jeff Schuenke
Hi, I have created a custom itemRenderer for a tree control to handle dynamiclly loaded icon image. I'd also like to add a unique context menu to each item. I have assigned a context menu to the label and icon, but only the icon menu appears. I then tried to combine the icon and label into a cont

[flexcoders] Re: Snippets in Flex?

2007-10-16 Thread droponrcll
--- In flexcoders@yahoogroups.com, "realeyes_jun" <[EMAIL PROTECTED]> wrote: > > Amy, > > I've done a bunch of research and demoing and currently I think that WST > is best for snippets in MXML and AS. > If you want a description and some screenshots: > > http://office.realeyesmedia.com/blogs/ju

RE: [flexcoders] RangeError: Error #2006: The supplied index is out of bounds.

2007-10-16 Thread Alex Harui
If the DG thinks the renderer needs an update because its size may have changed, it will refresh all renderers. Maybe when you use the slider a second time the slider/renderer thinks it needs a re-measure. Also note that renderers are recycled so the second time around the renderer may not be in

RE: [flexcoders] Very strange runtime error with a repeater.

2007-10-16 Thread Alex Harui
Do you have a 'name' property in your data provider objects? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Sent: Monday, October 15, 2007 4:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Very strange runtime error with

RE: [flexcoders] How do I declare a DataGridHeader for a datagrid?

2007-10-16 Thread Alex Harui
You set the headerRenderer in the DataGridColumn. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of steve Sent: Monday, October 15, 2007 4:05 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How do I declare a DataGridHeader for a d

RE: [flexcoders] Label alignment?

2007-10-16 Thread Alex Harui
Just by changing the Label's y position, or subclassing and changing the internal TextField's position. In Moxie, we found and fixed a lot of baseline-position calculations so some things should line up better. From: flexcoders@yahoogroups.com [mailto:[EMAIL P

RE: [flexcoders] Problems do make framework caching work

2007-10-16 Thread Alex Harui
That sounds right to me. framework_3.0.183453.swf will be loaded the very first time you run the app, then it should never get loaded again. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of danielvlopes Sent: Tuesday, October 16, 2007 7:

Re: [flexcoders] Flex wsdl concatanating url after moving to new domain Siteminder / apache / CF

2007-10-16 Thread Giles Roadnight
I forgot to say that this is a secure site (https) but we don't have a certificate for the new url yet. You do get browser errors but the flash site does load. Not sure if this will be confusing flash. Thanks again. On 10/16/07, Giles Roadnight <[EMAIL PROTECTED]> wrote: > > Hi All > > I've go

RE: [flexcoders] Module tag

2007-10-16 Thread Alex Harui
I'm not sure I understand. You can certainly choose which module to load at runtime. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kutti kumar Sent: Tuesday, October 16, 2007 8:21 AM To: flexcoders@yahoogroups.com Subject: [flexcoders

  1   2   >