[flexcoders] Anybody using the Sreenivas Pivot Component with MDX?

2010-03-21 Thread MicC
Cube data seems more accessible if it inside an OLAPCube instance, as in the classic Flex Pivot Component from Sreenivas. However this object takes a flat data source as input. Sreenivas, in responding to the question: I'm using a xmla bridge to get the data of the cube, do you know how can I

[flexcoders] Creating class instance defined in string?

2010-03-21 Thread Ivan
I have a menu with XML dataprovider in which each node contains value panelClass node label=MyPanel panelClass=com.test.panelTest/ panelClass contains a full class name of my panel components which I want to display on node double click event. The problem is how to create class instance from

[flexcoders] Flex Builder won't use my changes

2010-03-21 Thread Rick Genter
I've been building an app with Flex Builder 3. All of a sudden when I run my app using the debugger I no longer see my changes reflected. For example, I have a class where I deleted several trace() calls and added another trace() call, yet when I run the app I'm seeing the old trace() messages

[flexcoders] Re: Creating class instance defined in string?

2010-03-21 Thread ag_rcuren
Take a look at ApplicationDomain Class it provides some methods that will help you do this. Here is an example of what you are trying to do I think... try { var myClass:Class = ApplicationDomain.currentDomain.getDefinition(e.panelClassName) as Class; var myInstance:* = new myClass();

Re: [flexcoders] Flex Builder won't use my changes

2010-03-21 Thread Lee Jenkins
Rick Genter wrote: I've been building an app with Flex Builder 3. All of a sudden when I run my app using the debugger I no longer see my changes reflected. For example, I have a class where I deleted several trace() calls and added another trace() call, yet when I run the app I'm

Re: [flexcoders] Flex Builder won't use my changes

2010-03-21 Thread kris range
Check the date of the debug swf flex builder is building to make sure they are the latest ones...if not that, I'm sure you've already tried this but a browser cache clear is also something to try. I tend to always use Firefox with web developer no-cache settings but whenever I test in Safari or

Re: [flexcoders] Flex Builder won't use my changes

2010-03-21 Thread Mike Chabot
Disable your browser cache. I have to do this when developing. -Mike Chabot On Sat, Mar 20, 2010 at 7:49 PM, Rick Genter rick.gen...@gmail.com wrote: I've been building an app with Flex Builder 3. All of a sudden when I run my app using the debugger I no longer see my changes reflected. For

[flexcoders] BlazeDS collections help

2010-03-21 Thread Jeff
Does anyone have any experience with mapping Actionscript collections (ie. ArrayCollection, Object - Map, Dictionary, etc) back to Java collections using RemoteObject and BlazeDS. If so, any insights, tips, tricks would be greatly appreciated. It seems that the Java to actionscript works

[flexcoders] New wew comer in flex

2010-03-21 Thread KENARIO
// WebTrends SmartSource Data Collector Tag // Version: 8.6.2 // Tag Builder Version: 3.0 // Created: 2/3/2010 7:13:14 PM function WebTrends(){ var that=this; // begin: user modifiable this.dcsid=dcsout4kk1435d9zt77ba_2l4e; this.domain=webtrendsdc.ckc.bz;

Re: [flexcoders] Flex Builder won't use my changes (resolved, without explanation)

2010-03-21 Thread Rick Genter
On Mar 21, 2010, at 8:32 AM, Lee Jenkins wrote: Are they any linked projects? If so, try cleaning them as well or clean all when asked. I had the same problem with a main project which referenced custom library folders. Seems FB has a problem keeping everything in sync. Not sure if

[flexcoders] Re: Using Server Stored Images In An Air Application?

2010-03-21 Thread James
--- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: Is there any way to display server stored images within an Air application? I can easily use server images within a flex application but it's basically the fact that I'm having problems displaying images stored in a

[flexcoders] Unsubscribe

2010-03-21 Thread Chris Greener
_ Hotmail is redefining busy with tools for the New Busy. Get more from your inbox.

[flexcoders] Make a Timer's first timeout event immediate

2010-03-21 Thread p_repetti
Hello how do I set a Timer to time out immediately the first time ? I mean: I create a Timer with an interval of 10s; I set an event listener to the timeout() function. When I start() it, I have to wait for 10s for it to time out and execute timeout(). How can I force the first timeout()

[flexcoders] preventing multiple logins w/ same id

2010-03-21 Thread hgnowhg
My application is a .swf file inside a php wrapper. Since I have a paid subscription site, I want to prevent user A from giving his password to user B. If user B loggeds in w/ User A's username password, then I will simply log out User A. (In the case that User B stole the password/username of

[flexcoders] how to prevent multiple logins w/ same id

2010-03-21 Thread hgnowhg
My application is a .swf file inside a php wrapper. Since I have a paid subscription site, I want to prevent user A from giving his password to user B. If user B loggeds in w/ User A's username password, then I will simply log out User A. (In the case that User B stole the password/username of

RE: [flexcoders] Using Server Stored Images In An Air Application?

2010-03-21 Thread Tracy Spratt
Sure, load the images dynamically. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of James Sent: Sunday, March 21, 2010 1:13 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Using

RE: [flexcoders] Re: Problem reading an XML file

2010-03-21 Thread Tracy Spratt
If you can see the xml when you do: var myXML:XML = XML(event.result); trace(myXML.toXMLString()); //do yo see the whole xml? then go one level deeper: myXML = myXML.data[0] trace(myXML.toXMLString()); //do you see the data xml If so, go one level deeper, and trace that, etc.

[flexcoders] What are the Flex3/4 websites requirements after been FTP to the hosting server?

2010-03-21 Thread fred44455
I am not new to web design ok. I have done several websites in my life so I deserve to be treated with respect ok. It is not because I am a newbie in Flex AS3 that I am a retarded. Had several weird rude answers from this site each time that I am asking a simple question. Anyway my question

RE: [flexcoders] Make a Timer's first timeout event immediate

2010-03-21 Thread Keith Reinfeld
If I understand you correctly: import flash.utils.Timer; import flash.events.TimerEvent; var _timer:Timer = new Timer(1000, 10); _timer.addEventListener(TimerEvent.TIMER, onTimer, false, 0, true); _timer.start(); onTimer(); function onTimer(e:TimerEvent = null):void {

RE: [flexcoders] Using Server Stored Images In An Air Application?

2010-03-21 Thread Tracy Spratt
You should be able to use mx:Image and set the source to the url of the image on the server. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Gary Moorcroft Sent: Monday, March 22, 2010