Avatar
💡
  • Well as usual Flash Forward was a great success and a lot of fun. I did a presentation on integrating Macromedia Flash with Cold Fusion 5 which went very well.

    You can download the notes, and code examples here.

    For the first time there were two session on Generator, and both were well attended, even though the last one was at the same time as Yugo’s session. Robert Hall of mcom8 showed some really cool text to speech stuff run by Generator that we have been working on. You can see his presentation here.

    Created Fri, 20 Jul 2001 12:51:01 +0000
  • Phillip Torrone (flashenabled.com, Fallon) and I were interviewed the other day for a radio show called General Protection Fault which is broadcast on Alaskan Public Radio. We talked about Flash, Generator and Flash on devices (i.e. Pocket PC).

    View the Website.

    Listen to the interview (Requires Real Audio)

    Created Mon, 25 Jun 2001 12:51:01 +0000
  • The next Flash Forward is coming up July 11 - 13 in New York City.

    This time around there are two sessions on Generator, a beginner session and an advanced session. I will be helping Phillip Torrone out with the Advanced session and will be showing off some new stuff.

    I also am presenting my own session on integrating Flash with Cold Fusion. Finally, there will be a meet the author session and myself, Phillip Torrone and Chris Wiggins will be attending (and autographing books if anyone actually wants it).

    Created Wed, 13 Jun 2001 12:51:01 +0000
  • Generator and Flash Demystified is now available. It took a little longer than expected because there were so many preorders which had to be filled.

    Amazon and BarnesandNoble.com have it in stock and shipping. It should appear in local stores within the next week.

    Here is the Table of Contents

    Introduction

    ##PART 1: GETTING STARTED

    • Chapter 1: The Flavors of Generator
    • Chapter 2: Generator Under the Hood

    ##PART 2: USING GENERATOR

    Created Mon, 04 Jun 2001 12:51:01 +0000
  • Probably the #1 question I get about Generator is why are there no Generator books. Well now there is a book written by myself, Phillip Torrone (of flashenabled.com) and Chris Wiggins. The book, titled Flash and Generator Demystified contains everything you need to know about Generator and then some.

    It includes:

    • Examples and explanations of all of the Generator objects.
    • Documentation and examples for most of the custom objects released on the Flash Exchange.
    • A complete chapter on Generator and middle ware with all languages covered including ASP, Cold Fusion, JSP, PHP, and Java Servlets.
    • A chapter on using Generator to create content for multiple devices (browsers, pocket pc’s, palm, etc…)
    • A chapter on how to create your own Generator objects using the SDK.
    • Resources, tutorials, tips and tricks, and a lot more.

    You can by the book from: Amazon.com

    Created Wed, 18 Apr 2001 12:51:01 +0000
  • Just a quick update today. I have added a bookstore section to the site. This contains all of the books that I use from day to day.

    All of the links go through my Amazon affiliate link (so I get a small part of the purchase). However, if you don’t like that, you can just remove the affiliate tag from the link.

    View the books I use.

    Created Mon, 16 Apr 2001 12:51:01 +0000
  • The tip of the day is back, although right now it is the random tip of the day. As soon as we get some more time we will be adding more tips.

    Sorry for the lack of updates, but with Flash Forward things have been kind of busy.

    Created Thu, 08 Mar 2001 12:51:01 +0000
  • Advanced Data Source Object

    This object allows you to use any Comma Separated Value file (including Generator data sources) as a data source.

    It also adds the following features and functionality:

    1. The ability to add or replace column headers to the data source.
    2. The ability to filter the data based on a column name and value.
    3. The ability to sort the data source, and to define your own sorting rules (in any language).
    4. The ability to limit the number of rows of data returned.
    5. The ability to define the name and value of an additional column (useful if you need to add a ‘clip’ column).
    6. The ability to insert an additional column whose value is the index of the current row of data.

    The object adds a large amount of logic to Generator allowing it to manipulate its data. In some cases this object will replace middle ware currently necessary to filter and sort Generator data.

    generator Created Sat, 27 Jan 2001 04:52:05 +0000
  • The Multi Page List objects is a list object which does advanced formatting of data and creates a multi page list of items that the user can navigate through. However, the object does not allow you to manually position the navigation buttons, thus severely limiting your design choices.

    This Tip of the day will describe how to position the navigation buttons any where that you want.

    This uses the Multipage list example in the

    generator Created Thu, 25 Jan 2001 04:44:15 +0000
  • You can pass an entire column data source to Generator in offline mode, in much the same way that you can do it in online mode through the URL.

    For example, if we had the following data source:

    value, color
    1, blue
    2, green
    3, yellow
    

    that we wanted to past to a template in offline mode, then the command would be:

    generate -swf test.swf test.swt -param data "value, color\n1, blue\n2, green\n3, yellow\n"
    

    The pie chart’s data source property would be #{data} (the # tells Generator that the data source contains the actual data, and not a link to the data).

    generator Created Wed, 24 Jan 2001 04:56:18 +0000