What event engine is right for you? Read on to find out! Careful, she’s a long one…
Blog
-
Flashcom Admin API Wrapper Class
After getting a reminder for Central MX about John’s FCS Monitor, I realized I probably wouldn’t ever touch mine again. My attention span gets short really quick when this stuff gets boring. I’m sorry, but it’s tough having fun making an admin app for Flashcom administration… I just couldn’t get that jolt of, “MAN, this is gonna ROCK!”. Props to John.
At any rate, I doubt he used it in his since by the time I was done, he was already 60% done with his concept app. However, SOMEONE may be able to use this… who knows. Another failed idea added to the file heap. Having 600 megs rox!
Flashcom Admin API Wrapper Class – ZIP
-
How to Disable Floating Flash Ads
*** Update, it appears Macromedia already had a mechinism in place for you to set this… but left it out for some reason!? See the comments in this entry (exactly 1 year later… whack yo!). I guess advertisers would get pissed if you could easily turn this off.
The property to see if Flash Player has windowless mode off (meaning, you are blocking floating Flash ads) is:
System.capabilities.windowlessDisable
Naturally, it’s false by default. If you save the mms.cfg file with the steps below, it’ll trace out true… even in the IDE.
***
Via ASVGuy & Gregg Wygonik
Gregg found some documentation in the Flex LiveDocs on how to disable the Flash Player’s auto update feature. This is helpful for IT Admins.
Burak KALAYCI(ASVGuy) dug a little deeper, and explained a little bit about the mms.cfg file and how it works for those admins. He ended on the property responsible for allowing the playback of Flash movies that have their wmode (window mode) properties set to transparent or opaque. The former is what allows the Flash adds to appear over web pages.
As a Flash developer, I’d prefer you not installing Flash blocking software, so below is how you do it. This may cause other problems with existing, legitmate Flash applications, so make a shortcut to this file so you can easily turn it off again. Opaque Flash movies, as Gregg said, will appear as a black square. I do not know, currently, if this works only for the Flash 7 player in Internet Explorer, but it’s a start.
1. Find your required folder:
Windows NT, 2K C:/WINNT/System32
Windows XP C:/WINDOWS/System32
Windows 95, 98, or ME C:/Windows/System
Macintosh /Application Support/Macromedia
2. Make a text file in the folder called “mms.cfg”
3. Put this text in it, and save it
WindowlessDisable=1
Tested here, and it appears to work for both opaque and transparent Flash movies. Just to help Google out, here are some other keywords as they are also called “floating flash ads”, “flying flash ads”, and my favorite “those damn Flash ads!”.
-
SWC’s & Shared Libraries in Flash Development
One of my experience sharing notes, below, to my peeps on Flashn00bz. Although SWC’s have been around since November, I’ve only recently started to understand where Flash 8, or a big updated of Flash 7 needs to take us in terms of Shared Libraries and SWC’s. Shared Libraries, even if your only using 1 SWF in the end, enable unit testing of components, and prevent redundancy in assets. If I have a Button component, Shared Libraries of many tiers all reference the same asset vs. SWC’s which compile them internally, and therefore allowing multiple SWC’s to use the same button, but keep their own copy unecessarely. However, Shared Libraries are not as portable as SWC’s, more fragile, and less control on execution order in the case of mixing SWC’s with Shared Libraries as I experienced last week. Either a decoupling of assets in SWC’s needs to happen to ensure they are not being repeated, OR you’ll just have to plan really frikin’ well ahead of time. Additionally, Shared Libraries need, as I talk about below, to get the ability to dynamically change their Shared Asset URL at runtime. It’s amazing, as much as I love both of the above technologies, I can still see tons of room for improvement, in both the IDE and the Player itself.
Anyway, read on…