D3VL3R 1 Posted May 4, 2014 Hi, in my mission folder I have a stringtable.csv where is for exmpl.: STR_BRIEF_8, "BLABLA.<br/><img src='Images\test.jpg' width='256' height='256'/>", "BLABLA.<br/><img src='Images\test.jpg' width='256' height='256'/>", in Images folder is pic test.jpg with size 256x256px, result is, that in briefing I see just BLABLA and I dont know, where is problem :( Share this post Link to post Share on other sites
Magirot 14 Posted May 4, 2014 I spent a lot of fruitless effort trying to get the folder paths to work with briefing images, but in the end I've just ended throwing them to the mission folder's root, because at least that works. It should still display a message that the image wasn't found, though. Share this post Link to post Share on other sites
warlord554 2065 Posted May 4, 2014 Only problem I've had like that has been the file path to image being correct. Try to download a briefing template off armaholic, perhaps it can show you your errors Share this post Link to post Share on other sites
D3VL3R 1 Posted May 7, 2014 Magirot: Thanks man! Solution: <img image='test.jpg' width='256' height='256'/> Share this post Link to post Share on other sites
CSLALUKI 30 Posted May 7, 2014 (edited) D3VL3R, there are not apostrophes :). Correctly is: <img image=""[b]test.jpg[/b]"" width=""256"" height=""256"" /> Why you have in your stringtable.csv defined the pic ? :confused: STR_BRIEF_8, "BLABLA.<br/><img src='Images\test.jpg' width='256' height='256'/>", "BLABLA.<br/><img src='Images\test.jpg' width='256' height='256'/>", Corrected stringtable: LANGUAGE,"English","Czech" STR_BRIEF_8, "BLAHBLAHBLAH", "BLABLABLA" If you want to see your image and the pic in your briefing, use this (for the example in the init.sqf): taskName setSimpleTaskDescription [localize "[color=#333333]STR_BRIEF_8[/color]"; "<img image=""test.jpg"" width=""256"" height=""256"" /> ", "TaskTitle", "TaskWaypoint"]; Edited May 7, 2014 by [CSLA]LUKI Share this post Link to post Share on other sites
Magirot 14 Posted May 8, 2014 LUKI;2685194']D3VL3R' date=' there are not apostrophes :). Correctly is: <img image=""[b]test.jpg[/b]"" width=""256"" height=""256"" /> [/quote'] Both ' and "" should be fine, unless I misunderstood. https://community.bistudio.com/wiki/String#Description Share this post Link to post Share on other sites
D3VL3R 1 Posted May 8, 2014 [CSLA]LUKI, it was just example. I have all texts on one place. There are two ways how to use apostrophes ' and "" as Magirot told you, but I still dont know, why source cant be "Images\test.jpg", but "test.jpg". Engine logic or bug? Share this post Link to post Share on other sites