Einzelnen Beitrag anzeigen
Alt 15.09.2015, 15:23   #2 (permalink)
Moerderhoschi
Armed-Assault.de Team10 Jahre hx3
500 Beiträge1000 Beiträge2.500 Beiträge
 
Benutzerbild von Moerderhoschi
 
Registriert seit: 02.07.2006
Ort: Kabul
Alter: 38
Beiträge: 2.666
Standard

mit titleRsc kann man sowas machen.

https://community.bistudio.com/wiki/titleRsc

kleines Beispiel aus A2(sollte auch in A3 so funktionieren):

description.ext
Code:
class RscPicture {
	idc = -1;
	type = CT_STATIC;
	style = ST_PICTURE;
	colorBackground[] = {0, 0, 0, 0};
	colorText[] = {0, 0, 0, 0, 5};
	font = Bitstream;
	sizeEx = 0.03;
};

class RscTitles
{
	titles[] ={BILD};
	class BILD
	{
		idd=-1;
		movingEnable = true;
		duration=5; // Dauer der Einblendung
		fadein=2; // Einfadezeit
		name = "BILD"; // Name im Editor
		controls[]={Picture};
		class Picture : RscPicture
		{
			x = 0.30; // X-Achse
			y = 0.00; // Y-Achse
			w = 0.40; // Fensterbreite
			h = 0.40; // Fensterhöhe
			text = "BILD.paa"; // Die Grafik mit Pfad
			sizeEx = 0.04;
			style=48;
		};
	};
};
Trigger
Code:
titleRsc ["BILD","PLAIN"];
https://community.bistudio.com/wiki/ImageToPAA

gruß
hoschi
__________________


Moerderhoschi ist offline