Re: [Flashcoders] Subtle XML/Font loading/CSS issue, limited test capabilities - looking for suggestions

2011-01-14 Thread Karl DeSaulniers
It is pretty nifty. It handles local font problems fairly well. Here is an example of one of my @font-face from the generated file. //Set in an IE only css @font-face { font-family: 'Textile'; src: url(fonts/textile-webfont.eot); src: local('☺'),

Re: [Flashcoders] Subtle XML/Font loading/CSS issue, limited test capabilities - looking for suggestions

2011-01-14 Thread Karl DeSaulniers
Oh and one last thing, keep your fonts folder inside your css folder.. well thats what worked best for me anyways. Something about relative paths and php email blasts led me to this, it wouldn't embed if it had to go outside of the css folder to find the font. But if it was inside where the

[Flashcoders] Facebook API implementations

2011-01-14 Thread allandt bik-elliott (thefieldcomic.com)
hey guys i have a couple of questions regarding using the facebook api that i'd like cleared up if possible. We're looking at settling on a set of classes to work with the facebook api. We've previously used the set up detailed in

[Flashcoders] Call method by name: A few questions...

2011-01-14 Thread Micky Hulse
Abbreviated AS3: == import com.google.maps.controls.*; // Setter: public function set controls($a:Array):void { _controls = $a; // Array of string method names. }; private function onMapReady($e:Event):void { // This works: _map.addControl(new ZoomControl());

Re: [Flashcoders] Call method by name: A few questions...

2011-01-14 Thread Dave Watts
I'm not sure if this is what you're asking for. 1. How to call com.google.maps.controls.* methods by name? new com.google.maps.controls.ZoomControl(); 2. Is it bad practice to pass an array to a setter? Not if you have a property of the object that is an array. Dave Watts, CTO, Fig Leaf