[flexcoders] how to communicate/share data between multiple SWF

2006-08-03 Thread Amy
that data to be included into each SWF, instead I want to make some provision so that all other SWFs can share that common information. PLEASE Help me this.. As next month we want these things moving... Thanks in Advance. Amy -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group

RE: [flexcoders] Dispatch Event?

2006-08-16 Thread Amy
0]but I've also seen the error while debugging:mx.rpc.soap.mxml::WebService/dispatchEventSource not found.I thought this would be in the SDK or Flex Builder 2? But, it's not on my local system.. can anyone give me a hint as to how to fix this?thanks! -Amy Yahoo! Messenger with Voice. Make PC-to

RE: [flexcoders] How to cast a WebService lastResult when CFC returnType=xml

2006-08-21 Thread Amy
Try:web service name.method.lastResult.methodResult.top xml.xml childrenThis works for me with .NET web services that return XML. Darren Houle [EMAIL PROTECTED] wrote: Bump??DarrenFrom: "Darren Houle" [EMAIL PROTECTED]comReply-To: [EMAIL PROTECTED]ups.comTo: [EMAIL

Re: [flexcoders] Re: drag and drop from a grid to an image..

2006-08-22 Thread Amy
I did some testing and experimenting some more. I just used something like this:private function dragEnterHandler(event:DragEvent) {// Get the drop target component from the event object.var dragInitiator:Image=Image(event.currentTarget);DragManager.acceptDragDrop(dragInitiator);}and

[flexcoders] Re: htmlText in text that originates in XML

2007-10-30 Thread Amy
with stripping the CDATA off before it gets to the screen, but I can't know what line breaks were added by the XML function and which were added by the user. I'm sorry, but this seems like a huge bug to me! -Amy

[flexcoders] Re: htmlText in text that originates in XML

2007-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Tracy Spratt tspratt@ wrote: I am doing this successfully, by encoding the markup, and keeping it in an attribute(description, below). dest category=Directions to Hotel title=West

[flexcoders] Re: htmlText in text that originates in XML

2007-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Amy amyblankenship@ wrote: --- In flexcoders@yahoogroups.com, Tracy Spratt tspratt@ wrote: I am doing this successfully, by encoding the markup, and keeping it in an attribute

[flexcoders] Replacing Caret character in text

2007-10-30 Thread Amy
or having to write an editor for them. The code I am using is: var caret:RegExp = /\^\g/; theText=contentItem.valueOf().toString(); theText=theText.replace(caret, lt;); but nothing gets replaced. What am I missing? Thanks; Amy

[flexcoders] Re: htmlText in text that originates in XML

2007-10-30 Thread Amy
instance of a repeater component was clicked). -Amy

[flexcoders] Re: htmlText in text that originates in XML

2007-10-30 Thread Amy
. Thanks, though; Amy

[flexcoders] Re: Replacing Caret character in text

2007-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Have you considered using the RichTextEditor? Tracy How would that help? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Amy Sent: Tuesday, October 30, 2007 2:22 PM To: flexcoders

[flexcoders] Re: Replacing Caret character in text

2007-10-30 Thread Amy
--- In flexcoders@yahoogroups.com, Matthew Ness [EMAIL PROTECTED] wrote: Amy, try: const caret:RegExp = /\^/g; theText = theText.replace(caret, your replacement); I think I tried that, and it wouldn't compile with the forward slash before the g. However, I just split

[flexcoders] Re: Replacing Caret character in text

2007-10-30 Thread Amy
it they have the information to do it, even if what they want to do turns out to be wrong. Thanks; Amy

[flexcoders] Re: htmlText in text that originates in XML

2007-10-31 Thread Amy
OUT as well ;-). I need to write to the local drive because that's where the XML files are that are being edited (?!). -Amy

[flexcoders] Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed.

2007-11-01 Thread Amy
any problems, but I'm not sure how to listen for an error in a callBack function and prevent the user from seeing it. TIA; Amy

[flexcoders] Re: Error #2044: Unhandled IOErrorEvent:. --Solved!!

2007-11-01 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: When I pass XML with this string in it ^img src=../images/a.gif through an ExternalInterface, I get this error Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed. The error wouldn't be so bad

[flexcoders] Color swatches in Design view

2007-11-25 Thread Amy
Is there a way to switch from the gradient style color picher that is the default in Design mode to something that gives you swatches in the way that every other Adobe product gives you? Thanks; Amy

[flexcoders] Re: Switching easing function at runtime

2007-11-25 Thread Amy
that newValue parameter based on what someone clicks in a list. For instance, I don't think setStyle(easingEffect, mx.Effects.easing.[thePackage].easeInOut) would work. What would? Thanks; Amy

[flexcoders] Re: Switching easing function at runtime

2007-11-25 Thread Amy
(mx.Effects.easing. + TheEasingClass); As I said in my first post, I tried that and it didn't work, so clearly there is some aspect I am missing. Is it possible to give a more complete code snippet that might help fill in the gap? Thanks; Amy

[flexcoders] Dynamically Changing Easing Function Again

2007-11-26 Thread Amy
I am trying to create an easing function explorer to be able to compare the existing easing functions. However, I am having a problem with the syntax to change out the function at runtime. I feel like I am really close here, but I am at a loss as to what else to try. Here is the function I

[flexcoders] Re: Dynamically Changing Easing Function Again

2007-11-26 Thread Amy
the spirit of Flex. -Amy --- In flexcoders@yahoogroups.com, Amy amyblankenship@ wrote: I am trying to create an easing function explorer to be able to compare the existing easing functions. However, I am having a problem with the syntax to change out the function at runtime

[flexcoders] Re: Dynamically Changing Easing Function Again

2007-11-26 Thread Amy
-code switch case statements, as it is just as verbose and non-extensible. Is there a more elegant way to tell Flex that it needs to link it in? -Amy

[flexcoders] Can't debug FB 3 pieces

2007-11-27 Thread Amy
player. I.e. I can't even get the debug player installers to even _run_, not even the one that is in my FB 3 beta folder. Where can I get a debug player installer that will run? TIA; Amy

[flexcoders] Re: Dynamically Changing Easing Function Again

2007-11-27 Thread Amy
--- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: Is there a more elegant way to tell Flex that it needs to link it in? I don't think so. If you're building a SWC, compc has an -include-classes configuration option, but if you're building a SWF, mxmlc doesn't have

[flexcoders] Previewing Halo styles

2007-11-27 Thread Amy
of these styles. Any ideas? TIA; Amy

[flexcoders] Re: Can't debug FB 3 pieces

2007-11-27 Thread Amy
--- In flexcoders@yahoogroups.com, shaun [EMAIL PROTECTED] wrote: Howdy, Amy wrote: When I try to debug my Flex Builder 3 pieces, I get a message that it can't find the debug player. I have been all over the adobe site looking for the current debug player, and everything I find

[flexcoders] Cannot change button style

2007-11-27 Thread Amy
\mx\core\UIComponent.as:8281] The same thing happens if I use a.setStyle('fillColors', [#00, #00]); though the error messages may not be exactly the same...but they are fairly close. Does anyone have any idea what I could be doing wrong? TIA; Amy

[flexcoders] Re: Cannot change button style

2007-11-27 Thread Amy
--- In flexcoders@yahoogroups.com, shaun [EMAIL PROTECTED] wrote: Amy wrote: I have a TileList that has XML as its dataProvider and is using my custom itemrenderer to display the data. The itemrenderer has 5 buttons, labeled A, B, C, D, and E. These buttons are intended to look

[flexcoders] Re: Cannot change button style

2007-11-27 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: ... However, if I use a.stylename = selectedBtn, I get TypeError: Error #1009: Cannot access a property or method of a null object reference. at com.magnoliamultimedia.components::AnswerBubble/com.magnoliamultimedia

[flexcoders] Re: Cannot change button style

2007-11-28 Thread Amy
--- In flexcoders@yahoogroups.com, shaun [EMAIL PROTECTED] wrote: Amy wrote: A is the label, whereas a is the ID. The code hinting works, so I have no reason to suspect I've gotten that bit wrong. Ahh.. sorry my mistake. :) Well, from the original error message you provided

[flexcoders] Re: Previewing Halo styles

2007-11-28 Thread Amy
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 27 Nov 2007, Amy wrote: from the regular style. I haven't been able to find a graphical representation of these styles. Any ideas? http://examples.adobe.com/flex2/consulting/styleexplorer

[flexcoders] Re: Previewing Halo styles

2007-11-28 Thread Amy
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 28 Nov 2007, Amy wrote: Would you mind sharing the steps you'd use to display the selected style in the style explorer? Under 'buttons', pick 'button'. Toggle Button Bar may give you more hints

[flexcoders] Re: Cannot change button style

2007-11-28 Thread Amy
--- In flexcoders@yahoogroups.com, shaun [EMAIL PROTECTED] wrote: Amy wrote: A is the label, whereas a is the ID. The code hinting works, so I have no reason to suspect I've gotten that bit wrong. Ahh.. sorry my mistake. :) Well, from the original error message you provided

[flexcoders] Re: Can't debug FB 3 pieces

2007-11-28 Thread Amy
/downloads.html -- however, since you are using the beta, you should use the player that came with the beta, it is newer than the current officially-released one. That one won't install either. Thanks, though. -Amy

[flexcoders] Re: Can't debug FB 3 pieces

2007-11-28 Thread Amy
--- In flexcoders@yahoogroups.com, Mike Morearty [EMAIL PROTECTED] wrote: Hmm. What's the error message? Flash player failed to install or was canceled ;-)

[flexcoders] Passing additional information into renderer

2008-01-16 Thread Amy
of where to look for the images into the itemRenderers without also tightly coupling the code. Any ideas? Thanks; Amy

[flexcoders] Re: Passing additional information into renderer

2008-01-17 Thread Amy
them anything you want. It seems like it is prohibitively hard to cleanly pass data in the List type containers. Thanks; Amy

[flexcoders] Re: Passing additional information into renderer

2008-01-18 Thread Amy
, myThumbNailViewer} and it will essentially give every instance of the renderer that reference. Cool. Thanks. Any insight into why repeaters let you do this directly, yet other item renderers have to use a ClassFactory? Thanks; Amy

[flexcoders] Re: Where have all the projects gone?

2008-02-12 Thread Amy
--- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: do File--Import Unfortunately, when I press the Finish button nothing happens. After pressing it repeatedly, I just had to click Cancel: :-(

[flexcoders] Re: Constraining image size

2008-02-12 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I think you just want minWidth/minHeight=0, no width/height attributes, or maxWidth/Height attributes. Keep in mind that loading is asynchronous and the measuredWidth/Height are not valid until after the image

[flexcoders] Re: Where have all the projects gone?

2008-02-12 Thread Amy
off in the heirarchy from where I thought I needed to be. When I switched to the right workspace, they all came back. Duh. Practicing kicking own self -Amy

[flexcoders] Constraining image size

2008-02-12 Thread Amy
/ but the image fails to appear, presumably because somehow the measuredWidth is 0. Any ideas? Thanks; Amy

[flexcoders] Where have all the projects gone?

2008-02-12 Thread Amy
to just open the file, FB said the file was not within a project. What happened to all my projects, and am I going to have to redefine all of them? TIA; Amy

[flexcoders] Sort of OT: RSS Feeds

2008-02-19 Thread Amy
RSS link or how to use what you get when you click one of the other links, I'd appreciate it! Thanks; Amy

[flexcoders] Re: Sort of OT: RSS Feeds

2008-02-19 Thread Amy
page. I see when I look at the source now that it's not, but it also doesn't look like other RSS I've used in the past. Oh, well, guess I'll give it a whirl. Thanks; Amy

[flexcoders] Re: very slow return from ExternalInterface

2008-02-29 Thread Amy
that the slowdown would have to be either the Flash player or the Flex framework. Thanks; Amy

[flexcoders] Re: Flex 4: Text Performance Research

2008-02-29 Thread Amy
for certain applications, Flex has the fullest feature set that make sense to hardcore Authorware developers who have essentially been using Authorware for building applications that happen to show eLearning content. -Amy

[flexcoders] Re: Strategy For Organizing Complex Application

2008-03-02 Thread Amy
from the source if it is out yet. HTH; Amy

[flexcoders] Re: RTF vs RTE

2008-03-02 Thread Amy
and then either prints automatically or pops up a word form that allows further instructions. This is just a theoretical approach for me at this point, but it seems like the most likely approach, given the limits of my knowledge of Flex ;-). -Amy

[flexcoders] Re: RTF vs RTE

2008-03-02 Thread Amy
--- In flexcoders@yahoogroups.com, aceoohay [EMAIL PROTECTED] wrote: Amy: Thanks for the post. No, actually I will be doing this in flex, not AIR. What I would like to do is to have a mini word processor that a user can edit and save RTF type files. I will define a tag

[flexcoders] Closing Project

2008-03-05 Thread Amy
Is there a setting I can use so that when I close a project the mxml documents associated with it close as well? Thanks; Amy

[flexcoders] XML structure and error with listbase

2008-03-05 Thread Amy
it :-). Thanks; Amy

[flexcoders] Re: XML structure and error with listbase

2008-03-05 Thread Amy
or TileList would have problems with the new XML structure...? -Amy

[flexcoders] Re: XML structure and error with listbase

2008-03-05 Thread Amy
:-). Now the logic is executing for each renderer, but for some reason they are not visible on the screen. Oh, well, maybe it will look like that makes sense tomorrow :-) -Amy

[flexcoders] Re: Closing Project

2008-03-06 Thread Amy
--- In flexcoders@yahoogroups.com, Fernando E. Troya [EMAIL PROTECTED] wrote: Hello Amy, In Eclipse IDE that's the default behavior. So, if you're using the FlexBuilder Plug-in you shouldn't have that problem. I don't know about the standalone version of FlexBuilder, but since its built

[flexcoders] Best Practice knowing when renderer is ready

2008-03-06 Thread Amy
would handle this situation. So, what is the best practice for this situation? Thanks; Amy

[flexcoders] Ctrl + space behavior in FB3 Beta 3

2008-03-06 Thread Amy
what I wanted. How can I get my context menu back? Thanks; Amy

[flexcoders] E4x mystery

2008-03-06 Thread Amy
); } } } I am only testing the logic where isEditing is false right now. Thanks in advance for any insight anyone can add. -Amy

[flexcoders] Re: Closing Project

2008-03-06 Thread Amy
--- In flexcoders@yahoogroups.com, Fernando E. Troya [EMAIL PROTECTED] wrote: Amy said: I'm using Flex Builder 3 Beta 3 (just got my new SN today, so I will need to install). But I find it really annoying when I close a project and the documents stay open and Flex generates

[flexcoders] Re: E4x mystery

2008-03-06 Thread Amy
with), everything works as expected. If I click one of the already selected nodes, then I just keep getting more and more selected nodes. Thanks; Amy

[flexcoders] Re: Images in Rich Text Control

2008-03-06 Thread Amy
--- In flexcoders@yahoogroups.com, phil swenson [EMAIL PROTECTED] wrote: I entered a feature request for image support in the Flex Rich Text Control. Unfortunately they marked it deferred, so I guess they decided it's not worth doing for Flex 4 :( If you agree with me that this feature is

[flexcoders] Re: Strange Flex Builder 3 Plug in behaviour: ctrl-click / F3 broken

2008-03-11 Thread Amy
. Now I make sure I don't keep FB open more than a few hours at a time. HTH; Amy

[flexcoders] Re: Tree Root node

2008-03-11 Thread Amy
XML(dataProvider)[EMAIL PROTECTED] = test ; but it didnt work. Someone knows how to do it?! Have you tried getting the parent of the first child? I don't think you can directly access properties of a root node, but I do believe the children know about it? HTH; Amy

[flexcoders] Re: Simple ActionScript math help needed using dates

2008-03-12 Thread Amy
? If it is coming from a database, why not just let the database calculate the difference in dates? The databases I've worked with use the DateDiff function for this, but this function name might be different in other databases. HTH; Amy

[flexcoders] Bookmark Window

2008-03-12 Thread Amy
? Thanks; Amy

[flexcoders] Problem with CheckBox and databinding

2008-03-20 Thread Amy
: presentation.audience.level.isIntermedate=true. This not only properly sets the value, indicating that my class structure is operating, but it also checks the box. Is check box databinding only in one direction, or have I tried to bind to the wrong property, or am I missing something stupid? Thanks; Amy

[flexcoders] Re: Binding Question to Value Object

2008-03-20 Thread Amy
spent hours getting to this point. It would be nice to know those hours went to help someone else. Somehow it would seem more worth ti :-). HTH; Amy

[flexcoders] Re: Problem with CheckBox and databinding

2008-03-20 Thread Amy
exactly the same way, with the only difference being the type of control they are bound to. What is different about a CheckBox that it is only one way? Thanks; Amy

[flexcoders] Re: express install not working?

2008-03-21 Thread Amy
to fix this...I think I accidently deleted it, but you might be seeing something like the same problem. Maybe Matt will see this and chime in. HTH; Amy

[flexcoders] Detecting data binding programmatically

2008-03-21 Thread Amy
not affect the object property). I don't want to write a lot of extra messy code to handle this. Is there a way to programatically figure out what object property is bound to the selected property of the event.currentTarget? Thanks; Amy

[flexcoders] Re: Detecting data binding programmatically

2008-03-21 Thread Amy
--- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: can you post a little example. I think it may have to do with one of them not implementing the IEventDispatcher Class so your not getting the other way binding. - Original Message From: Amy [EMAIL PROTECTED

[flexcoders] Re: Delete a specific element from an xml object -- by it's value

2008-03-21 Thread Amy
'b' resulting in the following xml object: items itemaitem itemcitem items I don't want to use the following because it deletes all the item tags: delete items.item; try delete items.item.(text()=='b'); HTH; Amy

[flexcoders] Re: Problem with new changes not compiling in Flex 3

2008-03-23 Thread Amy
. HTH; Amy

[flexcoders] Re: Looping through xml elements and delete a specific element

2008-03-23 Thread Amy
'); http://flexdiary.blogspot.com/2008/03/comparing-xml-nodes-of-same- name-with.html HTH; Amy

[flexcoders] Strange Find/Replace issue

2008-03-24 Thread Amy
I've messed up that decides which of these buttons is selected by default? Thanks; Amy

[flexcoders] Re: What's this Called?

2008-03-26 Thread Amy
, Muzak He may also have been looking for the word enumerate or even iterate. HTH; Amy

[flexcoders] Re: Simple Image Rotator

2008-04-03 Thread Amy
direction. Thanks in advance for any feedback. You could try simply putting a Fade effect on the complete event of button_image. I've used this in a similar application and I've found it to look pretty similar to what you seem to be trying for. HTH; Amy

[flexcoders] Re: How to group the displayObjects

2008-04-03 Thread Amy
as your dragImage. There's a good example in Flex 2 Training from the Source (not sure if the Flex 3 version is out yet) that shows creating a dragImage. HTH; Amy

[flexcoders] testing object equality in datagrid AFTER sort

2008-04-11 Thread Amy
but with no luck. Does anyone have any solution or ideas to point me in the right direction? Thanks, Amy

[flexcoders] Re: Fb3 Help

2008-04-12 Thread Amy
, you could. HTH; Amy

[flexcoders] First repeater item loading twice

2008-04-21 Thread Amy
; } } Thanks! Amy

[flexcoders] Tiny components when using callLater()

2008-04-21 Thread Amy
to work. Any ideas? TIA; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-21 Thread Amy
in the above code. Thanks; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-22 Thread Amy
; Amy

[flexcoders] Re: Newbie Question: loading text file.

2008-04-22 Thread Amy
in a string. Look at URLLoader. You can either hard-code the URLRequest object or set it up dynamically. HTH; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-22 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Amy, Many folks have used HBox as a renderer successfully. Maybe there's something about repeater that is exposing a problem, but all I can do at this point is try to offer advice on how to get more information

[flexcoders] Re: Tiny components when using callLater()

2008-04-23 Thread Amy
updateDisplayList(w:Number, h:Number):void { trace(udl, w, h); super.updateDisplayList(w, h) } This is completely wrong (10 and 4 vs. the measured 114 and 238), but I don't know enough about why to be able to determine what that means. Thanks! Amy

[flexcoders] Re: how do I loop thru dynamically created UI components?

2008-04-23 Thread Amy
with static type flash.display:DisplayObject to a possibly unrelated type mx.containers:HBox. If I read the line correctly, I can TypeCast a Display Object by using the constructor of the UIComponent? You can use something like myHBox:HBox = yourVar as HBox HTH; Amy

[flexcoders] Changing DataProvider on HorizontalList component

2008-04-23 Thread Amy
(); trace('addSolution'); } What am I missing? Thanks; Amy

[flexcoders] Re: Changing DataProvider on HorizontalList component

2008-04-24 Thread Amy
on the original dataProvider and it doesn't even _try_ to add the last itemRenderer. Thanks; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-24 Thread Amy
--- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Alex Harui aharui@ wrote: I'm pretty sure you're not lazy, which is why I'm suggesting that you continue to spend time upgrading your skills at debugging. As your applications reach

[flexcoders] Re: passing parameters to eventlistener functions

2008-04-24 Thread Amy
HTH; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-24 Thread Amy
it is patched to work acceptably, so if you don't have time, you don't have time. Thanks; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-24 Thread Amy
. Set itemsNeedMeasuremet on the HList. I haven't subclassed HorizontalList. Can I do that from within my HBox itemRenderer? Or can I do that from the Application container? Thanks; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-24 Thread Amy
to just switch to a Repeater and rewrite my itemRenderer to work from a repeater as soon as the problem appeared, but this is how you learn things :-). Thanks; Amy

[flexcoders] Re: Tiny components when using callLater()

2008-04-24 Thread Amy
to trick it to being set to true by setting a style like fontSize OK, thanks. I'll try that :-). -Amy

[flexcoders] Re: Synchronous web service calls

2008-04-29 Thread Amy
--- In flexcoders@yahoogroups.com, byte.sensei [EMAIL PROTECTED] wrote: OK, so I understand that Flex web service calls are asynchronous, and I understand the many cases where this makes sense since you don't have to hold up the UI experience while waiting for a web service or remote

[flexcoders] Re: looping on results from returned data

2008-04-29 Thread Amy
--- In flexcoders@yahoogroups.com, Jason B [EMAIL PROTECTED] wrote: xmlResult = new XML(event.result); Try dropping the word new. HTH; Amy

[flexcoders] Re: Flexbuilder or Eclipse plugin to emulate VisualStudio function drop down?

2008-04-29 Thread Amy
Studio? I have quite a few functions in my script block and I'm constantly scrolling up and down to find stuff. That feature would be nice! You can set up bookmarks, or you can click your function anywhere it is used in code and press F3. HTH; Amy

[flexcoders] Re: warning: unable to bind to property 'XXX' on class 'XML' (class is not an IEventDispatcher)

2008-04-29 Thread Amy
tmpXMLList:XMLList = new XMLList(evt.result); xmlListCategories = new XMLListCollection(tmpXMLList); You may find that you need to return back actual XML and then what you have should work fine. HTH; Amy

  1   2   3   4   5   6   7   8   9   10   >