(Example: +cartoon +desktops)
Advanced Search & Tips
See the Home Page side bar for links to more sections!
App Makeovers Desktop Pictures Icons MacOS X Mods Safari Stuff
Application Splashes Dock Poofs iTunes Skins MacOS X Themes Snapshots
Boot Images Download Stats Links Page Mouse Cursors Uploads
Boot Panels GUI Software Login Panels REALbasic User Forum
Clocks Home Page
Download a free demo of REALbasic!
Download a free demo of REALbasic!

Recent Articles...
3D
3D Photo Gallery Part 2 (12-06-01)
3D Photo Gallery Part 1 (11-29-01)

Audio
iPod Tricks (Part 1)
Laugh Track Machine
Audio Player with Reverb
Shepard Melody(11-08-01)
RB Phone Home (10-25-01)
Build a Drum Machine (10-04-01)

General RB
Hey! You got your Checkbox in my Listbox!
Background Applications (5-02-03)
Listbox Auto-Find
iTunes-style Listboxes
Virtual Volumes
Time Tracker
Software Distribution Part 4
Software Distribution Part 3
Software Distribution Part 2
Software Distribution Part 1
Exceptions
Custom Controls (8-2-01)
Living on the Edge (6-21-01)
Tips and Tricks (6-14-01)
Review of REALbasic 3.0 (2-19-01)
Text Clippings Made Easy (5-10-01)

Graphics
Image Spinner
Cropping Graphics (Part 4)
Cropping Graphics (Part 3)
Cropping Graphics (Part 2)
Cropping Graphics (Part 1)
Shimmer Graphics
Lissajous Figures
Simple Screen Capture
Vector Graphics
Kaleidoscope Images
Stegonography
Spirals!
Image Table (11-15-01)
RB Magnifying Lens (10-11-01)
Screen Capture (8-9-01)
Color Picker Tutorial (6-7-01)

Hacks
Ghost Grab
Speedy Mouse Extension(11-01-01)
iTunes Plugins (8-23-01)
iTunes Skinner (7-26-01)

Internet
HTML IMG Tags
Version Tracking
Even Smarter Instant Messaging
Web Tiler
JavaScript and REALbasic (10-02-01)
Stock Ticker - Part II (9-06-01)
Stock Ticker - Part I (8-30-01)
AIM Mate (8-16-01)

Mac OS X
Using Sheets in REALbasic
Build a Bundle Part 2
Build a Bundle Part 1
Dock Your Passwords
Mac OS X Debugging
REALbasic Mac OS X Icon Tutorial (12-13-01)
Animate Your Dock (5-17-01)
RB and the Command Line (5-3-01)

Novelty
Guessing Game
Calendar Trivia
Tile Mixer
Zip Code Finder
Happy Valentine's Day
Merlin Simulator Part 3 (01-24-02)
Merlin Simulator Part 2 (01-17-02)
Merlin Simulator Part 1 (01-10-02)
Buzzword Machine (10-18-01)
AppleSoft BASIC (9-20-01)

Printing
Print to PDF

Resources
Picture Extractor 2 (5-31-01)
Picture Extractor 1 (5-24-01)

Serial
Caller ID Part 3 (7-12-01)
Caller ID Part 2 (7-5-01)
Caller ID Part 1 (6-28-01)

Speech
Speech Recognition (9-13-01)
Video
Big Brother Video Capture

Newest Dev Tools!

Book Alert !
REALbasic for Dummies
by Erick Tejkowski
$19.99 @ Amazon

Made with REALbasic!

Book Alert !
REALbasic the Definitive Guide
by Matt Neuburg

Problems?
Downloads are in StuffIt 5 format (free download).
Tell me about a bad link (Thanks!).
Submission Policy

6-21-01

REALbasic Prereleases - Living on the Edge... by Erick Tejkowski

REAL Software has always made preview releases of REALbasic readily available for anyone to download. For example, you can currently download REALbasic 3.5a2. Although prerelease versions are unsupported and unfinished, they give you a good idea about what new features are forthcoming.

Normally, our ResExcellence REALbasic tutorials stick with using release versions of REALbasic, but this time the gossip is just too juicy to ignore. This week we are going to live on the edge and use a prerelease version of REALbasic. Keep in mind that prerelease software makes no guarantees about how well it works. This means that it might not perform as you expect, it might crash REALbasic, and heck, if may even crash your machine. Further, since this is prerelease software, functions available now may not even make it into the final release. If you feel brave enough to take the plunge, read on.

New Features

So, what's all the excitement about? Great new features, that's what! REALbasic 3.5a2 gives us a glimpse of some exciting new functionality. Some of the big additions include:

  • Regular Expressions
  • 3D support
  • Microsoft Office automation
  • A secret "soon-to-be-announced" feature

Regular Expressions

Until now, REALbasic users have had to rely on an assortment of user-created code to use regular expressions in REALbasic. If you're unfamiliar with regular expressions, they permit you to do complex search and replace functions using a set of standard rules. This is a very welcome addition to REALbasic. An example project demonstrating regular expressions is included with the REALbasic 3.5a2 download.

3D Support

REALbasic 3.5a2 hosts another great new feature: 3D graphics. The new version adds support for Quesa, an open source 3D graphics engine that is compatible with Apple's QuickDraw 3D. This is accomplished using the new View3D control, pictured below. Again, REAL provides a demo of the functionality with the REALbasic 3.5a2 download. Don't forget, these new features are not only unfinished, but also undocumented.

06-21_3dtoolbar.jpg (21k)

Microsoft Office Automation

Perhaps the biggest news about the prelease versions of REALbasic 3.5 is the inclusion of Microsoft Office capabilties. REALbasic can now interact with Microsoft Word, Excel, and PowerPoint. This opens all kind of interesting possibilities for automating your workflow. Since this is a new feature, it is undocumented. You can, however, get an idea of where REAL Software is going with Office Automation by doing a little investigation. Usually, I would suggest that you take a peak inside the Office Automation plugins using RB Plunger. Alas, RB Plunger doesn't work with these new plugins. Next stop.... a resource editor. Use an editor that permits you to look at the data fork for clues about the function names in the plugin. Finally, if you are less daring, you can use REALbasic's own auto-completion feature to learn about the plugin functions.

For example, look at the code from REAL's example Word Automation project:

Dim word as wordApplication
Dim doc as wordDocument
word = new wordApplication

doc = word.documents.add
doc.range.text = editfield1.text
doc.activeWindow.caption = "ResExcellence is cool!"

You can probably guess that this code creates a new Word document, adds text to it from an EditField, and finally gives the document a title: "ResExcellence is cool!". This code also gives you a few clues about what other features might exist. For instance, enter:

doc.
and press Tab. If everything goes as planned, you should see something like this:

06-21_word.jpg (44k)

This list should give you an idea of just how much functionality is coming to REALbasic. Scroll down the auto-completion list, find the "Save" method, and press Return. When you run this code, Word will now attempt to save the document. You can play with the other methods in a similar fashion, but you will have to do some guessing about how different methods work, since these features are so far undocumented.

Secret Feature

REAL Software has made public statements that they will soon introduce a new "secret" feature in a prerelease version of REALbasic 3.5. They gave no clues, except to say that there is a hint in the Toolbar (see below). The control is entitled "RBScript". Keep an eye on this one!

06-21_secrettoolbar.jpg (21k)


6-19-01

REALbasic News by Erick Tejkowski

Hey buddy, can you spare a Euro? NélixA recently posted a handy made-with-REALbasic (MWRB) application named EuroTable. EuroTable is a currency calculator for converting Euros to a variety of currencies. It even works with VAT.

Lucky 13. MonkeyBread Software announced the immediate availability of 13 REALbasic plugins. Some of the offerings include:

  • Get and set resolutions for all attached monitors.
    (OS 8/9, X, and Windows)
  • Access the icons of folders, files and disks.
  • Fake key presses.
  • Compare two FolderItems.

Need to Bulk Up? A new REALbasic tool is on the scene: RBulk Builder.

"RBulk Builder is a Batch Building companion for the REALbasic application.

With it, you can automatically launch different builds, changing the name, the platform, the language and even constant values for each one.

It is designed for people that need to build many different binaries (different platforms, localized, demo/light versions...) from a single source project file."

File Manager Plugin. REALbasic übergeek, Thomas Tempelmann, has upgraded his oh-so-useful FileMgr plugin to Version 1.3.1. It fixes a bug related to CD volumes.

Windows Modem code. Nick Loveday has posted a nice code example for executing PPP connections on Windows from RB apps. I haven't seen an example like this before, so be sure to add it to you RB code collection.

This week on campus. This week's REALbasic University tutorial expands on last week's animation project by showing you how to code a Shooting Gallery game in REALbasic. Fun stuff!



See the Home Page side bar for links to more sections!
App Makeovers Desktop Pictures Icons MacOS X Mods Safari Stuff
Application Splashes Dock Poofs iTunes Skins MacOS X Themes Snapshots
Boot Images Download Stats Links Page Mouse Cursors Uploads
Boot Panels GUI Software Login Panels REALbasic User Forum
Clocks Home Page

Maintained by the Staff of ResExcellence. This entire site ©1997-2003 ResExcellence
Privacy Statement? Sure we gotta Privacy Statement.

[an error occurred while processing this directive] on the ResEx LinuxPPC Server