Jump to content
Sign in to follow this  
della36

Task icon in description.ext

Recommended Posts

I use cfgNotifications for show a task hint. There is a parameter named iconPicture that require the name of the icon and the directory like this:

iconPicture ="\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";

This icon represent the task assigned but i need the task completed. Where can i find the others pictures?

Share this post


Link to post
Share on other sites

Look in the config viewer under CFGNotifications.

There are already templates for all the task states.

class TaskAssigned
{
	title = "$STR_A3_CfgNotifications_TaskAssigned_0";
	iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIcon_ca.paa";
	description = "%2";
	priority = 5;
	sound = "taskAssigned";
};
class TaskCreated: TaskAssigned
{
	title = "$STR_A3_CfgNotifications_TaskCreated_0";
	iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIconCreated_ca.paa";
	priority = 5;
	sound = "taskCreated";
};
class TaskSucceeded: TaskAssigned
{
	title = "$STR_A3_CfgNotifications_TaskSucceeded_0";
	iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIconDone_ca.paa";
	priority = 6;
	color[] = {0.7,1.0,0.3,1.0};
	sound = "taskSucceeded";
};
class TaskFailed: TaskAssigned
{
	title = "$STR_A3_CfgNotifications_TaskFailed_0";
	iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIconFailed_ca.paa";
	priority = 6;
	color[] = {1.0,0.3,0.2,1.0};
	sound = "taskFailed";
};
class TaskCanceled: TaskAssigned
{
	title = "$STR_A3_CfgNotifications_TaskCanceled_0";
	iconPicture = "\A3\ui_f\data\map\mapcontrol\taskIconCanceled_ca.paa";
	priority = 6;
	color[] = {0.7,0.7,0.7,1.0};
	sound = "taskCanceled";
};
class TaskUpdated: TaskAssigned
{
	title = "$STR_A3_CfgNotifications_TaskUpdated_0";
	priority = 4;
	sound = "taskUpdated";
};

If the default notification templates are not what you require atleast they show you what the icon names are.

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  

×