Andreas Laub escribió:
> Hello everybody,
>  
> How about another hack in the 4.7 version? I have wrote a hack to show 
> 20 choices per page. So the menus  fit the screen.
>  
> Here it is:
>  
>     # Choices to display per page
>     my $per_page = 20;
>     
>     #EDIT: Array to show 20 options per page
>     my %hexarray = 
> (10,'A',11,'B',12,'C',13,'D',14,'E',15,'F',16,'G',17,'H',18,'I',19,'J',20,'K');
> ....
> ....
>       # Generate current page of choices.
>        while ($i < $per_page && $start + $i < $count) {
>             my $elt = 2 * ($start + $i);
>             #my $hexd = sprintf '%X', $i+1;
>             my $hexd = $i+1;
>             if ($hexd>9) {
>              $hexd = $hexarray{$hexd};
>      }
>  
> I hope this could help someone.
>  
it that ok, if we get this on the next release? I just want to apply 
only the necessary stuff..

> Another thing is how about to add internet explorer 7.0, the newest 
> Media Player and office 2007?
>  
well, about ie7 and wmp i personally have the opposite:
http://ubertechnique.com/unattended/disableupdate

but I know that this is a personal choice, that I am not sure if is 
everyone choice as well, so I keep it out of the repository.

there is  one script for ie7 but it is not finished:
http://ubertechnique.com/unattended/Microsoft_Internet_Explorer_7
and I do no nothing about the latest version of wmp.

about the office2007.bat:

could you expand a bit more for the office2007?, I like programs like 
openoffice or abiword because you can script the whole installation 
process. they are freely available. I have not got a copy of office2007 
so I can not help you much.



-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
unattended-devel mailing list
unattended-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-devel

Reply via email to