Problem with AROS and the ARexx port
Posted: Tue Feb 16, 2010 11:03 pm
Hello Andreas,
I'm trying to send commands to MPlayer for AROS using the ARexx port.
I've tryed small sample code, like the one below:
MPlayer receives the command (and goes to fullscreen) but my Hollywood program crash and on the console is reported this error message:
Finally I've tested the Arexx port using a script:
then I've launched with:
rx myscript
MPlayer has received the fullscreen command without any errors...
I'm trying to send commands to MPlayer for AROS using the ARexx port.
I've tryed small sample code, like the one below:
Code: Select all
Local answer = SendRexxCommand("MPLAYER.1", "FULLSCREEN")
After various tests I've got another error type: instead of memory.c:824 I've got arscmd.c:201Assertion (ptr->len <= ptr->max) failed in memory.c:824
Finally I've tested the Arexx port using a script:
Code: Select all
address MPLAYER.1
FULLSCREEN
rx myscript
MPlayer has received the fullscreen command without any errors...