Re: FDB and its commands

2015-12-22 Thread Alex Harui
Hi Dhwani, I'm still confused about what exact problem you are having. Are you still having a problem with FDB or just updating a value in an XMLListCollection? -Alex On 12/21/15, 11:58 PM, "dhwanishah85" wrote: >Hi Alex, > >The data is few lines of result i am getting when i send print comma

Re: FDB and its commands

2015-12-22 Thread dhwanishah85
Hi Alex, The data is few lines of result i am getting when i send print command to fdb. My question was that i am currently having data in XMLListCollection. I am facing issue with updating perticular variable value. Do you think changing the data type will make things better? I do not have any id

Re: FDB and its commands

2015-12-21 Thread Alex Harui
I"m not sure I understand the question. This looks like a dump of the main Application. What does that have to do with ADG and XMLListCollection? On 12/21/15, 11:00 PM, "dhwanishah85" wrote: >Hello Alex, > >I am getting result after sending following command to fdb: >send("print this."); > >an

Re: FDB and its commands

2015-12-21 Thread dhwanishah85
Hello Alex, I am getting result after sending following command to fdb: send("print this."); and i am getting following snippet of result in return: data = "$2 = this = [Object 156627105, class='TestFlexAIR'] $alpha = 1 (0x1) $blendMode = "normal" $blendShader = [Setter 1582, name='http://www.

Re: FDB and its commands

2015-12-21 Thread Alex Harui
I thought FB only showed the this pointer and variables local to the function. IIRC, for any object, FB only shows its immediate properties and leaves the bigger and slower "inherited properties" for on-demand. -Alex On 12/21/15, 12:07 AM, "dhwanishah85" wrote: >Hello Alex, > >Thanks for your

Re: FDB and its commands

2015-12-21 Thread dhwanishah85
Hello Alex, Thanks for your response. I need to update variables which are getting changed during debug process. Like how it is working in Flash builder, same way I want my debug view to get updated with changing values without hurting the execution time of "f6". I dont get any useful info in in

Re: FDB and its commands

2015-12-21 Thread Alex Harui
Do you want local variables or variables in scope? Local variables are available as "info local" and parameters are available via "info stack". I don't know of any easy way to get all of the scope variables. You might want to just get a few and use scrolling to get more. -Alex On 12/20/15, 11