05.31.08
Posted in Flash, SEO, Search Engine at 9:12 pm by Curtis J. Morley
The other day I consulted for the largest Agency in the state about Flash and SEO. Specifically how to get Flash on the top of the Google Ranking. As part of the presentation I described the 2 types of results that you want to score high on. The first is "Most Popular" searches and the second is the long tail results. Through this I gathered some data about the CurtisMorley.com site and thought it would make an interesting post showing what results this site has been able to produce. It also gives quick reference to some of the errors.
*Disclaimer Google Search results change daily this information is accurate as of the day of this posting.
Most Common Google Search Terms for Flex /Flash Errors
Long Tail Search Terms for Flex/Flash Errors
- AS3 Error 1094 - #1,2 hit on Google
- AS3 Error 1083 - #1,2 hit on Google
- AS3 Error 1084 - #1,2 hit on Google
- AS3 Error 1085 - #1,2 hit on Google
- AS3 Error 1086 - #1,2 hit on Google
- AS3 Error 1046 - #1,2 hit on Google
- AS3 Error 1078 - #1,2 hit on Google
- Flash Error 1078 - #1,2 hit on Google
- Flex Error 1078 - #1,2 hit on Google
- ActionScript Error 1078 - #1,2 hit on Google
- AS3 Error #2148 - #1,2,3 hit on Google
- Flex Error 1084 - #1,2 hit on Google
- Flash CS3 Error 1119 - #1,2 hit on Google
- Flex 2 Error 1119 – #1,2 hit on Google
- Flex Error 1119 - #2,3 hit on Google
- Flash Error 1119 - #1,2, hit on Google
- Flex Error 1009 - #4 hit on Google
- Flash Error 1009 - #1,2 hit on Google
- And 54 more just like this
Permalink
05.28.08
Posted in Flash at 9:34 pm by Curtis J. Morley
ActionScript Error #1067: Implicit coercion of a value of type void to an unrelated type Function.
ActionScript 3 Error #1067 Description:
AS3 error 1137 is describing the fact that you have entered a parameter that is not supposed to be inside the parenthesis.
Flex / Flash Error 1067 Fix:
Remove all parameters from within the parenthesis.
Bad Code:
alone_btn.addEventListener(MouseEvent.MOUSE_UP, trace("The message"));
Good Code:
alone_btn.addEventListener(MouseEvent.MOUSE_UP, traceMe);
function traceMe (e:MouseEvent)
{
trace("The message");
}
Related Error:
Flash / Flex Error 1188
This should help you resolve Flex / Flash Error #1067
Thanks and as always Happy Flashing
Curtis J. Morley
Permalink
05.27.08
Posted in Adobe at 6:24 am by Curtis J. Morley
I was so excited last night about the release of Dreamweaver CS4 and Fireworks CS4 that I almost forgot to mention Soundbooth CS4 beta Release.
- Multitrack Workflow and a Non-Destructive File Format (.ASND)
- Snapshots (just like Photoshop)
- MP3 preview
- Match volume of multiple clips
- Equalize clip volume levels
- Beat detection
- Metadata Improvements
- New User Interface
- New Normalize and Hard Limit features
- New WDM Audio Driver
- Scores in Multitrack
- Score Library Panel
- Adobe Crash Reporter
Happy Flashing and making/mixing sounds for your Flash
Permalink
05.26.08
Posted in Browser, quicktip at 10:26 pm by Curtis J. Morley
Adobe Releases CS4 Beta Products
Well we knew it wouldn't be long after the public release of Flash Player 10 that CS4 Betas would be released. Currently you can download the beta of Dreamweaver CS4 and beta of Fireworks CS4. There currently is no Flash Beta but of course you can author for Flash 10 with Flex 3 and SDK 3.0.
Dreamweaver and Fireworks are excellent tools that if you don't have you should get soon. Especially with the new enhancements. Here is a summary from the Adobe Labs website.
DreamWeaver CS4:
- Live View
- Related Files
- Code Navigator
- CSS best practices
- Code hinting for Ajax and JavaScript frameworks
- HTML data sets
- Photoshop Smart Objects
- Subversion integration
- Adobe® AIR™ authoring support
- New user interface
Fireworks CS4:
- New user interface
- CSS-based layouts
- PDF export
- Live Style improvements
- Adobe type engine
- AIR authoring
Thanks,
Curtis J. Morley
P.S. I realize that the date on this post is before the actual date on Adobe Labs, but they always post the night before. It may have something to do with global time.
Permalink
05.24.08
Posted in Family at 10:26 pm by Curtis J. Morley
My cutest baby who is seven months old is topping the charts. No she didn't get signed like David Archuleta or is the latest box office release.
Malia is in 100th percentile in her weight and 90th percentile in height. Read about the it here.
Permalink
Posted in Flash at 6:02 am by Curtis J. Morley
ActionScript Error #1137: Incorrect number of arguments. Expected no more than 0.
ActionScript 3 Error #1137 Description:
AS3 error 1137 is describing the fact that you have entered a parameter that is not supposed to be inside the parenthesis.
Flash Error 1137 Fix:
Remove all parameters from within the parenthesis.
Bad Code:
var fileToLoad:URLRequest = new URLRequest("cleanhandsworkahsc.swf")
var myLoader:Loader = new Loader(fileToLoad);
this.addChild(myLoader);
Good Code:
var fileToLoad:URLRequest = new URLRequest("cleanhandsworkahsc.swf")
var myLoader:Loader = new Loader();
myLoader.load(fileToLoad);
this.addChild(myLoader);
This should help you resolve Flex / Flash Error #1137
Thanks and as always Happy Flashing
Curtis J. Morley
Permalink
05.23.08
Posted in Flash at 11:12 pm by Curtis J. Morley
Save Files from Flash
Lee Brimelow has put up a great video tutorial on how to save files to the local system.
Save Files directly from Flash 10
http://www.gotoandlearn.com/player.php?id=76
This is a great day to have the save functionality back in Flash. I have many uses for this.
Happy Flashing,
Curtis J. Morley
Permalink
05.22.08
Posted in Flash at 11:47 pm by Curtis J. Morley
Flash 10 documentation has been posted and linked to by Ryan Stewart and Trevor McCauley(senocular).
This is some great bedtime reading you can find out about all the great 3D support in Flash 10, dynamic sound generation, Drawing API in Flash 10, and the very exciting Local File Acces in Flash 10, etc...
I haven't gotten to the part about bones and kinematics yet. But I will let you know when I do.
Currently it is a zip file with all the docs.
Get the Flash 10 documentation here.
Happy Flashing
Curtis J. Morley
Permalink
05.21.08
Posted in Flash at 9:21 pm by Curtis J. Morley
Tinic Uro, the Hero to all Flash developers for putting in the sound enhancements for Flash 10 Player, has put up three fantastic posts on how to actually use the new Sound methods.
Tinics Uro's Article on Sound In Flash 10 - part 1 (Talks about how Vista messed up the SOUND_COMPLETE event)
Sound in Flash 10 - part 2 (Gives a great explanation of how to create sound and even gives code)
Sound in Flash 10 - part 3 (Explains and displays code on how to pull data from a sound object already in Flash)
Happy Flashing Tinic and everyone,
Curtis J. Morley
Permalink
05.20.08
Posted in Flash, Flash 10 at 10:32 pm by Curtis J. Morley
Flash 10 Drawing Tutorials
In the spirit of keeping everyone on the bleeding edge, Trevor McCauley at Senocular has provided an amazingly detailed description of using the drawing API's with for Flash 10. This is a must read.
http://www.senocular.com/flash/tutorials/flash10drawingapi/
I will keep you up to date on all of the great tutorials I find on using Flash 10.
Thanks and Happy Flashing
Curtis J. Morley
Permalink
« Previous entries