... | .. | The EnterPageThe ToolBook Developer's Newsletter Issue 4-03 |
... | From Platte
Canyon Multimedia Software Corporation.
In This Issue
Introduction Introductionby Chris Bell The events discussed in this issue can be grouped by whether they
happened before or after September 11. For instance, we held the
ToolBook User's Conference before the attacks and attended OnLine
Learning 2001 after. The change in tone was significant between these
events. Everything after September 11 feels more subdued. While the hue
around here at Platte Canyon has changed with concern for the victims,
we know that we must move forward. So, in that vein, we offer this issue
of The EnterPage. US News & World Report: "TBK Tracker is Best of Breed"Thanks to all of you who responded to Brandon Hall’s survey of Learning Management Systems. Because of you, our TBK Tracker product was listed as a “Best of Breed” in this past issue of U.S. News & World Report. Here’s the link for the results: [Note: The article has been moved to their archive which is available for a small fee. To see the first paragraph of the article, please go HERE.]. Thanks to the voters and to all of you who expressed your congratulations! TBK Tracker 3.0 Adds Web Deployment CapabilitySpeaking of TBK Tracker, we’ve just released version 3. Here are the
major new features: Note that deployment can be either "Rich Client" (CD, LAN, etc. with an active Internet connection) or "Neuron." This capability is dependent upon ToolBook being able to successfully "HTTP Post" data. According to Click2learn, there are problems with 8.1 (and presumably 7.X with the TB 8 tbinet32.dll which works otherwise) on Windows 98/ME machines with newer versions of Internet Explorer. An upcoming patch release for ToolBook is supposed to address this problem. One exciting application of these new capabilities is when you combine SQL Server and web deployment. Now the Administrator and Reporter can run locally and read/write data on the SQL Server database sitting on your web server! Training Classes by Platte Canyon Take OffPlatte Canyon Training Classes have proven very popular with students.
We just completed a great session called "Instructor for Internet
Deployment," which provided in-depth training on the Actions Editor and
other aspects of publishing to DHTML. The next class will be December's
"Learning & Mastering ToolBook: The Class," which provides thorough
training on ToolBook including training on catalog objects, the Actions
Editor, OpenScript, and much more.
TBCON 2001 Wrap-Up: Another Stellar EventTBCON Europe (July 9 – 11, 2001, Cheltenham, England) and TBCON USA (July 30 – August 1, 2001, Colorado Springs, USA) were the occasion for some serious coding, impressive “actions,” cool applications, and great camaraderie. The European event pulled together developers from Australia, Brazil, Denmark, England, France, Germany, Poland, Russia, Sweden, and the USA. The USA event had a similar mix, with attendees from Australia, Brazil, Canada, Denmark, Mexico, Russia, and the USA. Special thanks go to those presenters who shared their knowledge at BOTH conferences: Tim Barham, Chris Bell, Lance Campbell, Denny Dedmore, Dmitry Esikov, Ross Hopkins, Lee Karns, Simon Price, Mauro Rech, and Jeff Rhodes. Here are some of the comments from the conferences:
There will be a single big event next year in Colorado Springs. Mark your
calendars now for June 24 – 26, 2002 with preconference workshops on June
22nd and 23rd.
Platte Canyon Customer Wins AwardLt. Walter Lyons and John Scassellati's "Teen DUI Program" received the Youth Community Project of the Year Award given by The Crime Prevention Association of Western Pennsylvania. In addition, Scassellati was honored as the Civilian of the Year for his ongoing work in developing multimedia presentations for the city police department. Congratulations to our friend John, for this well-deserved award!
Learning & Mastering Assistant 8 ReleasedWe released "Learning & Mastering ToolBook Assistant 8" in early September. In addition to completely updated content for version 8, we’ve added information on incorporating Flash™, getting the most out of DHTML, taking advantage of ActiveX, and much more. The new CBT weighs in at over 22 hours with 37 "Show Me" demonstrations, 29 "Let Me Try" simulations, and 101 "Expert Information" topics. See more information and the complete training outline at www.plattecanyon.com/lmAssistant8.aspx. Pricing for this new version remains $495. You may upgrade from the 7.1 training for $175. We've also dropped the price on the 7.1 training to $350.
Platte Canyon Products in the PipelineNext in the product pipeline is Progress Tracker™ 3.0. It will
provide similar features to TBK Tracker 3.0 but for ToolBook developers
who organize their training into larger books made up of chapters and
sections. In particular, Progress Tracker will offer the ability to use
either Access or SQL Server. It will also allow “web deployment” for
native or Neuron applications via “HTTP Post” to Active Server Pages.
Look for Progress Tracker 3.0 by the end of the year. Plug-In Pro Tool Spotlight: Import/Export Resourcesby Chris Bell This column features one of the many tools available in the Plug-In
Pro. Today, we will look at Import Resources and Export Resources, one
of my favorite tools in Plug-In Pro. To see detailed on-line help with graphics on Import Resources,
please browse to: To see detailed on-line help with graphics on Export Resources,
please browse to: CBT Creation Tip from Chris Bell: Digital Video BasicsSince the whole video world has changed so much, I thought it might
be good to run down just how easy it is to now work with video. While
you originally needed a fancy capture card and lots of expensive
equipment to get good results when converting analog video into the
digital format, the whole process has gotten streamlined and downright
easy at this point. Here's a step-by-step procedure for creating a
simple and very clean digital video file for use in a ToolBook project.
Expert Information from "Learning & Mastering ToolBook Instructor"from Jeff Rhodes Bypassing a Potential Installation Problem .tbk If you delete these, however, you will need to explicitly specify which
ToolBook executable to open your application with. For example, if you
check the target for the icon for the “Learning & Mastering ToolBook
Instructor 8” CBT, it will probably look something like:
OpenScript Tip from Jeff RhodesIt is sometimes important to know where an object resides in the
hierarchy. One common example is when handling the mouseLeave message. A
quirk of ToolBook is that the mouseLeave message is sent AFTER the
leavePage message when you use the keyboard to change pages. This can
cause problems with the code below when the NEW page doesn't have the
“field 1” referred to in the script. to handle mouseLeave forward if name of target = "george" hide field "field 1" end if end mouseLeave to handle mouseLeave forward if objectContainer(target,"page") = this page if name of target = "george" hide field "field 1" end if end if end mouseLeave You can also use the keywords "parent" and "child" in your script. This is often useful when trying to reference a particular background or book as shown in the script below: to handle doSomething -- script is in the page of a system book local book bookID local background backgroundID backgroundID = parent of self bookID = parent of backgroundID -- rest of script end doSomething
Actions Editor Tip by Cindy KesslerCreating a Replay Option With "User Event"
-------------------------------------------------------------------------------- Actions for Page "Opening the Actions Editor" -------------------------------------------------------------------------------- -- On right-click... ----------------------------------------------------------- Define local variable "tempResponse" (Initial value: "false") Display confirmation: "Replay?"; store response in tempResponse If tempResponse = true Send User event to Self End if -- On load page... ------------------------------------------------------------- Comment: User event resets page. Send User event to Self -- On User event... ------------------------------------------------------------ Define local variable "tempNum" (Initial value: "") Step tempNum from 1 to 4 by 1 Comment: Hides all objects. Execute Shared Actions "changeChoice" End step loop Set visible of Field "field 5" to true Set gLastObjectNum to 5 Set gNumsSeen to 0 Set visible of Field "allDone" to false Set gAllDone to false OnLine Learning 2001 ReportChris and Jeff had a fun but busy time at the OnLine Learning conference in Los Angeles at the end of September. We conducted a full-day preconference session on Sunday looking at various approaches to e-learning: ToolBook, Flash, Dreamweaver, FrontPage, and Visual Basic. Jeff then had two conference presentations on Monday and Chris had one. Most of the rest of our time was spent in our booth. Thankfully, good friends like Lee Karns, Dawn Adams, Ross Hopkins (who again made it from Australia/New Zealand), Paul Couple (a TBCON alumnus from England), Scott Gray, Brad Crain, Karen Smith, and many others stopped by. Lee showed us his awesome new simulation tools for the Actions Editor. Click2learn had a nice new booth matching their Aspen theme. Nice seeing everyone!
Coming in the Next Issue of the EnterPage
Information on Subscriptions and Article SubmissionsThe EnterPage is distributed 4 times a year, with occasional special issues. Individuals who have expressed interest in Platte Canyon Multimedia Software Corporation or its products receive The EnterPage. If you do not wish to receive future issues, send an email message to EP@plattecanyon.com with the word "unsubscribe" in the subject line. New subscriptions are available by sending an email message to EP@plattecanyon.com with the word "subscribe" in the subject line and the person's name and company in the text of the message. Suggestions for articles or proposals for article submissions are welcome. Send information to EP@plattecanyon.com. Back issues of the EnterPage are available at http://www.plattecanyon.com/enterpage.aspx. This page was created by Platte Canyon Multimedia Software Corporation. |
|
n | .. | Copyright © 2001 Platte Canyon Multimedia Software Corporation |