Jump to content
Sign in to follow this  
clock_x

Error loading control RscTitles

Recommended Posts

Hey,

 

for every RscTitle I defined I get the error message 'Error loading control'

 

Here are all of the error messages:

Spoiler

Error loading control D:\Eigene Dateien\Documents\ArmA 2\missions\OP%20GECKOHUNT%20v3%2e0%2e1%20Final.takistan\description.ext/RscTitles/photo_intel/Picture/
Error loading control D:\Eigene Dateien\Documents\ArmA 2\missions\OP%20GECKOHUNT%20v3%2e0%2e1%20Final.takistan\description.ext/RscTitles/tksf/Picture/
Error loading control D:\Eigene Dateien\Documents\ArmA 2\missions\OP%20GECKOHUNT%20v3%2e0%2e1%20Final.takistan\description.ext/RscTitles/Diag1/Control01/
Error loading control D:\Eigene Dateien\Documents\ArmA 2\missions\OP%20GECKOHUNT%20v3%2e0%2e1%20Final.takistan\description.ext/RscTitles/Diag9/Control01/
Error loading control D:\Eigene Dateien\Documents\ArmA 2\missions\OP%20GECKOHUNT%20v3%2e0%2e1%20Final.takistan\description.ext/RscTitles/Diag6/Control01/
Error loading control D:\Eigene Dateien\Documents\ArmA 2\missions\OP%20GECKOHUNT%20v3%2e0%2e1%20Final.takistan\description.ext/RscTitles/Diag2/Control01/
Error loading control D:\Eigene Dateien\Documents\ArmA 2\missions\OP%20GECKOHUNT%20v3%2e0%2e1%20Final.takistan\description.ext/RscTitles/Diag3/Control01/
Error loading control D:\Eigene Dateien\Documents\ArmA 2\missions\OP%20GECKOHUNT%20v3%2e0%2e1%20Final.takistan\description.ext/RscTitles/Diag4/Control01/
Error loading control D:\Eigene Dateien\Documents\ArmA 2\missions\OP%20GECKOHUNT%20v3%2e0%2e1%20Final.takistan\description.ext/RscTitles/Diag5/Control01/
Error loading control D:\Eigene Dateien\Documents\ArmA 2\missions\OP%20GECKOHUNT%20v3%2e0%2e1%20Final.takistan\description.ext/RscTitles/Diag10/Control01/
Error loading control D:\Eigene Dateien\Documents\ArmA 2\missions\OP%20GECKOHUNT%20v3%2e0%2e1%20Final.takistan\description.ext/RscTitles/Diag7/Control01/
Error loading control D:\Eigene Dateien\Documents\ArmA 2\missions\OP%20GECKOHUNT%20v3%2e0%2e1%20Final.takistan\description.ext/RscTitles/Diag8/Control01/

 

I googled and tried a few things to get rid of the error but nothing worked. (mainly changing names)

The texts and pictures work like they should but I still wonder what I did wrong to get the message.

 

Anybody got experience with RscTitles and Dialog Control?


Here is my description.ext:
I think I did it with MrMurrays guide.

Spoiler

//--- Text 		//TitleRsc ["Diag0", "PLAIN DOWN", 4];
class RscText1
{
 type = CT_STATIC;
 idc = -1;
 style = ST_MULTI;  
 colorBackground[] = {0,0,0,0};
 colorText[] = {0,0,0,0};
 font = "TahomaB";
 h = 0.04;
};

class RscText2
{
 type = CT_STATIC;
 idc = -1;
 style = ST_MULTI;  
 colorBackground[] = {0,0,0,0};
 colorText[] = {0,0,0,0};
 font = "Bitstream";
 h = 0.04;
};

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 Diag0Text : RscText1
{
 colorText[] = {0.9, 0.9, 0.9, 1};
 x = 0.23;
 y = 0.00;
 w = 1.00;
 h = 0.2;
 lineSpacing = 0.95;
 sizeEx = 0.08;
};

class Diag1Text : RscText2
{
 colorText[] = {0.9, 0.2, 0.2, 1};
 x = -0.15;
 y = 0.00;
 w = 1.00;
 h = 0.2;
 lineSpacing = 0.95;
 sizeEx = 0.085;
};

class Diag2Text : RscText2
{
 colorText[] = {0.9, 0.9, 0.9, 1};
 x = -0.08;
 y = 0.2;
 w = 1.00;
 h = 0.2;
 lineSpacing = 1;
 sizeEx = 0.06;
};

class RscTitles
{
Titles[] = {};

class tksf
{
idd=-1;
movingEnable = true;
duration=3; // Dauer der Einblendung
fadein=1; // Einfadezeit
FadeOut=1;
name = "tksf"; // Name im Editor
controls[]={Picture};
class Picture : RscPicture
{
x = 0.30; // X-Achse
y = 0.95; // Y-Achse
w = 0.50; // Fensterbreite
h = 0.30; // Fensterhöhe
text = "pictures\tksf.paa"; // Die Grafik mit Pfad
sizeEx = 0.04;
style=48;
};
};

class photo_intel
{
idd=-1;
movingEnable = true;
duration=3; // Dauer der Einblendung
fadein=1; // Einfadezeit
FadeOut=1;
name = "photo_intel"; // Name im Editor
controls[]={Picture};
class Picture : RscPicture
{
x = 0.30; // X-Achse
y = 0.95; // Y-Achse
w = 0.35; // Fensterbreite
h = 0.40; // Fensterhöhe
text = "pictures\photo_intel.paa"; // Die Grafik mit Pfad
sizeEx = 0.04;
style=48;
};
};

class Diag0
{
	idd = -1;
	MovingEnable=0;
	Duration=2;
	FadeIn=1;
	FadeOut=1;
	Name="Diag0";
	Controls[]={"Control01"};
	class Control01: Diag0Text
	{
		text = "Operation 'Geckohunt'";
	};
};
class Diag1
{
	idd = -1;
	MovingEnable=0;
	Duration=58;
	FadeIn=1;
	FadeOut=1;
	Name="Diag1";
	Controls[]={"Control01"};
	class Control01: Diag1Text
	{
		text = "Credits";
	};
};
class Diag2
{
	idd = -1;
	MovingEnable=0;
	Duration=2;
	FadeIn=0.5;
	FadeOut=0.5;
	Name="Diag2";
	Controls[]={"Control01"};
	class Control01: Diag2Text
	{
		text = "Voice of xxx";
	};
};
class Diag3
{
	idd = -1;
	MovingEnable=0;
	Duration=2;
	FadeIn=0.5;
	FadeOut=0.5;
	Name="Diag3";
	Controls[]={"Control01"};
	class Control01: Diag2Text
	{
		text = "Voice of xx";
	};
};
class Diag4
{
	idd = -1;
	MovingEnable=0;
	Duration=2;
	FadeIn=0.5;
	FadeOut=0.5;
	Name="Diag4";
	Controls[]={"Control01"};
	class Control01: Diag2Text
	{
		text = "Voice of xx";
	};
};
class Diag5
{
	idd = -1;
	MovingEnable=0;
	Duration=2;
	FadeIn=0.5;
	FadeOut=0.5;
	Name="Diag5";
	Controls[]={"Control01"};
	class Control01: Diag2Text
	{
		text = "Voice of xx";
	};
};
class Diag6
{
	idd = -1;
	MovingEnable=0;
	Duration=2;
	FadeIn=0.5;
	FadeOut=0.5;
	Name="Diag6";
	Controls[]={"Control01"};
	class Control01: Diag2Text
	{
		text = "Voice of xx";
	};
};
class Diag7
{
	idd = -1;
	MovingEnable=0;
	Duration=2;
	FadeIn=0.5;
	FadeOut=0.5;
	Name="Diag7";
	Controls[]={"Control01"};
	class Control01: Diag2Text
	{
		text = "Special thanks to xx for inspiring me.";
	};
};
class Diag8
{
	idd = -1;
	MovingEnable=0;
	Duration=5;
	FadeIn=0.5;
	FadeOut=0.5;
	Name="Diag8";
	Controls[]={"Control01"};
	class Control01: Diag2Text
	{
		text = "Proudly presented by clockx. Thanks for playing.";
	};
};
class Diag9
{
	idd = -1;
	MovingEnable=0;
	Duration=2;
	FadeIn=0.5;
	FadeOut=0.5;
	Name="Diag9";
	Controls[]={"Control01"};
	class Control01: Diag2Text
	{
		text = "Bohemia Interactive";
	};
};
class Diag10
{
	idd = -1;
	MovingEnable=0;
	Duration=2;
	FadeIn=0.5;
	FadeOut=0.5;
	Name="Diag9";
	Controls[]={"Control01"};
	class Control01: Diag2Text
	{
		text = "Voice of xxx";
	};
};
};

 

 

Thanks in advance.

 

Cheers.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×