title: String - tooltip to show on mouse over image (Since Arma 3 v2.10)
src: String - alternative to 'image' (Since Arma 3 v2.10)
Maximum width supported seems to be 370 pixel. An image wider that this will be cut off. Height should be calculated with the aspect ratio of the image. height = 370; ratio = 16/9; height = width / ratio;
<imgimage="picture.paa"width="128"height="64"/>
Since Arma 3 v2.10 :
<imgtitle="this is image"src="picture.paa"width="128"height="64"/>
If the createDiaryRecord command fails, it returns a null record. Before Arma 3 v2.00, isNull did not work with the diary record type and diaryRecordNull did not exist. In order to verify a null record, it is possible to create a variable and compare against it:
playercreateDiaryRecord["Diary", ["Font tag","<font color='#7FFF00' size='30' face='TahomaB'>This will changed text size, colour and font</font>"], taskNull, "",false];
When adding multiple diary records, be aware that they appear in reverse order. ie the first one you add will appear last and the last one you add will be first.