POV-Ray : Newsgroups : povray.programming : Need to return to calling program : Re: Need to return to calling program Server Time
5 Jul 2024 14:02:53 EDT (-0400)
  Re: Need to return to calling program  
From: Tom Galvin
Date: 13 Oct 2003 18:56:54
Message: <Xns9413C087ACBABtomatimporg@204.213.191.226>
"Bob Rasmussen" <bob### [at] comcastnet> wrote in
news:3f8af81c$1@news.povray.org: 

>  Can anyone help?
> 
> Regards...Bob
> 
> 

my $povpath='C:\Program Files\POV-Ray for Windows v3.5\bin\pvengine.exe';
my $povflag='/nr /exit';
my $pov_return;
$pov_return=system("\"$povpath\" task.ini $povflag");


You may want to try POVCyg and eliminate the GUI altogether.
http://www-public.tu-bs.de:8080/~y0013390/povcyg/


my $povpath='C:\Program Files\POVCyg\povray.exe';
my $povflag='-GR -GS +V';
my $pov_return;
$pov_return=system("\"$povpath\" task.ini $povflag");




-- 
Tom
_________________________________
The Internet Movie Project
http://www.imp.org/


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.