Re: [flexcoders] Re: ObserveValue, and how to reference within AS3 Class File

2007-01-16 Thread Bjorn Schultheiss
why you want to use data binding in an ActionScript environment What if your mxml component is subclasses ViewStack or Panel where they only accept child's that are display objects. The tag is unusable in that case and the solution would be nice to implement in the script block. For now i

[flexcoders] Re: Pie Chart Bug!? Weird Behavior....

2007-01-16 Thread phipzkillah
Problem solved! My brain is definitely burned out, but I guess thats expected... So this is the deal - If you have a pie chart that looks messed up like the one below it's most likely due to the fact your trying to plot something with a value of 0. Simple math proves that a pie slice can't be a

[flexcoders] Inerface IManaged not found Re: Performance Enhancement of Flex Application

2007-01-16 Thread haravallabhan
Thanks gr8 work clint... thanks a lot... it worked... I was searching for web-inf/flex/libs but it looks like it takes form the sdk framework thanks a lot clint. cheers Hara --- In flexcoders@yahoogroups.com, "Clint Modien" <[EMAIL PROTECTED]> wrote: > > Sounds like you're missing the fds.s

[flexcoders] Re: Display Object BUG?

2007-01-16 Thread wayne_badu_johnson
Hi Jason You are not alone, I have experienced this as well. sorry no workarounds to give you though. Cheers Wayne --- In flexcoders@yahoogroups.com, "jnewport" <[EMAIL PROTECTED]> wrote: > > Wondering if anyone else has seen this issue? Whenever you scroll in > a datagrid it shows information

[flexcoders] AMFPHP & Security

2007-01-16 Thread Kevin
Is there any good information available on how to properly secure AMFPHP/Flex. It seems like a simple decompile of the swf file can expose a wealth of information which could allow a hacker to easily connect to the gateway and call any number of methods. Is there any information on availa

[flexcoders] Display Object BUG?

2007-01-16 Thread jnewport
Wondering if anyone else has seen this issue? Whenever you scroll in a datagrid it shows information outside or above the datagrid container. See example here: http://www.adhder.com/test/DBone.jpg Scroll to the bottom to see the BUG. This datagrid contains item renders, but it has happened

[flexcoders] Re: .Net webservice and datagrid

2007-01-16 Thread nathanbrown19
Hi, Is: In the namespace field added by the RTF editor for this mailing list, or is it really in your code? I'm no namespace master, but is it correct/neccessary? Also any < or > symbols in XML attributes (including namespaces) should be encoded, e.g. > or <. If you

[flexcoders] FYI - Vancouver, Canada Flex/Apollo Event

2007-01-16 Thread Duane Nickull
Anyone here interested in coming to a 3 hour Flex/Apollo event in Vancouver, BC at the Massive Tech show March 28? It is run by Lindsay who used to bring the monthly techvibes shows to Vancouver and Toronto and usually gets over 4000-5000 people. http://www.massivetechshow.com/speakers/spea

[flexcoders] Re: Scroll Bar

2007-01-16 Thread gibtinman
--- In flexcoders@yahoogroups.com, "nabirami" <[EMAIL PROTECTED]> wrote: > > I have a Hbox container which has textbox. The percentwidth and > percentheight properties of the textbox are set to 100%. Hbox has a > fixed width. The scrollpolicy of Hbox is auto. Is there an event (or > other way) t

Re: [flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-16 Thread Douglas Knudsen
Raised max vm memory to 1024m still got the issue. Dk On 1/16/07, Mac Martine <[EMAIL PROTECTED]> wrote: > > If you are running out of memory in plugin, you can increase the memory for > Eclipse with the additional VM argument: "-Xmx768m", which lets it use up to > 768MB of memory. If you have le

RE: [flexcoders] Re: Using Automation with Horizontal List

2007-01-16 Thread Tracy Spratt
First, what is "QTP"? And how is it "picking up" data? It is certainly not going to be able to get anything from the itemRenderers. Second, what datatype are the objects in the dataProvider? If mx:Object, then they are dynamic and you can add properties to them. I still do not understa

Re: [flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-16 Thread Mac Martine
If you are running out of memory in plugin, you can increase the memory for Eclipse with the additional VM argument: "-Xmx768m", which lets it use up to 768MB of memory. If you have less free memory, adjust accordingly. More on that here: http://ist.berkeley.edu/as/ag/tools/howto/install-eclipse-

[flexcoders] Scroll wheel doesn't work on Mac

2007-01-16 Thread tobiaspatton
Hello list; Has anyone else noticed that the mouse scroll wheel does not scroll lists on Mac OS X? I've tried in Safari and Firefox. Thanks. Tobias.

Re: [flexcoders] Re: Flex Builder no longer compiles

2007-01-16 Thread Webdevotion
Dusty, can you check if you get the following error in the error log in the Plug In Development perspective of Eclipse 3.2 ? Uncaught exception in compiler According to this page, this error should be fixed ...

RE: [flexcoders] Re: Updating a DataService fill

2007-01-16 Thread Jeff Vroom
As long as you add the refreshFill to the "DataServiceTransaction.getCurrentDataServiceTransaction" it will be run after the transaction commits. One way to get more information about what is happening is to turn on debug logging in WEB-INF/flex/services-config.xml (search for level=".." change th

[flexcoders] Re: Using Automation with Horizontal List

2007-01-16 Thread eucliptica
Exactly what you explained. is the list and item renderer is bound to an object in ArrayCollection. Well main problem here is that data that I bind to is coming through FDS and I can not change dataProvider (objects in that arraycollection) to add automationName property that I would (not d

[flexcoders] Re: Using Automation with Horizontal List

2007-01-16 Thread eucliptica
Exactly what you explained. is the list and item renderer is bound to an object in ArrayCollection. Well main problem here is that data that I bind to is coming through FDS and I can not change dataProvider (objects in that arraycollection) to add automationName property that I would (not d

[flexcoders] Pie Chart Bug!? Weird Behavior....

2007-01-16 Thread phipzkillah
Hi, I have a pie chart (could have fooled be based on the output!) that is being displayed incorrectly, as you can see below. The datagrid view is correct: Here is my mxml:

RE: [flexcoders] Code behind- do you use it?

2007-01-16 Thread Dimitrios Gianninas
I do everything in script blocks and write helper classes where needed. But I also breakdown the app as much as possible, so those script blocks and views are as small as possible. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yaho

Re: [flexcoders] Code behind- do you use it?

2007-01-16 Thread Daniel Wabyick
Good poont. The example I gave is not exactly describing code-behind. I would use the within another VBox (e.g), not as a top element. Nevertheless, I do use code-behinds (using an Actionscript class as the top element of an MXML component) at times, but usually more as an abstract class whe

RE: [flexcoders] Re: Cairngorm support for Flex 2.0.1 modules?

2007-01-16 Thread Dirk Eismann
I think the two actions Derrick mentions - to use BindingUtils to remove {} bindings and to use weak reference listeners where possible - are the two key techniques to limit memory / GC issues. This is not only something to watch out for when loading/unloading Modules but also when components

RE: [flexcoders] Cairngorm support for Flex 2.0.1 modules?

2007-01-16 Thread Dirk Eismann
Another use case would be to replace certain parts of the Cairngorm infrastructure (ServiceLocator instance, specific Delegate) depending on e.g. a dynamically loaded configuration file. This way e.g. Delegates could easily be replaced by just pointing to another Module. Dirk. -Ursprüngli

[flexcoders] Titlewindow dragging and dropping within canvas

2007-01-16 Thread Shailesh Mangal
I need to put a titleWindow over the canvas (either as a child or as popup) and should be draggable by it titleBar (and not the body) confined with the canvas and should not flow over other components on the screen. I did it successfully by implementing custom dragging but that lets the whole tit

[flexcoders] Preventing two or more people from filling out a form at the same time

2007-01-16 Thread Jim Pickering
Can someone lead me to some Flex 2 documentation that explains how prevent two or more people from filling out a form at the same time? I am building a Flex 2 based Intranet application that uses FDS to push data changes to all of the clients. If one user is filling out a form, I want that form to

Re: [flexcoders] Chart Series added programmatically don't display

2007-01-16 Thread Brendan Meutzner
Not sure I understand your response Ely, but I've had success adding series dynamically to the CartesianChart... here's an example... right click for source: http://www.stretchmedia.ca/code_examples/offset_calculator/SeriesOffsetCalculator.html And yes, this is an opportunity to pitch my little

RE: [flexcoders] custom data tip in stacked bar chart

2007-01-16 Thread Ely Greenfield
Hi Suri. THe totals for the items are stored as part of the grouping series (i..e, the ColumnSet, BarSet, etc) in an internal variable called totalsByPrimaryAxis. This variable is protected, so to access it you'll need to write a custom extension to the class. It's a dictionary, where the keys

[flexcoders] Removing focus from a dataGrid

2007-01-16 Thread patricklemiuex
Hi There, I posted this, and searched and still did not find an answer, I have multiple datagrids on the screen... Can you point me in the right direction of how to remove focus from the other while one is selected? Cheers, Hope you can help me. Patrick

RE: [flexcoders] .Net webservice and datagrid

2007-01-16 Thread Tracy Spratt
Notice the xml elements do not have namespace prefixes. This means that they are using the default namespace which is declared in the root tag, without a prefix. So adding this directive: default xml namespace = "http://mysite.com/ "; should allow you to reference the nodes.

RE: [flexcoders] Re: Using Automation with Horizontal List

2007-01-16 Thread Tracy Spratt
I mean you can't add a property to an itemRenderer. An item renderer only renderers items, it is not a persistent, referenceable object. You need to add automationName to the dataProvider, and let the renderer display it.. What exactly are you trying to do? Tracy _

[flexcoders] Re: Hyperlinks in text that call a function, not a URL

2007-01-16 Thread thegators_2002
Tracy, that's a great example. I didn't know you could put an event emitter in an anchor tag like that. Thanks a million!

Re: [flexcoders] Code behind- do you use it?

2007-01-16 Thread Ralf Bokelberg
From an OOP point of view, would you really create a subclass just to divide the code into smaller pieces? I guess no. Imho it's better practice to extract real classes/objects from mxml files, if possible. Cheers, Ralf. On 1/16/07, Daniel Wabyick <[EMAIL PROTECTED]> wrote: I highly recomme

[flexcoders] Re: .Net webservice and datagrid

2007-01-16 Thread ben.clinkinbeard
Yep, you have to specifically address the namespace. The easiest way is the use namespace directive. More detailed explanation here: http://www.returnundefined.com/2006/07/datagrid-labelfunction-and-namespaces/ HTH, Ben --- In flexcoders@yahoogroups.com, "btkracker" <[EMAIL PROTECTED]> wrote: >

[flexcoders] Re: Right-click menu while dragging

2007-01-16 Thread michael.ritchie
Solved! I finally found a solution to the context menu appearing on drag items and menus in Flex. The information came from Adobe's new Flex Cookbook: http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&productId=2&postId=2201 --- In flexcoders@yahoogroups.com, "Michael Ri

RE: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Battershall, Jeff
Mark, Thanks! - I haven't tried this yet, but it looks like you nailed it. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Doberenz Sent: Tuesday, January 16, 2007 3:27 PM To: flexcoders@yahoogroups.c

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Mark Doberenz
OK, I was able to finally get somewhere with this... Here's what I was using in my Delegate in the login method... var call:AsyncToken = service.login(username, password); service.addEventListener(ResultEvent.RESULT, responder.result); service.addEventListener(FaultEvent.FAULT, responder.fault);

RE: [flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-16 Thread Allen Riddle
I got that all the time, even with 2.0.0. I had to switch to the stand alone Flex Builder. That plugin is buggy. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Douglas Knudsen Sent: Tuesday, January 16, 2007 1:58 PM To: flexcoders@yahoo

Re: [flexcoders] Re: Flex Builder no longer compiles

2007-01-16 Thread Webdevotion
I also ran into these types of errors. Only thing that works for me is create a new main class and copy paste the code from the previous main class. Then I set the latest main class to the default application. This forces Flex Builder to recreate the swf files and it gets rid of the errors you de

Re: [flexcoders] Code behind- do you use it?

2007-01-16 Thread Daniel Wabyick
I highly recommend it as well. As a simple example, I might want to enhance the List component to autoscroll to the selected item upon selection. Simply create a class 'AutoscrollList.as' that you can then use that class in your MXML . (code included below) Like others, I don't use it when I

Re: [flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-16 Thread Douglas Knudsen
using the FDS plugin and Tomcat hereI get out-of-memory errors and eclipse crashing often DK On 1/16/07, Allen Riddle <[EMAIL PROTECTED]> wrote: I don't think so; I'm running mine on Tomcat, with no embedded fonts. And is slower than dirt. The fact that it wasn't slow on 2.0.0 tells us so

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Thijs Triemstra
I'm using Cairngorm 2.1 here so I don't think it's something that changed in the newest version.. :( Your idea of the UID sounds like it will work but I'd prefer not send extra data back and forth and it also won't clean up these redundant event notifications.. It seems that cairngorm creat

[flexcoders] .Net webservice and datagrid

2007-01-16 Thread btkracker
I'm trying to receive XML data from a .Net webservice and populate a datagrid. I'm able to receive the XML data ok but I can't see anything in the datagrid. I attempted to manually duplicate the data returned and found that it has something to do with the moniker returned. Here is the XML re

[flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-16 Thread Cato Paus
Hi, I have the Platinum Support at Adobe so let see if it works .. I will post A.S.A.P. if Adobe come up with something. Cato --- In flexcoders@yahoogroups.com, "Allen Riddle" <[EMAIL PROTECTED]> wrote: > > I don't think so; I'm running mine on Tomcat, with no embedded fonts. > And is slower th

RE: [flexcoders] Custom axis drawing (charts)?

2007-01-16 Thread Ely Greenfield
Hi Vigen. You can write your own custom axisRenderer if you like. I have an example that does that up on my blog at quietlyscheming.com (see the interactive bubble chart). You could theoretically subclass the default AxisRenderer and add to it, although that might get pretty hairy. Ely. _

Re: [flexcoders] Newbie asks why Flex?

2007-01-16 Thread greg h
Mark, I, like Bruce (aka boy_trike) have been in the industry a while (me only 2 decades :-) And I, like you, have my roots as a database specialist. I will reply more fully when I have time. Hopefully others on the list will share their thoughts and answer your questions in the mean time. fy

[flexcoders] Re: custom data tip in stacked bar chart

2007-01-16 Thread suri_boston
Hi Matt, I looked at the link but it is for 100% chart and when i changed it to stacked chart, it wont work.. i am looking to create a data tip for stacked column/bar chart.. Is there a way, where i can find the "total"/"sum" value for the stacked series? if i can get it through the api, i can

RE: [flexcoders] Chart Series added programmatically don't display

2007-01-16 Thread Ely Greenfield
That's usually an indiciation that the chart is correctly using the series, but for some reason the series isn't part of the chart's display tree. The most common case for this is if you try and put the same series in two different charts. They'll both behave like they contain the series, bu

RE: [flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-16 Thread Allen Riddle
I don't think so; I'm running mine on Tomcat, with no embedded fonts. And is slower than dirt. The fact that it wasn't slow on 2.0.0 tells us something changed in the compilation process, and hopefully isn't environment related. From: flexcoders@yahoogroups.com

[flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-16 Thread Cato Paus
Hi All :) I have the Build Automatic set to off, end i have tried to delete the embeded fonts in my css, but Flex stil going slow, could it have somthing to do with that I'm running on fds2 and compailing to a JRun4 server ? --- In flexcoders@yahoogroups.com, "Rick Schmitty" <[EMAIL PROTECTED]

RE: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Battershall, Jeff
Well using mx.utils.UIDUtil.createUID() to give each RO call a unique marker and then checking for a match on result is a way to go, biut it certainly feels kludgey. I'd like to see some input from the Adobe consulting folks - perhaps this has been addressed in Cairngorm 2.1 - I'm using 2.0.

Re: [flexcoders] Code behind- do you use it?

2007-01-16 Thread Martin Wood-Mitrovski
> So what are others doing? No AS in your MXML files, no code behind, a > mixture of the two? I use it practically 100% of the time. If the mxml file only has a small amount of code and is unlikely to expand then its probably overkill but for anything with more than a couple of methods i use it

Re: [flexcoders] Code behind- do you use it?

2007-01-16 Thread Mark Doberenz
All, Thanks for this discussion! I hadn't heard of this before, so I googled it and found this article: http://www.adobe.com/devnet/flex/quickstart/building_components_using_code_behind/ I'm going to try this out and see how it works. Then maybe I'll be a beneficial poster to this discussion

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Mark Doberenz
You're right, I was just calling them duplicate events, but repeated ones from earlier events is a much better way to say it. I'm coding up a Fluorine app for the middleware... I'm not all that sure how to use CF :( I'm basing my Flex app off of Sam Shrefler's Flex 2, Cairngorm, Fluorine tutoria

[flexcoders] Re: Using Automation with Horizontal List

2007-01-16 Thread eucliptica
Do you mean that when itemRenderer is initialized I need to go and find out what is the index of data item in dataProvider ArrayCollection and then use that as index for setting up automationName. Thanks for help

[flexcoders] Re: RTE when using itemRenderers in DataGrid.

2007-01-16 Thread Jim Robson
They don't generally respond unless they need some clarification from you. --- In flexcoders@yahoogroups.com, "michael_ramirez44" <[EMAIL PROTECTED]> wrote: > ... > I have submitted this bug via the WishForm on Jan 10 but I have not > recieved any response back not even an auto-response. Is the

RE: [flexcoders] custom data tip in stacked bar chart

2007-01-16 Thread Matt Horn
Have you seen the example at the bottom of this page? http://livedocs.macromedia.com/flex/201/html/charts_formatting_110_34.ht ml It does, I think, what you are trying to do, only with a column chart. hth, matt horn flex docs http://blogs.adobe.com/flexdoc > -Original Message- > From: f

RE: [flexcoders] Code behind- do you use it?

2007-01-16 Thread Robert Chyko
Yesterday I just refactored the project I am working on to use code behind. I had not planned on keeping script blocks in the MXML files, but being fairly new to Flex, when everything began working correctly I sort of forgot about it until some of the script blocks started getting larger and l

[flexcoders] Re: Disabling an object disables corresponding tab- expected?

2007-01-16 Thread ben.clinkinbeard
I just realized that I can set the enabled property each time the tab is shown/hidden but I am still curious as to whether or not this is the expected behavior. Thanks, Ben --- In flexcoders@yahoogroups.com, "ben.clinkinbeard" <[EMAIL PROTECTED]> wrote: > > Hello, I have a Canvas object that bi

Re: [flexcoders] Code behind- do you use it?

2007-01-16 Thread Steve Hagenlock
I've been thinking about asking the same question, all of the samples out there seem to embed the actionscript in MXML, however the code behind scenario seems more like a best practice approach. Personally, I use code behind everywhere except for procedural initialization code in my main.mxml.

RE: [flexcoders] Code behind- do you use it?

2007-01-16 Thread Tracy Spratt
The 32k problem in 1.5 forced me into using "helper" classes very early on. Still, though, I often develop in a script block, then later move the functionality to its own class. Typically, functions that need to updte the ui directly stay in the script block, and pure functions go in the class.

Re: [flexcoders] Re: Flex/Flash on The iPhone ?

2007-01-16 Thread John Dowdell
Shannon Hicks wrote: > It seems that Apple has confirmed that Flash & Java will be supported on > the iPhone. Now if Adobe or Apple would just tell us what version will > be supported. > http://arstechnica.com/journals/apple.ars/2007/1/15/6632 For what it's worth, the Macwelt translation of som

[flexcoders] Code behind- do you use it?

2007-01-16 Thread ben.clinkinbeard
I am undecided as to whether or not I want to use the code behind method for my MXML files and figured I would see what others are doing. I am currently just using Script blocks at the top of my files to do event handling, initialization, etc but some of them are getting pretty big. So what are o

[flexcoders] custom data tip in stacked bar chart

2007-01-16 Thread suri_boston
Hi, I am trying to access the percentage value of the bar to display it in the custom data tip function with no success.. private function customDataTip(hd:HitData):String { var tmp:BarSeriesItem = new BarSeriesItem(); var stryValue:String = ""; tmp = e.chartItem as BarSeriesItem; var tmpStr:Stri

RE: [flexcoders] CreationComplete help....

2007-01-16 Thread Beverly Guillermo
Could you just dispatch another event that calls the setup function? The dispatcher could be your component or the component that changes the data...? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jensen.axel Sent: Tuesday, January 16, 2007 1

[flexcoders] Disabling an object disables corresponding tab- expected?

2007-01-16 Thread ben.clinkinbeard
Hello, I have a Canvas object that binds its enabled state to a value in the model. The Canvas also happens to be set as a child of a TabNavigator, and when the Canvas is disabled the corresponding tab gets disabled as well. Is this the expected behavior? Its quite inconvenient since my purpose is

RE: [flexcoders] Using Automation with Horizontal List

2007-01-16 Thread Tracy Spratt
You can't do that. List controls re-use the item renderers when you scroll, so only the visible items even exist. You must work with the dataProvider items themselves. What are you trying to do? You can loop over the dataProvider and set the property values that way. Tracy _

RE: [flexcoders] Hyperlinks in text that call a function, not a URL

2007-01-16 Thread Tracy Spratt
You can use an a tag in htmlText to emit a textEvent, to call a function. This should get yo 90% of the way: http://www.cflex.net/showfiledetails.cfm?ChannelID=1&Object=File&objectI D=595 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Be

[flexcoders] Re: Flex 2.0.1 update problems - FIXED Cairngorm 2.0

2007-01-16 Thread parkerwhirlow
Deleting and re-creating each of my projects in turn revealed that it was the Cairngorm 2.0 project that is imported into the workspace. I also found the tags they're looking for and added them. Here's the two that were missing from .actionScriptProperties (add these tags inside the tag) Ho

[flexcoders] Using Automation with Horizontal List

2007-01-16 Thread eucliptica
I am using Horizontal list with itemRenderer set to a separate mxml component that renders data. It has few labels and few other fields. So when I want to add property automationName I would like it to follow pattern "someName_001" for the some label in the first list item rendered by mxml comp

RE: [flexcoders] title window on app first run

2007-01-16 Thread Tracy Spratt
That is the standard behavior of a modal TitleWindow. What is not working? What have you tried? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jonalexander370 Sent: Sunday, January 14, 2007 9:53 PM To: flexcoders@yahoogroups.co

RE: [flexcoders] Two ChartElement extension classes that catch MouseDowns (Charting)

2007-01-16 Thread Ely Greenfield
You could have both of your extensions add the mouse down listener to the parent chart. You'd get a few false positives...mouse down on the axes and titles, for example...but if you did some simple bounds checking you could filter those out. Ely. From:

RE: [flexcoders] Cairngorm ServiceLocator error

2007-01-16 Thread jason.proulx
I always forget that part too :P Jay Proulx [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Sent: January 15, 2007 11:09 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Cairngorm ServiceLocator error

[flexcoders] Re: ObserveValue, and how to reference within AS3 Class File

2007-01-16 Thread Alex Uhlmann
Hi Mike, Observe and ObserveValue have been designed to work with MXML binding only. The curly braces in the source and handler properties are being treated differently by the MXML compiler than just simple ActionScript assingments as you do in your example. Therefore, the current implementation r

Re: [flexcoders] How do you capture the browser's onclose event in Flex 2.0?

2007-01-16 Thread Kevin Newman
In general, relying on a browsers onunload (or similar) event is not reliable. You could use a presence server or polling on the server side to detect when the client is no longer available. I've been doing some testing with XIFF and WildFire recently, and it seems to detect pretty quickly when

[flexcoders] CreationComplete help....

2007-01-16 Thread jensen.axel
Hello, I have a custom Component (it is an edit/create form) that i'm initializing... when i go and initialize the component, it runs a function on creationComplete="setup()" then i save some data, and change viewStates... then i pick a different item from a , and reload the component, to edi

[flexcoders] Flex 2.0.1 update install problems

2007-01-16 Thread parkerwhirlow
I just installed Flex Builder Plugin 2.0.1 Updater, and followed install instructions, running eclipse -clean -vmargs -Xmx512m Has anyone else seen this error? I've searched flexcoders, and this problem appears to be unique. thanks, PW When Flex starts up I get this error: A problem occurred wh

Re: [flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-16 Thread Rick Schmitty
Do you have embeded fonts in your application? I was experiencing the same slowdown after upgrading to flex 2.0.1. I had 2.0 installed, updated to 2.0.1, then ran the clean command prior to opening flex. It was still slow. Saw the blog about closing projects, closed everything but the one I'm w

[flexcoders] Hyperlinks in text that call a function, not a URL

2007-01-16 Thread thegators_2002
I am trying to add dialog boxes to my app that contain help text. The user clicks something in the UI, and the dialog pops up. In it, there will be some text that says, for example "This value is found by multiplying a net income of $2,000,000 by a growth rate of 7.5%". I want to make the number

RE: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Battershall, Jeff
Mark, Interesting discussion - interesting problem. BTW, I don't think these return events are really 'duplicates' per se, but repeats of the earlier return events. LIke First invoke returns event1 Second invoke returns event1 then event2 etc. Out of curiosity, what middleware are y

Re: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Mark Doberenz
OK, so maybe having a Singleton delegate wouldn't be a good idea. Here's a bit more I've found on the topic. I put a breakpoint at the Command result method and found that the address location for the commands were changing. So, essentially, the commands are being persisted which in turn are pe

Re: [flexcoders] How do you capture the browser's onclose event in Flex 2.0?

2007-01-16 Thread michael . corbridge
I finished doing this a week ago if you are interested ... On my first attempt, I used the browsers onUnload event to call a service in the swf, but this did not work. Apparently the object in the DOM is not available to the javascript when browser begins unloading (ie6). My solution was to make

RE: [flexcoders] Column Chart Question

2007-01-16 Thread Matt Horn
Unless I am misunderstanding something, those "sets" are known as series, and you can have any number of series in a column chart. The examples here should get you started: http://livedocs.macromedia.com/flex/201/html/charts_types_109_06.html hth, matt horn flex docs > -Original Message-

[flexcoders] How do you capture the browser's onclose event in Flex 2.0?

2007-01-16 Thread chrislpigg
I need a way to capture the browser's close event so I can log the user out with my Flex 2.0 app.. If anyone knows how to do this... Please help! :)

RE: [flexcoders] Cairngorm Duplicate Remote Object Return Events

2007-01-16 Thread Battershall, Jeff
I'm not sure a singleton delegate would do the trick - and then you might have threading issues - right? I'm kind of suspicious of the fact that the RO instances are being persisted in the singleton ServiceLocator. It's those RO instances' methods that are getting listeners attached to them. I

[flexcoders] new modules chapter on Flex docs blog

2007-01-16 Thread Matt Horn
The flex doc team has their own blog now: http://blogs.adobe.com/flexdoc/ First up is a new version of the chapter on modules. Enjoy! -matt horn flex docs

Re: [flexcoders] Re: Flex/Flash on The iPhone ?

2007-01-16 Thread Shannon Hicks
It seems that Apple has confirmed that Flash & Java will be supported on the iPhone. Now if Adobe or Apple would just tell us what version will be supported. http://arstechnica.com/journals/apple.ars/2007/1/15/6632 Shan

[flexcoders] Announcement: FlexCoders 2007 Conference Call for Papers

2007-01-16 Thread Steve Drucker
Join Fig Leaf Software, Adobe. and Carahsoft for the highly anticipated Flex 2 Developers Conference on June 25-26 in Washington, DC. LEARN ABOUT DEVELOPING WEB 2.0 APPLICATIONS WITH FLEX 2, ACTIONSCRIPT 3, and "APOLLO" ! With two full days of 60 minute lectures and 90 minute HAN

RE: [flexcoders] Total used memory

2007-01-16 Thread Steve Cox
Take a read of this: http://www.gskinner.com/blog/archives/2006/06/as3_resource_ma.html There's 3 articles in the series which provide an insight into the gc. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of fliabrussa Sent: 16 January 2007 1

[flexcoders] Re: Cairngorm support for Flex 2.0.1 modules?

2007-01-16 Thread Derrick Grigg
My team is currently in the process of developing a large modular Flex application that is based on Cairngorm and uses the mx:Modules. We put the Cairngorm framework and all 'core' classes (ie Controller, ModelLocator, ValueObject, centralized Commands) into a Flex Library. Each module was setup a

Re: [flexcoders] Total used memory

2007-01-16 Thread Tom Chiverton
On Tuesday 16 January 2007 13:12, fliabrussa wrote: > if somebody has some idea of as I can solve it or if it sees that I > am making something bad, please help me since this the dream is > clearing me. I wouldn't bother about it. When the browser (tab) is closed, it's all reclaimed, and computers

Re: [flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-16 Thread Tom Chiverton
On Tuesday 16 January 2007 08:19, pauscato1 wrote: > I have only one project running in my flex builder, this is realy > anoing it uses 20% of my day. Have you got auto-compilation turned off ? -- Tom Chiverton Helping to heterogeneously incubate robust meta-services ***

[flexcoders] ControlBar at the top of a panel?

2007-01-16 Thread Alex MacCaw
Just wondering, is it possible to make a ControlBar appear at the top of a panel, rather than at the bottom? Alex <>

[flexcoders] Re: Compiling modules

2007-01-16 Thread kevin_hammer
I wrote about how I'm debugging module based applications here: http://blog.kevinhammer.net/2007/01/debugging-with-flex-modules.html I also wrote how I configured a multiple project application that uses modules and shared classes here: http://blog.kevinhammer.net/2007/01/flex-modules-sharing-clas

[flexcoders] Sandbox Security help, please, god help!

2007-01-16 Thread targetplanet
I am building an app that will be run in the browser off of a cd. (don't ask my why, for some reason the client has to have it in the browser...) so basically all of the files are local. The problem is I am using ExternalInterface, and no matter what I do, it throws security error #2060, saying the

[flexcoders] Total used memory

2007-01-16 Thread fliabrussa
Hello to all, I am fighting with a subject again that had crossed to me before, which I left it of side with the idea that when proved version 2.0.1 to not it happens me, but lamentably to me it continues happening. It is very probable that I am confused, for that reason I go to you so that t

[flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-16 Thread pauscato1
Hi all thanks for responding, I have only one project running in my flex builder, this is realy anoing it uses 20% of my day. do it have something to do with the way it is installed, i had flex 2 installed and then i installed the update, but did uninstall all, and reinstalled the flex builde

[flexcoders] Re: Flex Post with Special Characters

2007-01-16 Thread hugocorept
I GOT IT! Solution: Define the PHP script with headers like this: header('Content-Type: text/html; charset=UTF-8;'); or in the Mail Script mail($mailto, $subject, $messageproper, "From: From The\n" . "MIME-Version: 1.0\n" . "Content-Type: text/html; charset=UTF-8;"); --

[flexcoders] Re: Setting the backgroundcolor of a canvas with a function - Newbie alert

2007-01-16 Thread Cato Paus
Hi use uint for colors like getColor(swift:uint):uint The uint class is primarily useful for pixel color values (ARGB and RGBA) and other situations where the int data type does not work well. For example, the number 0x, which represents the color value white with an alpha value of 255

Re: [flexcoders] Re: Compiling problems

2007-01-16 Thread Webdevotion
I also solve my problem by recreating the swf files. I rename my main app class and set it as default file. This way the needed files are recreated in the bin folder. It's a hassle but I'm gonna look into your tip of using: FlexBuilder -clean -vmargs -Xmx512m

[flexcoders] Re: Updating a DataService fill

2007-01-16 Thread spirit_ryder2k
Hi Jeff, I tried your code but it didn't help. The Javadocs gives a little information about transactions in an assembler method except that it auto commits after the method ends. Maybe the fill refreshes before the item created is commited so it refreshes with the same data? --- In flexcoders

[flexcoders] Re: calling a TitleWindow modal from main app without using a button on app star

2007-01-16 Thread jonalexander370
WOW, that easy? I can't believe it. THANK YOU. THANK YOU. Jon --- In flexcoders@yahoogroups.com, "Michael Schmalle" <[EMAIL PROTECTED]> wrote: > > Hi, > > make a createLoginWIndow() method that calls PopUpManager. > > From there you can have the window creation anywhere, click, compltete ec

  1   2   >