tools palette defect in Rev 3.5
Posted: Wed Aug 19, 2009 2:40 pm
I don't know why I have not seen anyone else having this issue. Maybe it is something that was introduced in a 3.5 point release, and since the 'check for updates' doesn't work in Rev for Linux, maybe no-one is using this particular point release
I downloaded a trial of the latest release of Rev enterprise (3.5gm2) to see if it was working any better now than this time last year. With Mandriva 2009.1, the menus are borked (when the mouse moves over them they wash out in dark blue, and are unreadable). On Ubuntu 9.04 this problem does not occur, so at least I could try and use Rev on linux.
However there was a further issue on both installations. The Tools palette has no button for the pointer tool, only a button for the browse tool, which means one can point at objects, but one can't select them to inspect them or script them. (Well, one can if one uses the menus to switch between browse and point, but many new users might not realise that).
At first I thought it was another graphical defect, since the Application Browser showed there was a pointer tool button grouped along with the browse, but there was no pointer button displayed. Finally I realised that the problem was because the pointer tool was located in an area not covered by the rect of the palette (hence it was effectively "off-screen").
So for anyone trying LInux, and confused about how to actually select things in order to inspect or script them, this will reveal the pointer tool button:
put "btn id 1945 of stack revTools" into tPointerTool
put "btn id 1944 of stack revTools" into tBrowserTool
set the rect of tPointerTool to the rect of tBrowserTool
select tPointerTool and tBrowserTool
set the left of tPointerTool to the right of tBrowserTool
select empty
put "done"
In order to run this code you will need to switch the message box stack between the single-line and the multi-line display (click the 2nd icon to the left in the MB window). Paste the code into the top box in the multi-line display, then whilst the cursor is still in that box press the 'enter' key.
Warning: my latest laptop labels both the return key and the enter key as enter. If the above code does not work (the word "done" does not appear in the lower part of the message box), then you may only have a return key. The enter key can be invoked by pressing the ctrl key + return key at the same time.
I hope that is of help to someone trying out Rev on Linux.
I downloaded a trial of the latest release of Rev enterprise (3.5gm2) to see if it was working any better now than this time last year. With Mandriva 2009.1, the menus are borked (when the mouse moves over them they wash out in dark blue, and are unreadable). On Ubuntu 9.04 this problem does not occur, so at least I could try and use Rev on linux.
However there was a further issue on both installations. The Tools palette has no button for the pointer tool, only a button for the browse tool, which means one can point at objects, but one can't select them to inspect them or script them. (Well, one can if one uses the menus to switch between browse and point, but many new users might not realise that).
At first I thought it was another graphical defect, since the Application Browser showed there was a pointer tool button grouped along with the browse, but there was no pointer button displayed. Finally I realised that the problem was because the pointer tool was located in an area not covered by the rect of the palette (hence it was effectively "off-screen").
So for anyone trying LInux, and confused about how to actually select things in order to inspect or script them, this will reveal the pointer tool button:
put "btn id 1945 of stack revTools" into tPointerTool
put "btn id 1944 of stack revTools" into tBrowserTool
set the rect of tPointerTool to the rect of tBrowserTool
select tPointerTool and tBrowserTool
set the left of tPointerTool to the right of tBrowserTool
select empty
put "done"
In order to run this code you will need to switch the message box stack between the single-line and the multi-line display (click the 2nd icon to the left in the MB window). Paste the code into the top box in the multi-line display, then whilst the cursor is still in that box press the 'enter' key.
Warning: my latest laptop labels both the return key and the enter key as enter. If the above code does not work (the word "done" does not appear in the lower part of the message box), then you may only have a return key. The enter key can be invoked by pressing the ctrl key + return key at the same time.
I hope that is of help to someone trying out Rev on Linux.