[Flashcoders] Re: Embedding font weights?

2008-01-11 Thread Matt Gitchell
answered my own question with an admitted shot in the dark: If you add fontWeight='bold' to the embed call it works. --matt -- Forwarded message -- From: Matt Gitchell [EMAIL PROTECTED] Date: Jan 11, 2008 12:28 PM Subject: Embedding font weights? To: Flash Coders List flashcoders

[Flashcoders] Embedding font weights?

2008-01-11 Thread Matt Gitchell
Hi. I'm trying to use a bold font with the Embed dingus, and when I use this: [Embed(systemFont='Gotham', fontName='goth', mimeType='application/x-font', unicodeRange='U+0020-U+002F,U+0030-U+0039,U+003A-U+0040,U+0041-U+005A,U+005B-U+0060,U+0061-U+007A,U+007B-U+007E')] public static var

Re: [Flashcoders] Replacing Colors?

2009-01-13 Thread Matt Gitchell
There are all kinds of tools to accomplish this in BitmapData, like floodFill(). threshold() has yielded good results for me, too, but it requires some tinkering. Look at the examples in the docs. --Matt On Tue, Jan 13, 2009 at 4:15 PM, peter ginsberg malphig...@gmail.comwrote: Is there any

Re: [Flashcoders] [AS3] height not right

2009-01-25 Thread Matt Gitchell
It measures the height of the actual content. You'd have to have something onstage at (0,0) for it to start measuring there. If you need it, write something that retrieves the Y value of the item plus the item's height, where item is the DisplayObject in the loaded SWF. var

Re: [Flashcoders] [AS3] height not right

2009-01-25 Thread Matt Gitchell
pissed to find out adobe dropped yet another useful feature with as3. On Sun, Jan 25, 2009 at 1:51 PM, Matt Gitchell m...@moonbootmedia.com wrote: It measures the height of the actual content. You'd have to have something onstage at (0,0) for it to start measuring there. If you need

Re: [Flashcoders] How to know coordinates of letters in non fixed-width fonts

2009-02-23 Thread Matt Gitchell
the AS2 one is a cool idea! On Mon, Feb 23, 2009 at 10:16 PM, Hans Wichman j.c.wich...@objectpainters.com wrote: and for as2: http://objectpainters.com/blog/2008/10/12/finding-character-positions/ On Tue, Feb 24, 2009 at 1:24 AM, Matt Gitchell m...@moonbootmedia.com wrote: Is this AS3

Re: [Flashcoders] How to know coordinates of letters in non fixed-width fonts

2009-02-24 Thread Matt Gitchell
] = rect; } return retA; } On Tue, Feb 24, 2009 at 7:02 AM, Matt Gitchell m...@moonbootmedia.com wrote: the AS2 one is a cool idea! On Mon, Feb 23, 2009 at 10:16 PM, Hans Wichman j.c.wich...@objectpainters.com wrote: and for as2: http://objectpainters.com/blog/2008/10/12/finding

Re: [Flashcoders] loading images in a circle format..

2009-04-22 Thread Matt Gitchell
Point.polar() will give you an X/Y value based on the degree (in rads) and the distance from the center of the circle. On Wed, Apr 22, 2009 at 10:36 AM, whispers whispers...@hotmail.com wrote: Seems like a carousel project to me? Have you checked out www.gotoandlearn.com There are many

[Flashcoders] TextBlock and HTML Text?

2009-05-05 Thread Matt Gitchell
Hi, Anyone have any experience using Flash 10 and the TextBlock/TextElement classes? I was hoping I could use an implementation of it to solve the age-old superscript problem, but can't find a way to attach a stylesheet to it. Barring experience, does anyone have any good resource links? --Matt

Re: [Flashcoders] e.target subobjects how do I refrence?? - slight digression

2009-05-12 Thread Matt Gitchell
It certainly works if the type matches up, but it runs faster/is more optimized if you do strongly type myObj. The other thing that would probably speed up execution is if you assign myObj.menuSquare_mc to a local variable. It takes more time to do the dot lookup on the item you're referencing

Re: [Flashcoders] Implicit coercion error with inheritance

2009-05-20 Thread Matt Gitchell
EachFloor vs. EachItem? On Wed, May 20, 2009 at 7:56 AM, Mendelsohn, Michael michael.mendels...@fmglobal.com wrote: Hi list... Seemingly simple, but why do I get an Implicit coercion error 1067 when instancing this: var ceilingApparatus:EachItem= new FloorItem(); and, this error too:

Re: [Flashcoders] removing dynamically created movie clips

2009-06-02 Thread Matt Gitchell
if (container.contains(itemToRemove)){ container.removeChild(itemToRemove); }; On Tue, Jun 2, 2009 at 8:45 AM, Gustavo Duenas LRS gdue...@leftandrightsolutions.com wrote: Hi I have movie clips, that are created one I click a button, I'd like to know how could I remove then, something to put

Re: [Flashcoders] removing dynamically created movie clips

2009-06-02 Thread Matt Gitchell
:07 PM, Matt Gitchell wrote: if (container.contains(itemToRemove)){ container.removeChild(itemToRemove); }; On Tue, Jun 2, 2009 at 8:45 AM, Gustavo Duenas LRS gdue...@leftandrightsolutions.com wrote: Hi I have movie clips, that are created one I click a button, I'd like to know how could

Re: [Flashcoders] [JOB] Flash/Flex Developer, San Mateo, CA | 75-120k

2009-07-31 Thread Matt Gitchell
HI Beau,My name's Matt Gitchell, I've been a Flash developer for 14ish years. Most recently, my work at Second Story has been featured in the Comm Arts Interactive Annual and my contributions to the Library of Congress New Visitor experience helped that project win HOW Magazine's Interactive Best

Re: [Flashcoders] [JOB] Flash/Flex Developer, San Mateo, CA | 75-120k

2009-07-31 Thread Matt Gitchell
Jeez. Sorry about that, folks. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] MVC and Event Architecture

2009-08-04 Thread Matt Gitchell
This is about how I'm doing things at present. If something only affects one 'branch' of the MVC model (mostly View), then I handle it with events, for the most part. If it engages two, then I move to a Command (Controller).I've been working a lot in PureMVC lately, and while it seems like a pain

Re: [Flashcoders] mac vs pc

2009-08-10 Thread Matt Gitchell
FDT, which I love. Love! It does take a while to get to a point where you're maximizing what it offers your workflow, but so worth it.Switched from PC (and FlashDevelop) to Mac at the beginning of the year, not a huge difference on balance as each are annoying in their own way. On Mon, Aug 10,

Re: [Flashcoders] what is the current 3D best-practice?

2009-08-10 Thread Matt Gitchell
PV3D's pretty good, tho there's a little bit of a curve to learning it. I haven't done any Away3D stuff but I've heard good reports about that too.You probably don't want to go down the custom road as once you start to deal with z-sorting and all that in earnest it balloons in complexity quickly.

Re: [Flashcoders] mac vs pc

2009-08-12 Thread Matt Gitchell
Anyone who has spent any serious time with it knows that it isn't an option. Oh come now, don't be ridiculous. I used FlashDevelop in a work setting for a year or two, and have switched to FDT (Mac). FlashDevelop is indeed a great tool, but I think FDT edges it out. There are a couple features

Re: [Flashcoders] mac vs pc

2009-08-12 Thread Matt Gitchell
Community -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Matt Gitchell Sent: Wednesday, August 12, 2009 11:57 AM To: Flash Coders List Subject: Re: [Flashcoders] mac vs pc Anyone who has spent any

Re: [Flashcoders] mac vs pc

2009-08-13 Thread Matt Gitchell
They're two different functions. You can do a find/replace on a text string in FB or FDT through a project, which works the same as FD, but rename will find all references in the project to the property/class you're renaming and update there. Same net effect 95/100 times, but it's 'smarter' than

Re: [Flashcoders] FlexBuilder 3 auto-complete vs. FlashDevelop

2009-08-13 Thread Matt Gitchell
This statement is absolutely incorrect, and a bit baffling. Clearly if it didn't do that stuff nobody would ever use it. FDT does indeed complete all those, and I haven't looked at FB in a while but would be absolutely stunned if that was in fact accurate. The default code hinting is just when you

Re: [Flashcoders] FlexBuilder 3 auto-complete vs. FlashDevelop

2009-08-13 Thread Matt Gitchell
That page was old, it does work in AS3. OK, so, burning with curiosity (and a desire to postpone doing the latest batch of client changes), I fired up Flex Builder, created a private var,went into the constructor, hit ctrl-space, and the autocomplete shenanigans triggered. If ya type in the first

Re: [Flashcoders] mac vs pc

2009-08-17 Thread Matt Gitchell
I figured this is where we'd end up. I code in either environment with comparable speed, honestly, it's just getting used to the workflow. Honest! Now whether that means I code like the freakin' wind in either or am slow as hell in both I'll leave for you to decide. Rather than seeing the

Re: [Flashcoders] Syntax coloring Eclipse

2009-08-21 Thread Matt Gitchell
I used this as a starting point when I was doing my FDT customization: http://blog.ansuz.nl/index.php/tag/fdt/ I don't know how applicable they are to FB, but there it is. Also, a quick Googling yields this link: http://polygeek.com/302_flex_changing-font-colors-in-flex-buildereclipse --Matt On

Re: [Flashcoders] Problem understanding Class heirarchy issue

2009-09-01 Thread Matt Gitchell
super(arg:AnyApplicableArgument) calls the constructor of the parent class, in this case all the stuff that happens in function ClassB(){...} On Tue, Sep 1, 2009 at 8:23 AM, Sajid Saiyed sajid.fl...@gmail.com wrote: yes, someFunction is getting called. If I change ClassB to: public

Re: [Flashcoders] Error when trying to embed a font

2009-09-03 Thread Matt Gitchell
You said you were looking for a .pfm file down below, is it a PostScript font? If so, doing a font library symbol is your only recourse. --Matt On Thu, Sep 3, 2009 at 10:04 AM, Ktu ktu_fl...@cataclysmicrewind.comwrote: The only thing I can suggest is looking at Lee Brimelow's tutorial on using

Re: [Flashcoders] Error when trying to embed a font

2009-09-03 Thread Matt Gitchell
Sheesh. I totally forgot, I've done this before: Create a TextField in your FLA, embed the selected character set into that textfield, stick that in a symbol, use [Embed] to embed that symbol ( [Embed(source=blah.swf, symbol=textMC)]), then you're off to the fonty races, if memory serves. I've

Re: [Flashcoders] Back On Course, Still Problems

2009-12-08 Thread Matt Gitchell
We've gone from rudimentary Flash to jungle exile to treatises on human behavior bouncing off the Illuminati on the way to betrayal and disillusionment. Pretty impressive work, list; someone should convert this thread into an opera. On Tue, Dec 8, 2009 at 3:35 AM, Cedric Muller

Re: [Flashcoders] What IDE on Mac ?

2009-12-14 Thread Matt Gitchell
There's been some interesting Twitter buzz about IntelliJ IDEA's AS3 implementation lately, but I haven't gotten around to checking it out yet. Would love to hear a report if anyone has time to do so! --Matt On Mon, Dec 14, 2009 at 4:13 AM, Steven Sacks flash...@stevensacks.netwrote: FDT is

Re: [Flashcoders] SOLUTION: converting string to unicode range

2010-04-15 Thread Matt Gitchell
That's excellent, thanks! On Thu, Apr 15, 2010 at 8:37 AM, allandt bik-elliott (thefieldcomic.com) alla...@gmail.com wrote: hey guys spent a couple of hours googleoogling around to find something to quickly convert a string of special characters into a unicode range to no avail so i've

Re: [Flashcoders] JW Player API documentation

2010-04-22 Thread Matt Gitchell
We've done several. *http://developer.longtailvideo.com/trac/wiki/Player5PluginsBuilding --Matt * On Thu, Apr 22, 2010 at 8:42 AM, Mattheis, Erik (MIN - WSW) ematth...@webershandwick.com wrote: Has anyone made a plugin for the JW Player? I'm tasked with doing so, and can't find documentation

Re: [Flashcoders] PureMVC or RoboLegs ?

2010-09-13 Thread Matt Gitchell
We're using RobotLegs a ton these days, it's fantastic. But I'd ultimately recommend learning MVC frameworks with PureMVC, as I think experience with it makes for stronger fundamentals. You end up wiring some stuff in with PureMVC manually that RobotLegs more or less automates. If the goal is to

Re: [Flashcoders] OT: Interactive conferences

2013-01-24 Thread Matt Gitchell
I was a big FDT user, but 5.5 really started to mess with my flow. I never was a big fan of Flex/Flash Builder. I switched to IntelliJ IDEA for AS and have just continued that through now as I'm doing almost zero Flash work in lieu nearly all HTML now. I really like the tool, and to be able to use