9:30 – VISIBILITY
- The days are getting longer!
- Downloaded SmartGWT. I talked to Dong about the risks of mixing them, as well as the advantages/disadvantages of each. He thinks that GWT is easier to work with.
9:30 – VISIBILITY
9:30 – 2:30 VISIBILITY
9:00 – 1:00 VISIBILITY
9:30 – 12:30, 3:30 – 4:30 VISIBILITY
9:00 – 12:00, 2:30 – 3:30 VISIBILITY
8:00 – 12:00, 4:00 – 5:00VISIBILITY
10:00 – 5:00 VISIBILITY
7:30 – 3:30 VISIBILITY
8:00 – 4:00 VISIBILITY
8:30 – 12:30 VISIBILITY
7:30 – 3:30 VISIBILITY
8:00 – 3:30 VISIBILITY
7:30 – VISIBILITY
7:30 – 4:00 VISIBILITY
7:30 – 4:30 VISIBILITY
How to get all the currently defined styles (from http://blog.flexexamples.com/2007/09/12/building-a-simple-style-browser-in-flex-3/)
var arr:Array = styleManager.selectors;
var selector:String;
var cssStyle:CSSStyleDeclaration;
var obj:Object;
var key:String;
for each (selector in arr){
cssStyle = styleManager.getStyleDeclaration(selector);
obj = new cssStyle.defaultFactory();
for (key in obj) {
trace(selector+": "+key+" = "+obj[key]);
}
}
You must be logged in to post a comment.