World: r3wp
[View] discuss view related issues
older newer | first last |
[unknown: 5] 19-Jun-2005 [1502] | I think the upgrade utility should drop the acknowledgement "name of the file" part as it looks sloppy because I saved the file as "view2.exe" because the currently file couldn't be overwritten and it said I saved the file as "view.exe". Just gives a bad impression of what else might be buggy. |
MikeL 19-Jun-2005 [1503] | Paul re: Windows Registry you might want to look up / find Frank Sievertsen's RegEdit. It was dated 21-8-01 |
Ashley 19-Jun-2005 [1504] | http://www.rebol.org/library/scripts-download/registry.r |
Gregg 20-Jun-2005 [1505] | Make sure any requests for changes get into RAMBO, otherwise they may fall through the cracks. |
[unknown: 5] 20-Jun-2005 [1506x2] | MikeL and Ashley thanks - I have used Frank's registry.r before but think that RT should just add those in and expand them a bit as they work very well. |
Gregg: I asked for these in a feedback before so I assume its not very high on the priority list. | |
PeterWood 20-Jun-2005 [1508] | ..and probably didn't make it through to RAMBO and may have got lost. |
MikeL 21-Jun-2005 [1509] | Are there any plans (or capabilities that I don't know about) to have menu navigation from the services line of the View Desktop? |
DideC 22-Jun-2005 [1510] | Gabriele: I have noticed you don't use 'get-face but ctx-access/panel/get-face* in your %survey.r script. I have tried the both, and yes 'get-face does not work. Is this a known bug (not in RAMBO then) ? |
Henrik 22-Jun-2005 [1511] | I'm sitting on a 256 color screen through a WindowsXP Remote Desktop and Viewtop looks like crap. Therefore I was thinking if some recommended coloring policy would be beneficial for low-colored devices, or if REBOL/View could have a scheme to intelligently map colors down? I know REBOL can't know that it's being used in a low-colored environment like Remote Desktop, but you could specifically map colors down in a layout, if you know your app will run on a poor display device. Something like layout/depth and then a number from 2-32. It would be useful also for generally mapping down images. How does that sound? |
Gabriele 22-Jun-2005 [1512] | Didec: hard to say if it's a bug or not. should windows have the panel accessors? i think they should, but maybe others don't. anyway it's likely a good idea to put it in rambo so that we don't forget... adding it now. |
Pekr 22-Jun-2005 [1513] | Gabriele - what happened to variable set-browser-path? |
Gabriele 22-Jun-2005 [1514] | not available for security reason. |
Pekr 22-Jun-2005 [1515] | ah. What was the risk? Ihave to notify Ashley then, he seems to be using it for RebDB |
Gabriele 22-Jun-2005 [1516x2] | henrik: if the os controls the palette for the "screen", you'd be out of luck anyway. |
the risk is that it's like call, without the security requestor :) | |
Pekr 22-Jun-2005 [1518x2] | ah, then it is because of IE, no? You can launch apps via IE IIRC, not sure about others ... |
but 'browse is still available, isn't it? | |
Gabriele 22-Jun-2005 [1520x2] | it's because you could set-browser-path to any exe, even a virus you just downloaded :) |
yes, browse should work as expected. | |
Pekr 22-Jun-2005 [1522] | :-) |
DideC 22-Jun-2005 [1523] | Gab: good. |
Alek_K 23-Jun-2005 [1524] | Agree with Henrik - it will be nice to have second color scheme using only "safe" palette for example. Have seen Desktop in 256 colors too. |
Pekr 23-Jun-2005 [1525x3] | when I want my window to react upon ESC, do I still need to use insert-event-func? |
can I give focus to button? | |
Or map enter key to the button? | |
Volker 23-Jun-2005 [1528] | hotkey? #"^/" ? |
Anton 23-Jun-2005 [1529] | view layout [button #"^M" [print "action done."]] |
Pekr 23-Jun-2005 [1530] | ah, missed the quotes :-) it is ^M |
Anton 23-Jun-2005 [1531] | Buttons can't be focused. You would have to stylize your own button to do this. I think it was Frank Sievertsen who long ago showed how to make CHECKs focusable and respond to keys: tab, space enter etc. |
Pekr 23-Jun-2005 [1532] | thanks a lot, Anton ... I also wonder about following I have two layouts, I have small search dialog, then I have grid displaying the result. I use button action block, when I call btn "search" [view lay2 focus f] - and I wonder - how is that the focus f part is executed? I am glad it works, just don't understand it, I thought that by view lay2 events will not allow processing focus f ... |
Anton 23-Jun-2005 [1533] | (Sorry, buttons *can* be focused, they just don't feel good about it :) |
Pekr 23-Jun-2005 [1534] | it is a task for VID 1.4 or 1.5 then - buttons have to be focusable! |
Anton 23-Jun-2005 [1535] | yeah, that would be nice. |
Pekr 23-Jun-2005 [1536] | :-) |
Anton 23-Jun-2005 [1537x2] | view layout [btn "search" [view/new center-face layout [h1 "results..." f: field] focus f]] |
view layout [btn "search" [view center-face layout [h1 "results..." f: field do [focus f]]]] | |
Pekr 23-Jun-2005 [1539x2] | well, don't want to have two windows, so I don't need view/new. Just wondering, that once I call view lay2 from lay1 and there is another function in button action block in lay1, it gets executed, although theoretically events should be in lay2 already, no? |
ah, maybe it does not, sorry ... | |
Anton 23-Jun-2005 [1541] | good question. looking into layout ... |
Pekr 23-Jun-2005 [1542] | yes, it really does, just tried it ... |
Anton 23-Jun-2005 [1543] | LAYOUT does not DO-EVENTS a second time, therefore it does not "break" a block of code being done by ... wake-event (I think). |
Volker 23-Jun-2005 [1544] | view only calls do-events when there is no window visible. in your button action it is, so view just returns and the 'focus is executed. (if that was your question). |
Pekr 23-Jun-2005 [1545] | yes, exactly. So everything in button action will be executed, right? |
Volker 23-Jun-2005 [1546] | yes. |
Pekr 23-Jun-2005 [1547] | I thought that if I have do [focus f] in lay1 and from lay2 button code I call view lay1, that it will be executed once again, but that "do" is somehow lost already ... |
Volker 23-Jun-2005 [1548x2] | yes, the do-prts are only executed on building. |
means on layouting. after that you have a big face and that initialisation-stuff is lost. | |
Anton 23-Jun-2005 [1550] | Yes, lay1 is obviously the window FACE. |
Pekr 23-Jun-2005 [1551] | does anyone has any quick effect for dialog box, when I press enter, and search criteria is not found in database, I don't want to display empty grid, but then I have user to notify, there was no search result. Don't want to use label, as I would have to refresh it from various places. Nor dialog box - so sound (is that easy to play some default Windows action sound?) or some few flashes of background or so :-) |
older newer | first last |