Changeset 77
- Timestamp:
- 05/29/08 10:26:54 (6 months ago)
- Files:
-
- trunk/ming-source/operator_panel.pl (modified) (2 diffs)
- trunk/op_server.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ming-source/operator_panel.pl
r65 r77 23 23 use SWF::Constants qw(:Text :Button :DisplayItem :Fill); 24 24 25 $stage_width = 996; 26 $stage_height = 600; 27 25 28 SWF::setScale(2); 26 29 SWF::useSWFVersion(7); 27 30 my $movie = new SWF::Movie(); 28 $movie->setDimension( 9960, 6000);31 $movie->setDimension($stage_width * 10, $stage_height * 10); 29 32 $movie->setBackground(0xFF, 0xFF, 0xFF); 30 33 $movie->setRate(20); … … 8788 8791 // ancho_pantalla = System.capabilities.screenResolutionX; 8789 8792 // alto_pantalla = System.capabilities.screenResolutionY; 8790 ancho_pantalla_real = 996;8791 alto_pantalla_real = 600;8793 ancho_pantalla_real = $stage_width; 8794 alto_pantalla_real = $stage_height; 8792 8795 ancho_boton = Number(_root.vr.btn_width); 8793 8796 alto_boton = Number(_root.vr.btn_height); trunk/op_server.pl
r76 r77 8143 8143 log_debug( "$heading canal_destino = $canal_destino", 32 ) if DEBUG; 8144 8144 $canal_destino =~ s/\d+\^(.*)/$1/g; 8145 $canal_destino =~ s/^-//g; 8145 8146 log_debug( "$heading La extension para $param es $canal_destino", 32 ) if DEBUG; 8146 8147 return $canal_destino;
