[flexcoders] Re: Custom Component: Instantiation attempted on a non-constructor.

2008-08-26 Thread Ward Ruth
Yeah, that was it, the trackSkinClass was null. Been away from this stuff for awhile, taking a while to reload my brain! Thanks for the pointer! Had to also remember to create the CSSStyleDeclaration in the static classConstruct() method, and then after creating the slider instance, adding

[flexcoders] Re: LCDS and real-time performance

2008-08-26 Thread Rogier Oorburg
Thanks for the reply... I'm sure the server-side logging is not the problem, the same effects are seen without the server writing all this information. Even if we only do client-side logging we still get the same results. I think we ruled out the database being a bottleneck by using the

[flexcoders] Binding using Interface

2008-08-26 Thread sefi.ninio
Hi everyone... I get a binding warning I just can't seem to shake off... I have an interface (let's call it IMyInterface) and it is defining, among other things, a setter/getter function pair. I know, I know - this screams extending a base class and not implementing an interface, but bear with

Re: [flexcoders] Binding using Interface

2008-08-26 Thread Josh McDonald
public interface IMyBindable extends IEventDispatcher {} On Tue, Aug 26, 2008 at 4:51 PM, sefi.ninio [EMAIL PROTECTED] wrote: Hi everyone... I get a binding warning I just can't seem to shake off... I have an interface (let's call it IMyInterface) and it is defining, among other things, a

[flexcoders] Curses Adobe

2008-08-26 Thread djhatrick
Give us real http status codes in flex. You are killing us developers out here. Instead of going home and being with my family, i have to deal with these kludge work arounds to handle the lack of having our services handle status codes. Please, tell the flashplayer team to get off their butts

[flexcoders] Re: FTP question

2008-08-26 Thread andrew_young.rm
Peace! Intriguing... how do you propose to do this sir Nyman? Is the information found in FileReference or FileReferenceList the data we push towards socket.writeObject or socket.writeMultiByte ? Just clarifying this. I thought we needed to read the file's data to push this info to

[flexcoders] Re: Any workaround for FB-13863 (auto-completion with Flash 10 libs using Vectors) ?

2008-08-26 Thread Samuel Lorétan
Bump. This issue is very important for my team and my project. Does nobody has encountered the same problem? Thank you. --- In flexcoders@yahoogroups.com, sloretan [EMAIL PROTECTED] wrote: (...)

[flexcoders] xml contains list with sometimes only one element

2008-08-26 Thread max.bruchmann
Hi, I have a http service that returns me a list of persons: persons person pid1/pid nameFoo/name /person person pid2/pid nameBar/name /person /persons Now my result handler looks like that: var persons:ArrayCollection; function personsResult(resultEvent:ResultEvent):void { persons =

[flexcoders] DataGrid itemRenderer current row and column

2008-08-26 Thread robin bakkerus
Hi there, if you have a (generic) item renderer like this: mx:DataGridColumn dataField=aField headerText=Header editorDataField=data editable=true itemRenderer=myRenderer.GridField / And you use the same renderer on multiple fields, how then can you find out (in the

[flexcoders] Re: DataGrid itemRenderer current row and column

2008-08-26 Thread robin bakkerus
Well i found out myself thanks to Peter Ent see http://weblogs.macromedia.com/pent/archives/2008/03/itemrenderers_p_2.html --- In flexcoders@yahoogroups.com, robin bakkerus [EMAIL PROTECTED] wrote: Hi there, if you have a (generic) item renderer like this: mx:DataGridColumn

[flexcoders] Re: Any workaround for FB-13863 (auto-completion with Flash 10 libs using Vectors) ?

2008-08-26 Thread haykelbj
I have the same issue. I voted for the bug.

[flexcoders] flex SDK 3.1 flexbuilder 3.0.1 - deployment issues

2008-08-26 Thread Kenneth Sutherland
I have just updated flexbuilder and as soon as I had done so I'm running into deployment issues. It would appear that the updated flexbuilder version, when it creates the SWZ SWF framework files creates a file by the same name, but the files are different to the old ones. So if you now

[flexcoders] screen shot of flex application

2008-08-26 Thread hworke
Hi I am trying to get a screen shots of my flex application for a document. I am using print screen button to capture the screen shot but the picture quality is not coming good. What is the best way to do so. Regards...

RE: [flexcoders] Re: How to check a table already exist in SQLite?

2008-08-26 Thread Jim Hayes
http://livedocs.adobe.com/flex/3/langref/flash/data/SQLSchema.html http://livedocs.adobe.com/flex/3/langref/flash/data/SQLSchema.html -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markflex2007 Sent: 25 August 2008 19:54 To:

RE: [flexcoders] xml contains list with sometimes only one element

2008-08-26 Thread Kenneth Sutherland
I'd do it like this. Not tested the below code, but it's the same as stuff I've used before that works fine. Just pass the XML that you get returned to the function. Slightly different approach but should be good for any number of XML entries private function populatePerson(xml : XML) : void {

[flexcoders] Adding border to circle

2008-08-26 Thread Richard Baker
Hi I have a circle drawn on a canvas (circle.graphics.drawCircle(...)). I need to be able to subsequently draw a border around it as part of the circle's mouseclick event. I'm using var circle:Datapoint=new Datapoint(); circle= this.getChildByName(_namePrefix + which.toString()) as Datapoint;

[flexcoders] Re: about allowMultipleSelection question

2008-08-26 Thread dialogtmp
Thank you very much \^0^/ --- In flexcoders@yahoogroups.com, Dmitri Girski [EMAIL PROTECTED] wrote: You have to subclass TileList and override selectItem method to simulate Ctrl key. Funny thing, I just did the same thing in the DataGrid yesterday :)

[flexcoders] LiveCycle multiple destination and managed association approach

2008-08-26 Thread Cédric Savi
Hello everybody, here is my problem: I have two objects A and B, and my object A has a collection of B. So in A we have a children property like this: Vector* children Then I want to synchronize with a DataService all A and B objects. Indeed, if I delete a B from the A's children, I want that

[flexcoders] how to create object from string of class name

2008-08-26 Thread morpankhy
how to instaniate an object from the name of a class at runtime: how to reference the class ? To instantiate it (a class) from a string of its name at runtime How to achieve this in Flex - AS 3 This was possible in as 2.0, I write for your reference (E.g. We can do in AS 2.0

[flexcoders] Re: Binding using Interface

2008-08-26 Thread ilanavigdor
Hi Sefi, I tryed to reproduce your problem, but couldn't. I have the following interface: package { public interface IMyInterface { function set MyProp(value:int):void function get MyProp():int } } and the following implementing class:

Re: [flexcoders] Re: Binding using Interface

2008-08-26 Thread Sefi Ninio
That's because you're using the concrete class. Try working with the interface. Something like: mx:Label id=label text={IMyInterface.myProp}/ Since the concrete class implements the getter with the Bindable metatag, the binding will work, but the warning will still be there... On Tue, Aug 26,

Re: [flexcoders] Adding border to circle

2008-08-26 Thread Toby Ashley
Setting the lineStyle only affects future lines that are drawn, not lines that have already been drawn. Simplest way is to just redraw the circle on mouse click. You can set the new background colour, set the line style, and just redraw it. You'll probably want to call circle.graphics.clear ()

[flexcoders] Re: screen shot of flex application

2008-08-26 Thread haykelbj
This is not a Flex related problem but we are here to help each other :) What do you mean with the picture quality is not good? On screen or when printed? For the printed case it's generally normal as screen shots have screen resolution which is ~72 dpi. For the other case it depends on

[flexcoders] Re: Adding border to circle

2008-08-26 Thread haykelbj
Just as an extra hint, if you will be doing more drawing I would suggest to use Degrafa (http://www.degrafa.com). Very simple and powerful and as an extra you will be prepared for Flex 4 :) --- In flexcoders@yahoogroups.com, Toby Ashley [EMAIL PROTECTED] wrote: Setting the lineStyle only

[flexcoders] Re: how to create object from string of class name

2008-08-26 Thread haykelbj
flash.utils.getDefinitionByName() : http://livedocs.adobe.com/flex/3/langref/index.html?flash/utils/package.html --- In flexcoders@yahoogroups.com, morpankhy [EMAIL PROTECTED] wrote: how to instaniate an object from the name of a class at runtime: how to reference the class ? To

[flexcoders] Re: Help with binding (flex 3)

2008-08-26 Thread rss181919
I am using an intermediate VO object (myobj) as my binding source. So basically, I have a form whose input fields are bound to myobj and then in my result handler for the webservice call i set myobj = to event.result. I have 2 problems right now. 1. var myobj:myobj = myobj(event.result)

[flexcoders] Changing itemEditors of a DataGrid a row basis

2008-08-26 Thread Weyert de Boer
Hello! I am trying to make a property grid as seen in other applications in Flex. Only I am having trouble to change the itemEditors use by the current selected row. I am having the following ArrayCollection which consists of the class: public class PropertyItem { [Bindable] public

[flexcoders] Determining when a component is visible and not visible to a user

2008-08-26 Thread Jim Boone
I have a use case that sounds simple but I am not certain how to code it. The client wants data on the page to refresh periodically and automatically but only if a user is viewing the page that displays the data. So if they click on a another tab, the expensive updates will stop. If they click

Re: [flexcoders] Determining when a component is visible and not visible to a user

2008-08-26 Thread Michael Schmalle
Hi, If you are using a ViewStack subclass, try the 'change' event. Mike On Tue, Aug 26, 2008 at 9:21 AM, Jim Boone [EMAIL PROTECTED] wrote: I have a use case that sounds simple but I am not certain how to code it. The client wants data on the page to refresh periodically and automatically

[flexcoders] Re: Applying form login in Flex

2008-08-26 Thread Joshua Partogi
Thanks. I can work it out now. :-) Many thanks --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Data from an RPC call, HTTPService for example, is just data, and can be used however you wish. Of course, you will need to use a result handler function. Do you know

[flexcoders] Re: External Interface: Do I have to have a javascript function?

2008-08-26 Thread thegators_2002
Okay, thank you! Pete --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: You need to call a function on the other side, not run eval of a string. Of course, the one function you put in could eval the string you pass in From:

[flexcoders] In need of a Flex Mentor

2008-08-26 Thread jch92592
I am working on a Flex 3 app and need a mentor to bounce questions off of. I will do the work, this request is for advice/suggestions only. Primarily in the areas of HTTPService, Web Service and ColdFusion CFC configuration and use. I am not looking for free help. I am willing to pay for

[flexcoders] Re: How to upgrade Flex 3 to 3.0.1?

2008-08-26 Thread paulbohnenkamp
I too see the AutoUpdater.dll in my flex builder directory, but the menu item doesn't work for me. Does anyone know how to fix this? Thanks, Paul --- In flexcoders@yahoogroups.com, Derrick Anderson [EMAIL PROTECTED] wrote: i ran the update and it's working perfectly (so far :) ) d.

[flexcoders] Re: mx:Metadata?

2008-08-26 Thread Amy
--- In flexcoders@yahoogroups.com, markflex2007 [EMAIL PROTECTED] wrote: Hi, I confuse with mx:Metadata now I have the following mx:Metadata in code mx:Metadata [Event('add')] [Event('update')] [Event('cancel')] /mx:Metadata Do you think the following code work

[flexcoders] help controlling an external swf from flex.

2008-08-26 Thread Gustavo Duenas
Hi Guys I have an external swf, loaded into a loader in flex, but I'd like to know how can I control ( is a swf with timeline animations) that from the flex application. How could I, so far this is my idea. mx:Script ![CDATA[ var myflash:MovieClip= new

[flexcoders] Re: Determining when a component is visible and not visible to a user

2008-08-26 Thread Jim Boone
Mike, Good idea. I am actually using an accordian but I can trigger part of my update based on the change event for the accordian. The concept is the same. It will not work for all cases though such as when a user moves to another app on his desktop. This might be when I use the deactivate

[flexcoders] Re: Need Help and Guidance desperately

2008-08-26 Thread Amy
--- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: I agree, I'd use a couple of TileLists and a simple inline itemrenderer. Shouldn't be too difficult really. I think the TileList has a number of flaws that make it problematic for this type of application For

[flexcoders] Preview Animations...

2008-08-26 Thread nathanpdaniel
Is there a way to preview animations in FB3? I've seen something similar to what I'm looking for when I animate a component to do something - in Design view of FB3, when I put that component on stage, it's animations run when I view it - provided no user interaction is required to start it.

Re: [flexcoders] Re: Help with binding (flex 3)

2008-08-26 Thread Josh McDonald
myobj(event.result) won't give you null. (event.result as Myobj) might, but myobj(event.result) will give you a runtime exception. On Tue, Aug 26, 2008 at 11:28 PM, rss181919 [EMAIL PROTECTED] wrote: Nik, Thanks for the object utility recommendation. That seems to work for now although I

Re: [flexcoders] Curses Adobe

2008-08-26 Thread Josh McDonald
How about less cursing, and 10 minutes with the google? It's a limit with the browser API for plugins. Flash Player never gets to see the result, becuase the browser makes HTTP requests, not Player. And the plugin API hides *all* non-200 results from plugins. IOW, call Microsoft / Mozilla and

RE: [flexcoders] Re: Need Help and Guidance desperately

2008-08-26 Thread Alex Harui
Yup, there's a trade-off of how much work you'll need to do for variable sized items so if you can live with same size items, you can use TileList and write less code. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Tuesday,

RE: [flexcoders] help controlling an external swf from flex.

2008-08-26 Thread Alex Harui
That should work if the SWF is published for FP9 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gustavo Duenas Sent: Tuesday, August 26, 2008 7:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] help controlling an external swf

RE: [flexcoders] Changing itemEditors of a DataGrid a row basis

2008-08-26 Thread Alex Harui
You should be able to call preventDefault and override creatItemEditor From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de Boer Sent: Tuesday, August 26, 2008 6:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Changing

[flexcoders] ArrayCollection bound to an Array.

2008-08-26 Thread flexaustin
Is it possible to bind an ArrayCOllection to an array, like so public var summDataForControllers:Array = new Array; public var _summDataForContrAC:ArrayCollection = new ArrayCollection({summDataForControllers}); I have a modelLocator that contains these to items

[flexcoders] Placing crossdomain.xml at non-root locations

2008-08-26 Thread jerusalem_pilgrim
I'm working on a Flex app that loads some data from a Tomcat application, and I'm running into crossdomain.xml issues when I try to test it using http://localhost/app.html instead of launching it from Flexbuilder. I could add a crossdomain.xml to the Tomcat application

Re: [flexcoders] Curses Adobe

2008-08-26 Thread Rick Winscot
Also... when architecting a solution ­ over research what approach will work end-to-end. Just because you are using rest in everything else... doesn¹t mean that it is Œthe¹ candidate for the next project. If rest is beings pushed on you leverage project costing to your advantage... tell management

[flexcoders] dynamically sorting an adv datagrid

2008-08-26 Thread John Wilker
I've got a scenario, where I need to trigger a sort from another component. My current approach is first capture the selected colum when the user selects a cell. then from my other component, I fire an event. my adg component catches and acts on the event. My problem is capturing the column

[flexcoders] Re: Curses Adobe

2008-08-26 Thread djhatrick
Does adobe lead the call to change for this limitation, or who does? I'll complain, any suggestion where to do the complaining? I really don't mind complaining at all. Doesn't adobe have a good relationship with Mozilla, after all they develop Tamarin together, don't they? What's mozilla's

[flexcoders] Get all class definitions in a loaded swf ?

2008-08-26 Thread Nik Derewianka
Hi, Is there a way to load all the class definitions in a swf that load into my flex app ?? On a sample swf with 4 mc's named mc1,mc2,mc3,mc4, i have got it to: private function onSWFLoaded(event:Event):void{ var col:ArrayCollection = new ArrayCollection(); for (var i:Number

Re: [flexcoders] Button Rounded Corners TL, BR

2008-08-26 Thread Troy Gilbert
There's no style for that. You can create your own skin. And Flexlib includes an EnhancedButtonSkin that does exactly this (plus tons of other things): http://code.google.com/p/flexlib/ Troy.

Re: [flexcoders] Re: Vote or loose! MXML diff sucks, let's change it!

2008-08-26 Thread Troy Gilbert
I'm a bit confused by those telling the original poster to go complain to Eclipse... Flex Builder is not free. If there's a bug in Flex Builder, even if it relates to something Adobe didn't develop, Adobe is certainly responsible for the bugs because they took our money for an application with a

[flexcoders] selectedIndex and updateDisplayList

2008-08-26 Thread markgoldin_2000
I have a DG with three rows. I am setting up a dataProvider for it like this: override public function set dataProvider(value:Object):void { super.dataProvider = value; if (dataProvider != null dataProvider.length != 0) { var cursor:IViewCursor = (dataProvider as

[flexcoders] Combobox to show table columns?

2008-08-26 Thread cox.blair
Just wonder if anyone has a trick to dynamically populate a combobox with the column labels of a table or XML source. I seem to only manage to retrieve the values of the rows, not the actual column name. I know I manually list them, but this defeats the purpose if the table were to change. Ex. So

[flexcoders] Will Scene 7 turn Adobe into a competitor of it's ISVs like Microsoft ???

2008-08-26 Thread Robert Thompson
Although I'll hold my breath until more and more info. is released into the public. I'm a little concerned that Adobe is starting to get the Take over the world vision with Scene 7.0 They appear to be heading towards a consulting type service (as well as selling to us developers) where people

[flexcoders] Re: snapshots of TabNavigator tabs

2008-08-26 Thread Vijay Ganesan
Sorry for the delayed response. Here's an example that may be useful: http://meteorite-13.blogspot.com/2008/08/flex-tabnavigator-image-snapshot-icons.html Vijay --- In flexcoders@yahoogroups.com, Danny Venier [EMAIL PROTECTED] wrote: Thanks Vijay, Tim, I definitely had two issues.

[flexcoders] Location of FlightReservation samples?

2008-08-26 Thread ivo
Hey all, Where can I find the Flex samples FlightReservation and FlightReservation2 mentioned here http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:_Runtime_Localization ? Thanks, - Ivo

[flexcoders] Help, Random module load issues.

2008-08-26 Thread mthielman11
Hey everyone. We are experiencing a ton of issues with our app with regards to module loading. Our main app at this point has 4 main sub modules. Until now only a couple users tended to switch between them but now it is becoming more common. We have noticed a completely random but troublesome bug.

Re: [flexcoders] Re: Vote or loose! MXML diff sucks, let's change it!

2008-08-26 Thread Howard Fore
It sounds to me like you aren't confused, you just disagree. :-) On Tue, Aug 26, 2008 at 12:00 PM, Troy Gilbert [EMAIL PROTECTED]wrote: I'm a bit confused by those telling the original poster to go complain to Eclipse... -- Howard Fore, [EMAIL PROTECTED] The universe tends toward maximum

Re: [flexcoders] Will Scene 7 turn Adobe into a competitor of it's ISVs like Microsoft ???

2008-08-26 Thread Doug McCune
ummm, you're a flex consultant afraid of not having work because of adobe? are you looking at the same market I am? The adobe is cannibalizing it's user base argument might hold a little water when it comes to the products they're developing (pshop express, buzzword, etc). But god knows there's

Re: [flexcoders] Re: Vote or loose! MXML diff sucks, let's change it!

2008-08-26 Thread Troy Gilbert
I'm a bit confused by those telling the original poster to go complain to Eclipse... It sounds to me like you aren't confused, you just disagree. :-) Touche... Troy.

[flexcoders] Positioning Custom ToolTips

2008-08-26 Thread Ethan Miller
Greetings - Per the Flex documentation, I'm using a custom component as a ToolTip by intercepting the toolTipCreate event, as describe below: In your application, you can create a custom ToolTip by intercepting the toolTipCreate event handler of the target component. In the event handler,

RE: [flexcoders] ArrayCollection bound to an Array.

2008-08-26 Thread Battershall, Jeff
Your approach to the problem doesn't appear to be correct. Some additional code would be helpful. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexaustin Sent: Tuesday, August 26, 2008 11:17 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Flash/Flex support of Windows Vista (64bits)

2008-08-26 Thread Claude Hussenet
Most of the Portable PC are now coming preloaded with a 64 bit version of Windows Vista which includes IE 64 bit which is not compatible with the Flash Player.Those kind of PC's are getting very common...(Price below $1000). I tried FlashPlayer 10 Beta with the same result. When I try to

Re: [flexcoders] Re: Need Help and Guidance desperately

2008-08-26 Thread anuj sharma
Hi All Thanks for the reply. Here are couple of things i should have mentioned earlier to you guys. I have to allow user to resize the images, that's where complexity came. For resizing of images, I am using the following container for holding the images

RE: [flexcoders] Re: LCDS and real-time performance

2008-08-26 Thread Seth Hodgson
Hi Rogier, The core RTMP code in the player throttles the processing of inbound RTMP data, so there's an upper bound on the number of received messages that will be dispatched per frame on the client. This is done to prevent wedging playback in the player. If I generate a burst of 100 messages

Re: [flexcoders] Help, Random module load issues.

2008-08-26 Thread Pedro Sena
Hi, Post the at Login/switchModule() code please. PS On Tue, Aug 26, 2008 at 1:48 PM, mthielman11 [EMAIL PROTECTED] wrote: Hey everyone. We are experiencing a ton of issues with our app with regards to module loading. Our main app at this point has 4 main sub modules. Until now only a

[flexcoders] Re: screen shot of flex application

2008-08-26 Thread aphexyuri
maybe not exactly what you need, but a great tool in any case: http://www.jingproject.com/ --- In flexcoders@yahoogroups.com, haykelbj [EMAIL PROTECTED] wrote: This is not a Flex related problem but we are here to help each other :) What do you mean with the picture quality is not good? On

Re: [flexcoders] Location of FlightReservation samples?

2008-08-26 Thread Robert Vollmar
Hi, Hop up one level to: http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions Scroll down to the Runtime Localization section to find the download links. - Rob On 8/26/08 9:41 AM, ivo [EMAIL PROTECTED] wrote: Hey all, Where can I find the Flex samples FlightReservation and

RE: [flexcoders] Re: RTMP and Spring Security(Acegi) Issues - SOLVED

2008-08-26 Thread Seth Hodgson
In the case of RTMP, the doAuthentication() hook of your LoginCommand runs when the client invokes ChannelSet.login(...) or as a result of invoking the legacy setCredentials() method on service components. The advantage of using ChannelSet.login() is that it gives you back a token for the call

RE: [flexcoders] Re: RTMP and Spring Security(Acegi) Issues - SOLVED

2008-08-26 Thread Seth Hodgson
Make that: After that, any client interaction with a destination secured with a security constraint will trigger a call to doAuthorization() Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Seth Hodgson Sent: Tuesday, August 26, 2008 10:18 AM To:

[flexcoders] Flex Builder 3.0.1 standalone updater posted

2008-08-26 Thread Mike Chabot
The Flex Builder 3.0.1 standalone updater has finally been posted, for people who don't have that AdobeUpdater program. After upgrading I went into the Flex Builder preferences and changed the Flex 3 SDK to point to the new 3.1.0 folder. After that I ran the Project Clean… command. Flex Builder

[flexcoders] No Scroll Bar in Browser

2008-08-26 Thread seulaterbuddy
i noticed that when in FLEX, I make my template say 1024 x 768 or larger than my browser window is, there are no scroll bars that let my move around the page. is there are way to enable this ?

[flexcoders] How can we use message event of mx.data.DataService?

2008-08-26 Thread Shigeru Nakagaki
DataService has message event. But I've never received this event. Can we send/receive custom messages by mx.data.DataService?

[flexcoders] Flex Load Testing Solutions

2008-08-26 Thread Battershall, Jeff
I've seen that Adobe is high on RadView software's WebLoad product, but I'm interested in evaluating a number of possible products and/or approaches for load testing our applications. Any and all feedback appreciated! Jeff Battershall Application Architect Dow Jones Indexes [EMAIL PROTECTED]

[flexcoders] Re: mx:Metadata?

2008-08-26 Thread markflex2007
How to add eventlistener for that if I have a event like dispatchEvent(new Event(this is an event)); Thanks Mark

RE: [flexcoders] How can we use message event of mx.data.DataService?

2008-08-26 Thread Seth Hodgson
This event is dispatched when a DataMessage has been pushed to the client by the server, after it has gone through internal processing by the DataService. Unlike a ResultEvent or FaultEvent that you'll always want to handle because they correlate to a fill() or some other operation you've

[flexcoders] Re: mx:Metadata?

2008-08-26 Thread Nate Beck
--- In flexcoders@yahoogroups.com, markflex2007 [EMAIL PROTECTED] wrote: How to add eventlistener for that if I have a event like dispatchEvent(new Event(this is an event)); Thanks Mark Event's are just strings... so you would listen for that string to be passed. ?xml version=1.0

[flexcoders] Re: mx:Metadata?

2008-08-26 Thread Nate Beck
--- In flexcoders@yahoogroups.com, Nate Beck [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, markflex2007 markflex2007@ wrote: How to add eventlistener for that if I have a event like dispatchEvent(new Event(this is an event)); Thanks Mark Event's are just

Re: [flexcoders] No Scroll Bar in Browser

2008-08-26 Thread Troy Gilbert
No comment on the wisdom of the default setting. I agree. I think it's much more appropriate to have your Flex app scroll with the browser's scroll bars than with a built-in Flex scroll bar (for full-app scrolling). It's not only a faster/smoother scrolling experience, it's more in-line with

[flexcoders] Re: No Scroll Bar in Browser

2008-08-26 Thread Tim Hoff
However, if you have flex scrollbars that are skinned, you would then have a mix of scrollbar styles. Personally, I'd rather have the flex app consume the available browser space and manage all scrolling internally. - .02. -TH --- In flexcoders@yahoogroups.com, Troy Gilbert [EMAIL PROTECTED]

Re: [flexcoders] Re: No Scroll Bar in Browser

2008-08-26 Thread Nik Derewianka
Out of the box Flex defaults to content being unviewable if the content is larger than the content window. There is no use case where this is desirable. If you have figured out how to turn on scrollbars for your flex app, have managed to style them, then you should be able to figure out

[flexcoders] Re: Help, Random module load issues.

2008-08-26 Thread Gus
Hi, maybe the problem can be caused by this, http://bugs.adobe.com/jira/browse/SDK-14669 The workaround is basically load the modules in sequence due to RSL and modules bug. P.S: I'm assuming you're using RSL, is it true? HTH Gus --- In flexcoders@yahoogroups.com, mthielman11 [EMAIL

RE: [flexcoders] Re: Help, Random module load issues.

2008-08-26 Thread Alex Harui
The stack trace indicates the shared code problem described on my blog in the presentation on modules (blogs.adobe.com/aharui) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gus Sent: Tuesday, August 26, 2008 12:13 PM To:

RE: [flexcoders] Positioning Custom ToolTips

2008-08-26 Thread Alex Harui
I think you intercept TOOL_TIP_SHOW and give it a different position. The ToolTipMgr should have placed it already where it think it should be. You can set the ToolTipManager.toolTipClass to have all instances of tooltips be something else, but you should extend ToolTip in your custom ToolTip.

RE: [flexcoders] Combobox to show table columns?

2008-08-26 Thread Alex Harui
Just walk the children() and pull the name() and add it to an array From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cox.blair Sent: Tuesday, August 26, 2008 9:19 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Combobox to show

RE: [flexcoders] selectedIndex and updateDisplayList

2008-08-26 Thread Alex Harui
I'm sorry, but this didn't make any sense. I don't see the code that broke in your exaple. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Tuesday, August 26, 2008 9:09 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] Combobox to show table columns?

2008-08-26 Thread Blair Cox
Cheers Alex! -- Blair From: Alex Harui [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com Date: Tue, 26 Aug 2008 12:40:18 -0700 To: flexcoders@yahoogroups.com Conversation: [flexcoders] Combobox to show table columns? Subject: RE: [flexcoders] Combobox to show table columns? Just

RE: [flexcoders] Get all class definitions in a loaded swf ?

2008-08-26 Thread Alex Harui
There is no way to find out the classes in a SWF (not without a lot of work). Best option is to put something in each SWF that describes what is in it. You will probably always have to use getDefinition though From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] dynamically sorting an adv datagrid

2008-08-26 Thread Alex Harui
Does the ADG have sorting on? If so, the collection should contain the sort info that descirbes the field used in the sort. If your component then modifies the sort, the ADG should detect and reflect that. From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re: selectedIndex and updateDisplayList

2008-08-26 Thread markgoldin_2000
What I am trying to say is that while I am setting up selectedIndex three times the updateDisplayList event fires only once. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I'm sorry, but this didn't make any sense. I don't see the code that broke in your exaple.

RE: [flexcoders] Placing crossdomain.xml at non-root locations

2008-08-26 Thread Alex Harui
Security.loadPolicyFile should do it as long as you call it before other network requests get going. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jerusalem_pilgrim Sent: Tuesday, August 26, 2008 8:24 AM To: flexcoders@yahoogroups.com

[flexcoders] Save Object with EncryptedLocalStore

2008-08-26 Thread markflex2007
Hi, I am working for a AIR application now. It see I only can save string with EncryptedLocalStore. But I want to save object with EncryptedLocalStore. For instance: var obj:userVO = new userVO(); obj.firstName = Tom; obj.lastName = Smith; Do you think if it is possible for me to

RE: [flexcoders] Re: selectedIndex and updateDisplayList

2008-08-26 Thread Alex Harui
Sure, that's the way invalidation works. There's an article in the first edition of Flex Authority that describes the invalidation mechanism. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Tuesday, August 26,

[flexcoders] Stop Flex closing whole browser

2008-08-26 Thread Nik Derewianka
Hi, So you have a whole bunch of pages open for your docs and samples, you compile your app, it launches and then hits an error and throws you back into debug mode in Flex. Sometimes when you press interrupt it will close the browser window instead of your flex app tab and you lose all

[flexcoders] Re: No Scroll Bar in Browser

2008-08-26 Thread Tim Hoff
All that I can say is that in all of the commercial applications that I've been involved with, not one used the Application tag as the main container. A Canvas or ViewStack is typically the main container and, by default, will use scrollbars in the manner that you desire. Cheers, -TH --- In

[flexcoders] Print?

2008-08-26 Thread kpjj31
Is it possible to print an external html page from with in Flex?

RE: [flexcoders] Save Object with EncryptedLocalStore

2008-08-26 Thread Kevin Benz
Nope.. Strings only although why not XML as a string? Be careful as well... .10mb max storage although that's a lot of xml. K From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markflex2007 Sent: Tuesday, August 26, 2008 12:53 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Save Object with EncryptedLocalStore

2008-08-26 Thread Jim Hayes
Documentation : http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/data/EncryptedLocalStore.html Google : http://www.google.com/search?q=EncryptedLocalStore+adobe+AIR (result number one, right at the top) -Original Message- From: flexcoders@yahoogroups.com on behalf of

Re: [flexcoders] Re: Curses Adobe

2008-08-26 Thread Josh McDonald
No you're not alone, but the rest of us realised after our first week of paid programming that we're always going to be suffering for a decision made by some company years ago, and we figured we could quit and take up farming, or just work around the problems and occasionally shake our fists. And

Re: [flexcoders] Will Scene 7 turn Adobe into a competitor of it's ISVs like Microsoft ???

2008-08-26 Thread Josh McDonald
First, what the hell is a Scene7? All I see is marketing-droid drivel :) Second, if Adobe can cook up a tool that makes my current skillset irrelevant (no offence guys, but that seems like a *lot* of work)... Just think of what you can build using that tool! I mean, MS Access sure put all those

  1   2   >