Any help will be greatly appreciated!
Jim Royce
roy...@citadel.edu
Charleston, SC
>Here is a bizarre little problem.... I have a book with
>five different backgrounds. When the book opens, I set the
>main window viewer to no caption bar. I save the book, go to
>reader mode, then return to author mode and the caption bar
>returns! How do I rid myself of this thing?
You need a handler for entering reader and author modes in your book.
Try something like this:
to handle author
captionbar of this window = normal -- so you can operate TBK.
end
to handle reader
captionbar of this window = none
end
--
Hope that helps.
-Kevin Georg
-ChipNet Columnist
-Kevin...@aol.com
Don't forget your forwards or may will have problems:
to handle author
forward
captionbar of this window = normal -- so you can operate TBK.
end
to handle reader
forward
captionbar of this window = none
end
Aaron Howell