I'm using Flash CS3 to create the SWC file (which has the Tree component & Component Assets folder) then using FlashDevelop to create the SWF. Btw. if I remove...
I think Flash CS3 does some magic behind the scenes to make the symbol in the library replace the package and class it represents. If I'm right, by overriding...
Hi Josh Thanks for your patience on this. I made the Class changes and published the new SWC from Flash. Then removed the Yahoo Classes Folder and published it...
Hi, I want to have additional controls in the tree's rows, e.g. a button in each line. I wrote a custom CellRenderer and added a Button-Sprite. Problem: The...
For #1, make sure your source code changes are in Flash CS3's source path before you export the SWC. For #2, here's what I mean: For each of the Tree's skins...
When I comment out: setStyle('cellRenderer', TreeCellRenderer); ... which s part of the Tree constructor, it publishes without errors. But this is needed to...
I am having the same issue, even after updating to version 1.4. It occurs if antiAliasingType is set to advanced (AntiAliasType.Advanced). The following code...
It's not surprising that setting antiAliasType on an internal display object causes the text to be cut off. The TabBar and it's buttons don't know to measure...
There seem to be a problem with HBoxPane component. I have attached a custom object which extends sprite into the HboxPane. within my custom class, i have: ...
Perhaps you're not properly associating your custom class with a symbol in your library, or maybe you're setting mouseEnabled or mouseChildren to false ...
I had my Gmail account long before I worked for Yahoo! and I'm not one to switch my email address for something like that, especially since I think Gmail's UI...
I am currently working on implementing a bar chart using the Astra component set and have to say it looks nice.Only I have a question how I can change the...
Thanks, so that would mean I should calculate the marker size by hand. Something like markerSize = ( width / totalItems )/ seriesCount Only I don't think I...
Yes, if you want the markers to fit within the chart a certain way, you'll need to calculate the marker sizes by hand. It defaults to a specific number of...
Hello, I'm playing with the search AS3 Yahoo API, and have curious results when I modify the language parameter. Here is the call used in AS3, as simple as...
Hi y'all. I am running into a zoom issue that has stumped me short of debugging the YahooMap.swc. version 0.9.4. When I invoke a file chooser in FireFox 3.5.3...
Hi everyone, I am trying to build a contact form where users can enter information and it will then collect and send that information to me. In the situation...
Hi Shade, You can collect unvalidated data by loop through FormDataManagerEvent.collectedData. For instance, in sample movie of SimpleFormToBegin.as , try to...
Thanks for answering my post. I have not been able to test the solution you suggested because I am not sure how to fire the submit handler without the user...
"collectData" function in "FormDataManager" is public. So, you can call directly formDataManager.collectData(). Let's say you have registed trigger like... ...
Wow, I completely missed that function in the documentation. The only other thing would be to collect data from fields even though they haven't validated. For...
At the very end of FormDataManager.as, there is line of FormDataManager.failedData[id] = curErrStr; in "validateAndStore" function. You can modify it as below...