This one came in today, and since I just answered a Flash Form question, I tghought I'd add it:
Ray, is there a way to turn on debugging for flash forms so I can see actionscript errors instead of the form just not compiling and showing a blank page?
If you go to your CF Admin, Debugging and Logging, Debugging Settings, you will see this option:
Flash Form Compile Errors and Messages (Development use only) Selecting this option causes ColdFusion to display ActionScript errors in the browser when compiling Flash forms, and affects the display time of the page.
You will want to turn this on - but obviously only on your development machine.
You can also get at the full MXML used to generate the form. A blog posted a good entry on how to get to it, but the blog seems to be down for now. In case it returns, here is the url.
Archived Comments
what I would love to see would be an external swf or some other kind of "app" that could monitor all variables, objects, etc....
i.e. dump _root.slctGROUP after a remoting call has occured to see what members are inside that object.
Which leads me to a question. I am using pieces of the MXNA app on asfusion to build a security groups manager of sorts. I have a dragdrop action that allows you to drag from a users GRID into a groups SELECT box. The items in the select box have a column of "UserID" ( which is alertable and works onChange of itself). But when the userGRID's DragDrop action try's to access UserID(to make sure it's not replacing items) it is always undefined. I've tried _root.Groups.DataProvider[i].UserID and event.target.dataprovider[i].UserID and _root.Groups.getItemAt[i].UserID. im so confused. ANy ideas?