[FMX2004] htmlText problem

Hello,

i’m making a small “add news” movie for a site in actionscript.
When I insert an image in my textField, I can only move the cursor with my keys and not with my mouse anymore.
I put the image always in front. I also have to click one time in my textfield, otherwise my text appears under my image. When I click it aligns to the right.
Anybody? :slight_smile:

this is the code…


image_toevoegen_mc.onRelease = function()
	{
		deel1 = _level0.newsMC.imageMC.imageInputTxt.text;
		deel2 = inhoud.htmlText;
		
		if (deel1.length == 0)
		{
			deel1 = "";
		}
		else
		{
			deel1 = "<img src='"+deel1+"'>";
		}
		
		volledig = deel1+deel2;
		inhoud.htmlText = volledig;
		
	};