[Jaffa Software]

FAQ
Main
Guide
What's New
Products
      GateWay
      PICsuite
      WimpWorks
Downloads
FAQ
Mailing List
Links
Upgrade

This page hopes to answer frequently asked questions about our products - most are about WimpWorks (our integrated development environment).

    1. HEAPSIZE returns a greater value than I wanted from CLAIM.
      A. Due to differing memory systems between versions of RISC OS and even the same machine with different amounts of memory, CLAIM has to round up to the next boundary. Suffice to say, you will always (assuming the memory is available) get at least the amount of space requested.

    2. I don't want an iconbar icon for my application (like Chars), how do I get this?
      A. This is actually mentioned in the manual, in your "Start Up" subroutine you need to delete the iconbar icon which WimpWorks has created for you:
      
      DELETEICON(-2, TASKINFO(3))
      
      

      This will delete the icon in the window -2 (the iconbar) whose handle is equal to that of our iconbar icon. Note that WimpWorks will still create the icon, so the info in the Task Editor still needs to be valid (ie. a "real" sprite name etc.)

    3. Is there a Zap or StrongEd mode for WimpWorks? The lack of coloured syntax highlighting is a major omission...
      A. There is a StrongEd mode available, but due to the to the difficulty of creating new modes for Zap it is still being looked at. If you install the StrongEd modefile then these lines need to be inserted into the ModeWhen file:
      
      WimpWorks
      fff,**.WimpWorks.* **.WWv2Data
      
      

    4. I try and use LOADFILE but when I run my code I get Unknown function or procedure call.
      A. You need to include the Starter Pack WEM (the online help for LOADFILE shows it is "...supplied by Starter Pack WEM..."). Open the Task Editor and open the WEMs to include menu and ensure that Starter Pack is ticked. Resave your application.

    5. READ doesn't get the proper stuff from DATA.
      A. Try putting RESTORE +0 before you try and do the first READ as this will start reading the data from the first DATA statement after the RESTORE.

If you have any further questions, why don't you try the mailing list?

© Jaffa Software 2000. All rights reserved.
Last modified: Wed Oct 9 16:18:14 2002