Avatar
💡
  • The Insert Symbol Generator object allows you to dynamically load symbols from your library and place them into you movie.

    It is good practice to to create folders within your library in order to better organize your symbols, however this can make it difficult to reference the symbols from Generator.

    For example, if you have the following library structure:

    Symbol Library

    and you try to load mySymbol1 from the Insert Symbol object, then the symbol not contained in a folder will be loaded.

    generator Created Sun, 14 Jan 2001 05:25:12 +0000
  • We have added a simple search engine for the Tip of the Day Archives. The search can be accessed from the archive page or from the link on the left under the Tip of the Day section.

    Here are a few general guidelines to help you get the most out of the search.

    • Use one word searches.
    • Search engine does not perform boolean searches.
    • Search is case insensitive.
    • Only searches tips, and not titles.

    Finally, we will be improving the search over time, so if you have any suggestions please send them to us at mesh@speakeasy.org

    Created Sat, 13 Jan 2001 12:51:01 +0000
  • The Insert Date / Time custom object (actually two separate objects) makes the server’s date or time available for use in a Generator template. This is useful for letting users know when content was last updated, or version control during development.

    You can also use the object in conjunction with Flash 5 Action Script’s date object. See the demo below for more information.

    You can view a working demo here (archived).

    generator Created Sat, 13 Jan 2001 05:27:11 +0000
  • The Insert Jpg, Insert Gif, Insert Png, and Insert image objects all give you the ability to scale the image to fit the object’s bounding box. However, this can lead to images which are out of proportion to the original image as Generator will stretch the image to completely fill the bounding box.

    If you need to be able to scale images while maintaining their proportion, then you have to use the Insert Image object (or gif, jpg, png) in conjunction with the table object.

    generator Created Fri, 12 Jan 2001 05:34:04 +0000
  • Generator has a separate image object for each of the image types it supports :

    • Insert Gif
    • Insert Jpeg
    • Insert Png

    If you are not sure the type of image that will be inserted into the Generator template then you have to do one of two things :

    1. Create a movie clip with a layer for each image type that may be inserted. On each layer, place an insert [image] object, one on each layer.

    Make sure that they are the same size and have the same property, and then for the image name, place the same Generator variable in object. Then when Generator processes the template, it will attempt to insert the image into each object, but only the correct object will work. Other than throwing some errors this will work fine.

    generator Created Fri, 05 Jan 2001 05:56:45 +0000
  • From time to time the tip of the day will highlight one of the new custom Generator objects released on the Macromedia Flash / Generator Exchange.

    Today’s object is the Insert Action Object.

    This objects allows the user to dynamically insert certain Flash 4 Action Script commands into a Flash movie.

    The commands that you can insert include :

    • goto (Frame)
    • goto (label)
    • stop
    • play

    The object uses a Column data source, which each row specifying an action to be inserted. Among other things, you can specify which frame the action gets inserted on, and which movie clip / timeline the action targets.

    generator Created Thu, 04 Jan 2001 05:59:23 +0000
  • As discussed in the previous tip of the day, you can use Generator to dynamically set the value of Action Script variables. However, you can only set a String value with Generator.

    Thus to set the value of a variable :

    var varName = "{genVar}";
    

    If you want to be able to use Generator to set the value of an Action Script variable to a number / integer, then you first have to use Generator to set the value as a String and then Action Script to convert the String to a number :

    generator Created Wed, 03 Jan 2001 06:02:14 +0000
  • With a few exceptions you can place a Generator variables just about anywhere that you can type in text.

    This can be used to dynamically set properties of Generator objects, File Properties, and Symbol properties, as well as allowing you to define the value of Flash Action Script variables with Generator.

    generator Created Tue, 02 Jan 2001 06:05:08 +0000
  • We have added some new resources to the following sections :

    • Tutorials
    • Third Party Tools
    • Middle Ware
    • Custom Objects (new examples)
    • Flash 5 (Flash Form / ASP example)

    The Generator tip of the Day has been going very well. Remember to check back everyday for a new tip, and don’t forget to rate the tips once you have read them.

    Finally, thanks out to Phillip Torrone for the new logo.

    Created Mon, 01 Jan 2001 12:51:01 +0000
  • While you cannot directly insert html marked up text into a Flash movie using Generator, you can do it using a combination of Generator and Flash 5 Action Script.

    First, create a movie with a Dynamic Text field. Make sure that the field is set to dynamic text, and that HTML is checked. Next, give the field a variable name (we will use htmlText).

    Next, insert the following Action Script on the same time line that you placed the dynamic text box :

    generator Created Thu, 28 Dec 2000 06:06:39 +0000