World: r3wp
[View] discuss view related issues
older newer | first last |
Graham 30-Jun-2005 [1762x2] | This is a View application .. and I see them |
Are they not visible under Linux? | |
Carlos 30-Jun-2005 [1764] | thatīīs not what I mean. they are visible but the accents are misplaced. for instance in the word coraį~ao (heart in English) I should get the tild uppon the letter "a" and not before it. got it? |
Graham 30-Jun-2005 [1765x2] | ahh... |
ã | |
Carlos 30-Jun-2005 [1767] | thatīs it |
Graham 30-Jun-2005 [1768] | So, you can't input it? |
Carlos 30-Jun-2005 [1769x5] | i cannot get it here... no way at all using the layout ABNT2 |
funny because all the rest of Linux apps works ok | |
no matter if I use Gnome, KDE or whatever | |
I cannot input thiose chars at all | |
you wrote "a" with tilde under Linux? | |
Graham 30-Jun-2005 [1774x2] | no, Windows |
have u filed a Rambo report ? | |
Pekr 30-Jun-2005 [1776] | we need Unicode. It is already one year ago or more, when Carl told me, that RT received more requests for Unicode support and that it is relatively high on their to-do list. But who knows what does "high" mean here :-) |
Carlos 30-Jun-2005 [1777] | Carl knows the problem ... well at least I had the chance to talk to him once trhu a feed back... and also there was a ticket in the past ... i remember... but then |
Graham 30-Jun-2005 [1778] | file it again if it's not there. That's the only source they now use. |
Carlos 30-Jun-2005 [1779x6] | I guess RT put things aside just because its not so urgent |
I just do not know how to to it. would you mind to explain to me how-to? | |
at www.rebol.net? | |
where? | |
sorry I got it ... pls do not mind | |
allright guys I got a ticket: RAMBO Ticket #-359 . Letīs see what happens. Thank you all | |
Rebolek 1-Jul-2005 [1785] | I was working on my knob style and I realized that the knobs look like flying saucers from ed wood films. so here is simple demo - do http://krutek.info/rebol/ufo.r |
Graham 1-Jul-2005 [1786] | how do you fire? space bar doesn't work! |
DideC 1-Jul-2005 [1787] | :) |
Rebolek 1-Jul-2005 [1788] | graham :) |
Graham 1-Jul-2005 [1789] | sorry, I thought I was playing Asteroids :) |
Rebolek 1-Jul-2005 [1790] | I'm probably going to write a game basedon it |
Pekr 1-Jul-2005 [1791] | Here is fun script from Bo (with help of Anton) - plese add it to Desktop demo folder :-) http://www.rebol.org/library/scripts-download/swintro.r |
yeksoon 1-Jul-2005 [1792] | does text-list supports multi-column? |
[unknown: 5] 1-Jul-2005 [1793] | Allen had mentioned using rate to handle forever loops in action blocks but my problem is that i have a while loop that executes a lengthy amount of functions before it even loops again. I almost believe I need a multi-threading way of doing this. I thought about it for awhile and think an enhancement would be nice where you can for example use launch function for executing additional threads but have a memory space for passing data between the threads. Any of the REBOL gurus involved with RT know if something like this is capable? |
Pekr 1-Jul-2005 [1794x3] | dunno, probably not a bug, but at least a cache headache - imagine following scenario. Today I did small script for my friend. I created C:\app-name-here directory and put it inside, along with rebol/view. I then decided to install View, to get .r association, so that my small scripts could be put directly onto Window desktop (I don't need yet another desktop - View one, If I can't parametrise it further - buttons, removal of rebol.com etc.). So, after installation, I filled in network info, saved, and exited view. Then I could see, dirs like 'public, 'local 'desktop were created. So I deleted them, to remove additional clutter they caused in my directory. To my surprise, View ignores the fact it is already installed, I choosed to not use desktop, yet I was brought to desktop once again. |
I can understand that I should not probably put cache location into my preferred app directory directly, but I wanted to have it self-contained - not Rebol scattered around my hd. Sadly, settings for desktop are in Desktop directory, so once I delete it, rebol starts to desktop once again. Imo we need desktop?: no setting in user.r | |
After all - wasn't there any such setting in the past? | |
Izkata 1-Jul-2005 [1797] | desktop: false was in prefs.r in View 1.2.1 (I have 5 versions of Rebol saved for some reason...) |
Volker 1-Jul-2005 [1798] | desktop: none in user.r could work. would replace 'desktop-func with a nop. not tried. |
Izkata 1-Jul-2005 [1799x2] | ;umm am I using Toggle wrong or is there a glitch in it? This is View 1.3.1.. view layout [Tog1: toggle {First} Tog2: toggle {Second} btn {Pop} [Tog1/Data: Tog2/Data: false show [Tog1 Tog2]]] |
oops I started looking for more and toggle and forgot to say the problem XD Pop is just supposed to.. well.. pop the buttons up, but it won't... | |
Gabriele 2-Jul-2005 [1801] | use face/state, not face/data (all styles should use /data... but they don't...) |
Izkata 2-Jul-2005 [1802] | Thank you =^) |
MikeL 4-Jul-2005 [1803] | Hi Gabriele, Is there a possibility of putting aliases put in place so View has that consistency across all the styles? I think we also have /value and for a text face /text when I think it could always be /data |
Gabriele 4-Jul-2005 [1804] | set-face and get-face are the answer to this problem. accessors still need to be written for some styles though. |
Anton 4-Jul-2005 [1805] | A puzzle this brings up; where is the 'value referred to by this function >> layout [text-list with [print mold :update]] func [/local item value][ sld/redrag lc / max 1 length? data if item: find data picked/1 [ sld/data: min 1 (index? item) / (max 1 lc) sn: max 0 to-integer sld/data * ((1 + length? data) - lc) ] [ sld/value: 0.0 ; <----------- ? pane/offset: 0x0 ] self ] >> layout [scroller with [?? value]] ** Script Error: value has no value ** Where: ?? ** Near: mold name: get name |
Gabriele 4-Jul-2005 [1806] | that's face/sld/value, not face/value |
Anton 4-Jul-2005 [1807] | yes, I know. |
Gabriele 4-Jul-2005 [1808] | ah, also, you're comparing text-list and scroller. mmm. |
Anton 4-Jul-2005 [1809x2] | sld is a scroller |
but if you do: >> find mold svv/vid-styles/scroller "value:" == none | |
Gabriele 4-Jul-2005 [1811] | that's most likely a bug. should be sld/data |
older newer | first last |