Re: [Gambas-user] help with EXEC usage

2011-03-23 Thread Bill-Lancaster
Sorry - I'll try again. Its so simple, hardly worth making a project. I'm using get_iplayer in a Gambas project to download past BBC radio programmes. It's working fine. To listen to the programme, this is the code - get_iplayer --stream 13142 | mplayer -cache 3072 -, where 13142 is the progra

Re: [Gambas-user] the math behind full screen rotation

2011-03-23 Thread John Spikowski
On Wed, 2011-03-23 at 23:03 -0400, Kevin Fishburne wrote: > That will probably work, but there should be a mathematical way to > compensate for not cropping the image twice, or even once. As long as > the entire image is preserved by the rotation function (it is) and it > behaves in a predictab

Re: [Gambas-user] the math behind full screen rotation

2011-03-23 Thread Kevin Fishburne
On 03/23/2011 09:13 AM, Benoît Minisini wrote: >> I'm trying to implement full screen rotation in an overhead-perspective >> game. The angle of the screen is locked to the angle of the player. If >> the player turns then the screen also turns, meaning the player is >> always facing "up". Here is an

Re: [Gambas-user] Issue 53 in gambas: peculiar button highlighting when hovering over button

2011-03-23 Thread gambas
Updates: Status: Invalid Labels: -Version Version-TRUNK Comment #1 on issue 53 by benoit.m...@gmail.com: peculiar button highlighting when hovering over button http://code.google.com/p/gambas/issues/detail?id=53 That behaviour may depend on the style. What I see on my own machin

Re: [Gambas-user] help with EXEC usage

2011-03-23 Thread Jussi Lahtinen
Can't see attachment..? Jussi On Wed, Mar 23, 2011 at 17:51, Bill-Lancaster wrote: > > Jussi - little project attached > -- > View this message in context: > http://old.nabble.com/help-with-EXEC-usage-tp31208112p31221079.html > Sent from the gambas-user mailing list archive at Nabble.com. > > >

Re: [Gambas-user] help with EXEC usage

2011-03-23 Thread Bill-Lancaster
Jussi - little project attached -- View this message in context: http://old.nabble.com/help-with-EXEC-usage-tp31208112p31221079.html Sent from the gambas-user mailing list archive at Nabble.com. -- Enable your software

Re: [Gambas-user] help with EXEC usage

2011-03-23 Thread Jussi Lahtinen
Hmmm... no wait... you are working with Gambas 2. I don't know what is wrong. Please send little project to demonstrate the problem. Jussi On Wed, Mar 23, 2011 at 17:12, Jussi Lahtinen wrote: > Name is missing... > $hProcess = SHELL ("get_iplayer --stream 13280 | mplayer -cache 3072-") FOR > WR

Re: [Gambas-user] help with EXEC usage

2011-03-23 Thread Jussi Lahtinen
Name is missing... $hProcess = SHELL ("get_iplayer --stream 13280 | mplayer -cache 3072-") FOR WRITE *As "Process"* Jussi On Wed, Mar 23, 2011 at 10:37, Bill-Lancaster wrote: > > Jussi, thanks for the advice. > > I forgot to mention that it worked also with SHELL but I had no control > over >

Re: [Gambas-user] the math behind full screen rotation

2011-03-23 Thread Benoît Minisini
> Just when I thought I could see the sun I was cast down again into > darkness. I've been working on this problem for several days with > limited success. > > I'm trying to implement full screen rotation in an overhead-perspective > game. The angle of the screen is locked to the angle of the play

Re: [Gambas-user] Crash (sgn 11) with console

2011-03-23 Thread Benoît Minisini
> El mar, 22-03-2011 a las 21:35 +0200, Jussi Lahtinen escribió: > > Way to reproduce the problem. > > > > 1. Open any project to IDE. > > 2. Click on console. > > 3. Type in "? ." > > 4. Click on editor. > > > > Gambas 3 rev 3657 @ Ubuntu 10.10 64bit > > > > Jussi > > Also in ArchLinx x64 Fix

Re: [Gambas-user] help with EXEC usage

2011-03-23 Thread Bill-Lancaster
Jussi, thanks for the advice. I forgot to mention that it worked also with SHELL but I had no control over the process. $hProcess = SHELL ("get_iplayer --stream 13280 | mplayer -cache 3072 -") FOR WRITE Neither PRINT #$hProcess, "q"; nor IF $hProcess THEN $hProcess.Kill nor