I want to load external jpegs into a dynamic textfield which is set to render as HTML. Now, my file directories are arranged as such:
I've entered the line of HTMl in myTxtFile.txt as such:
1. <img src="../Folder3/myImg.jpg"> - can't work
2. <img src="/Folder3/myImg.jpg"> - can't work
3. <img src="myImg.jpg"> - can't work
I want to know what to put inside the <img> tag for the picture to be loaded. What's the correct path? By the way, I'm able to load the myTxtFile.txt into the myFile.swf.
Thanks.
Code:
Folder1 contains myFile.swf
Folder2 contains myTxtFile.txt
Folder3 contains myImg.jpg
I've entered the line of HTMl in myTxtFile.txt as such:
1. <img src="../Folder3/myImg.jpg"> - can't work
2. <img src="/Folder3/myImg.jpg"> - can't work
3. <img src="myImg.jpg"> - can't work
I want to know what to put inside the <img> tag for the picture to be loaded. What's the correct path? By the way, I'm able to load the myTxtFile.txt into the myFile.swf.
Thanks.