Results 1 to 2 of 2

Thread: Aspect Ratio of custom paa picture

  1. #1
    Suspended Member
    Join Date
    Nov 27 2010
    Location
    Germany, Würzburg
    Posts
    425

    Aspect Ratio of custom paa picture

    Ok, i included a paa picture in my mission, which has to be shown fullscreen on the mission start. what do i have to change that every monitor gets the picture in full screen?
    do i have to adjust the size manually?

    Code:
    class RscPicture
    {
    	idc = -1;
    	type = CT_STATIC;
    	style = ST_PICTURE;
    	colorBackground[] = {0, 0, 0, 0};
    	colorText[] = {1, 1, 1, 1};
    	font = Zeppelin32;
    	sizeEx = 0;
    };
    class RscTitles
    {
    	titles[] ={AAN};
    	
    	class Bild1
    	{
    		idd=-1;
    		movingEnable = true;
    		duration=10; // Dauer der Einblendung
    		fadein=2; // Einfadezeit
    		name = "AAN"; // Name im Editor
    		controls[]={Picture};
    		
    		class Picture : RscPicture
    		{
    			x = 0.30; // X-Achse
    			y = 0.50; // Y-Achse
    			w = 5; // Fensterbreite
    			h = 5; // Fensterhöhe
    			text = "pics\AAN.paa"; // Die Grafik mit Pfad
    			sizeEx = 0.04;
    			style=48;
    		};
    	};
    }

  2. #2
    As far as i know all supported picture formats will be displayed fullscreen. For instance: one of my missions has a 1024x1024pix welcome picture. But when it loads-up the mission i see the picure on the full screen @ 1920x1200pix!

Similar Threads

  1. Video Options - Aspect ratio??
    By meade95 in forum ARMA 2 & OA - GENERAL
    Replies: 9
    Last Post: Dec 16 2010, 09:32
  2. custom aspect ratio?
    By DayGlow in forum ARMA 2 & OA - GENERAL
    Replies: 5
    Last Post: Nov 22 2009, 23:44
  3. Replies: 4
    Last Post: Dec 4 2008, 06:35

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •