r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[View] discuss view related issues

Graham
4-Jan-2005
[29x2]
snd: load copy my-sound
which is what I had to do to circumvent this problem.
Vincent
4-Jan-2005
[31]
Graham: yes, it's what I did after searching why all my riff-waves 
has unsigned big'endian data :-) 
- but is it a bug - or a documentation problem?
Graham
5-Jan-2005
[32x6]
I've got one event that I am processing for timer events, and I want 
to start up another that shows a time elapsed.  But it seems I can't 
have both going at once ?
rebol []

newtimer: does [
	inform layout [
		timer2: info "00:00:00" 60 font [] rate 1 feel [
			engage: func [face action event] [
				if action = 'time [
					timer2/text: now/time
					show timer2
				]
			]
		]
	]
]

view layout [
	timer1: info "00:00:00" 60 font [] rate 1 feel [
		engage: func [face action event] [
			if action = 'time [
				timer1/text: now/time
				show timer1
			]
		]
	]
	button "New timer" [newtimer]
]
Both timers freeze when I inform the new layout.
when I close the new layout, the original timer restarts
Is that a bug, or just a by product of the way 'inform works?
If I change the button action to

	button "New timer" [timer1/rate: none show timer1 newtimer]

then the new timer starts up ...
Anton
5-Jan-2005
[38x2]
Vincent, I'd say that's a bug. I also found just playing different 
sounds (inserting different sounds that were only loaded once each), 
that the audio format would change randomly ! 8-bit <-> 16-bit, 22.05kHz 
<-> 44.1kHz etc... and the sound quality eventually degrades, obviously.
Graham, I'd say that's a problem of the inform system. Check out 
Romano's INFORM patch and WAKE-EVENT patch.
Pekr
5-Jan-2005
[40]
why aren't those in latest alphas then?
Anton
5-Jan-2005
[41x5]
dunno
Graham, you might have to additionally patch INFORM so that it calls 
SHOW-POPUP/AWAY (adding the refinement), because (from my notes):
SHOW-POPUP:

 There are 4 types of modal windows: plain, /window, /away, /window/away
	/window  - puts popup inside pane of an existing window

 /away    - allow handling of events of other faces than the popup 
 face eg. [time inactive key] in Romano's patch
(actually I think Romano mainly wrote that originally).
Pekr, those patches still have issues to be dealt with; they are 
very complex, affect a lot of things, and do not have a lot of discussion.
Romano
5-Jan-2005
[46x3]
/away must be used for menu like popup
/window open a new window
/window/away is a window which behaves like a menu (disappears when 
user click outside)
Anton
5-Jan-2005
[49x2]
any thoughts on Graham'
s timer inside a layout problem, above ?
Romano
5-Jan-2005
[51x2]
i can only say they they do not freeze with my patch
Modal rebol system has MANY bugs. Must be fixed to be used.
Graham
5-Jan-2005
[53]
where are Romano's patches to be found?
Ammon
5-Jan-2005
[54]
I never could get SHOW-POPUP to properly act like a menu so I hacked 
my own solution that may provide some insight for you.  You can find 
it on REBOL.org...  Dropdown.r
Graham
5-Jan-2005
[55]
Romano's event patch seems to have fixed the problem for me.
Romano
6-Jan-2005
[56]
here http://www.rebol.it/~romano/under 2.4
Anton
6-Jan-2005
[57]
very good
eFishAnt
7-Jan-2005
[58]
where do I find the docs for hide (like to hide a password typed 
in?)  I know I have read it somewhere...
Geomol
7-Jan-2005
[59x3]
http://www.rebol.com/how-to/fields.html#sect3.6.maybe?
http://www.rebol.com/how-to/fields.html#sect3.6.
Strange, the last dot in the link dissappear.
eFishAnt
7-Jan-2005
[62x2]
I "find"ed for it there earlier but missed...silly me...but thanks.
aha!  hide uses data...that is what got me.
DideC
7-Jan-2005
[64]
Does one still have the Carl's script for benchmarking your machine 
(with Rebol-Hz ans so on) ?
Ammon
7-Jan-2005
[65]
www.rebol.com/speed.r
Geomol
7-Jan-2005
[66]
Console:   0:00:01.859 - 272 KC/S
Processor: 0:00:00.391 - 2209 RHz (REBOL-Hertz)
Memory:    0:00:01.343 - 35 MB/S
Disk/File: 0:00:00.344 - 88 MB/S

;-P
Ammon
7-Jan-2005
[67]
On what?
DideC
7-Jan-2005
[68]
thank"s
Geomol
7-Jan-2005
[69x2]
2.4 GHz P4, I think. Not even sure, what machine I'm using. hehe 
Not the good old days any longer, where you cared about that. ^^
Don't we just want Personal Computers to be >>Personal<< again? ;)
eFishAnt
7-Jan-2005
[71]
yes, and the Internet, too.
Geomol
7-Jan-2005
[72]
Let's change it then! Oh, we're already doing that. :-)
Graham
7-Jan-2005
[73x2]
can we do line graphs line this with agg ?  http://www.compkarori.com/vanilla/display/rawlinegraph
SVG viewer required ...
Gabriele
7-Jan-2005
[75]
it's just a line, isn't it?
Graham
7-Jan-2005
[76x2]
yes...which gaussian blurs etc.
with
Gabriele
7-Jan-2005
[78]
hmm, i think i don't have the svg viewer installed here, i was able 
to open it with inkscape but maybe it doesn't support that? i just 
see a line.