Categories
News

Flash Player 7.0.19.0 Updater

Macromedia released an update to the Flash Player today. For browser-only installations, get the player here. Developers who want to update the internal (test movie) player and standalone players can download the updater.

There are quite a few improvements, among them: New policy file location can be specified in ActionScript with this version of the Flash Player. More info in the release notes.

Categories
Central

Central observations

Some of my observations in using Central applications:

Interface / Usability:

Context-sensitivity: In desktop applications, using the right mouse button for context-sensitive commands or help is fairly standard. Currently, Central apps do not support this important feature; right-click shows the standard Flash settings menu. This is something that the Flash Player 7 addressed, but since Central is based on Flash Player 6, perhaps we’d have to wait for the next release of Central?

Full Screen: I chose this option from the menu and the application went full screen, nice. Now how do I get it back to the normal size? I couldn’t find any button or indication to do that. I then tried pressing F11 (standard browser full screen key) and that did the trick. To someone who may not be aware of this key (even though it is listed next to the menu item when the application is not full screen), this is a usability issue.

Grouping of applications: Currently there is no way to group and place applications into sub-groups (as in sub-menus). The closest alternative is to click the Category column to sort applications by category; however, in a year or so, the number of installed Central applications may become difficult to manage without further grouping.

Scrollbars: Although the new Flash MX 2004 v2 components support the mouse wheel, the Central scrollbar (target for Flash Player 6) does not work with the mouse wheel. This is one of the biggest usability issue for me.

Toolbar: It’d be nice if there is a smaller (scaled down) version of the toolbar icons. Right now it is either big icons or no toolbar.

Waiting indicator: It seems there is no standard cursor for things like the hour glass or stop watch when an application is loading or doing some operation that requires the user to wait. Sometimes after clicking a button, I’m not sure if the application has started the operation or not. An indicator of some sort is needed.

Zooming: This is a great feature (of all Flash/vector-based applications, including the upcoming Avalon in Longhorn). Central supports view zooming into an application from 50-300%, or increase/decrease the zoom factor.

Application specific:

Active Content Resources: Under the Browse tab, clicking an item in the Source column changes the word-wrapping of the text.

Central Dev Chat: The Command Picker (lower left-hand + button) dialog box does not mask underlying events. Placing the cursor in blank area (such as above the words “command” and “description”) changes the cursor to text insertion, which is for the underlying textfield. The close button in the dialog box does not seem to work either.

MovieFinder: The ZIP code input text box used to accept Canadian postal codes (such as M5V2T6) and the application showed listings in Canada. The latest version (1.2) filters input to only U.S. ZIP codes (5 digits). It’s a shame to lose the usefulness of this app locating movies in Canada because of this input filter.

Impression so far

I’m excited by the implications of Central applications: unplugged internet applications, background agents, notifications, sandboxed desktop functionalities. This is a great version one release and the future looks bright.

Categories
Central

Macromedia Central SDK released

With the flood of news coverage of Flex (code name Royale), the non-beta release of the Central SDK seemed unnoticed. Developers who are interested in developing for Central can now download the SDK.

Categories
News

Flash MX Components for Flash MX 2004 released

Macromedia released the basic set of Flash MX components that can be used in Flash MX 2004 and Flash Player 7. Here is the list of included components:

* CheckBox
* ComboBox
* ListBox
* PushButton
* RadioButton
* ScrollBar
* ScrollPane

Given that the new version 2 components are the preferred choice in the new environment, the purpose of this update is to address problems of migrating old FLAs with v1 components to the new player. Get them from Flash Exchange.

Categories
Others

iTunes (and AAC) for Windows

Apple released iTunes 4.1 today, and now it is also available for Windows XP and 2000. This looks like a winner already being the first free AAC encoder and player for Windows. Interestingly, it does not support or playback Windows Media Audio (.wma) – a format that Microsoft is pushing so hard.

As for the Apple music store, it is still unavailable outside of the U.S. However, Canada just got the first download music store a few days ago: PureTracks.com. Unfortunately, they only support Windows (and their files are in .wma only).

Categories
Others

Adobe… Windows only?

Adobe released Photoshop Album 2.0, a Windows-only consumer digital photo album with some interesting features such as the calendar. The free Starter Edition is available for download (requires activation).

It seems Adobe is releasing more Windows-only applications these days (Premiere Pro, Encore DVD…etc.) I suppose the market share determines the R&D spending, similar to what happened to the browser wars. At least Mozilla and Mozilla Firebird are making a come back, but browser usage is still dominated by Windows Internet Explorer. Google has some interesting browser usage stats.

Categories
News

Brajeshwar has a new forum

Brajeshwar just announced a new forum: http://forum.brajeshwar.net/

Categories
Flash

Reduce Flash MX 2004 launch time

If you are experiencing long launch time in Flash MX 2004, try deleting all the files and folders in your “temp” folder. For me, this reduces the launch time anywhere from 40+ seconds down to about 8 seconds.

In Windows, the user temp folder is located here:

C:Documents and Settings[USERNAME]Local SettingsTemp

where [USERNAME] is your login user name. “Local Settings” is a hidden directory, you have to enable “Show hidden files and folders” under Tools > Folder Options… > View from any desktop window, or Control Panels > Folder Options > View.

Let me know if this works for you or not…

Categories
ActionScript

Case sensitivity

One of the new features in Flash MX 2004 and the new Flash Player 7 is ActionScript case-sensitivity. Case-sensitivity is enforced only if the movie is published for Flash Player 7, and is not related to whether it is ActionScript 1.0 or 2.0.

For example, a Flash MX 2004 movie set to use ActionScript 2.0 and published to Flash Player 6, is not case-sensitive: swfoo and swFOO are the same.

On the other hand, a movie set to use ActionScript 1.0 and published to Flash Player 7 is case-sensitive: swfoo is different from swFOO.

So case-sensitivity is determined by the Flash player setting, not the version of ActionScript used. Thanks to Chafic Kazoun for the tip.

Categories
ActionScript

Import statement and code hints

Unlike the include directive, the import statement in ActionScript 2.0 requires a semi-colon at the end for code hints to work.

For example, without the semi-colon, code hints for the Accordion class is not displayed:

import mx.containers.Accordion
var ac:Accordion;
ac.

Code hints now work:

import mx.containers.Accordion;
var ac:Accordion;
ac.

Note that with or without the semi-colon, the class is still imported.