Re: [Flashcoders] [:::] appending html to a var for display not working and code not runnign as expected.

2006-08-16 Thread Arul Prasad M L
just where you do a trace(myHtml) try tracing (this._targetMc.collectiveLinks); and see if it returns the full path to the txtfield. just in case that textfield isnt accesible in that path you've coded in ... ~Arul Prasad. On 8/16/06, dnk [EMAIL PROTECTED] wrote: I wanted to thank

[Flashcoders] [:::] appending html to a var for display not working and code not runnign as expected.

2006-08-15 Thread dnk
Ok so i have a recordset with links in which I am building an HTML string for display in an HTML field. Now for some reason the html traces out fine, but when assigned to an html txt field - the filed just shows as blank. Now I do realize that the eq in this code sample is depreciated,

Re: [Flashcoders] [:::] appending html to a var for display not working and code not runnign as expected.

2006-08-15 Thread eric dolecki
Why are you using this. ? On 8/15/06, dnk [EMAIL PROTECTED] wrote: Ok so i have a recordset with links in which I am building an HTML string for display in an HTML field. Now for some reason the html traces out fine, but when assigned to an html txt field - the filed just shows as blank.

RE: [Flashcoders] [:::] appending html to a var for display not working and code not runnign as expected.

2006-08-15 Thread André Goliath
if ((myLinker1 != ) || (myLinker1 != undefined) || (myLinker1 != null)) { myHtml += a href=\ + myLinker1 + \ target=\_blank\ + myLinker1 + /abr; } but then the trace of my results does not even work (it includes the records that are empty). Shouldn´t it be if ((myLinker1 != ) (myLinker1

Re: [Flashcoders] [:::] appending html to a var for display not working and code not runnign as expected.

2006-08-15 Thread dnk
eric dolecki wrote: Why are you using this. ? Sorry - I should have specified that this code sample is a method inside a class. Not run inline in the main fla. d ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

Re: [Flashcoders] [:::] appending html to a var for display not working and code not runnign as expected.

2006-08-15 Thread dnk
André Goliath wrote: if ((myLinker1 != ) || (myLinker1 != undefined) || (myLinker1 != null)) { myHtml += a href=\ + myLinker1 + \ target=\_blank\ + myLinker1 + /abr; } but then the trace of my results does not even work (it includes the records that are empty). Shouldn´t it be if

Re: [Flashcoders] [:::] appending html to a var for display not working and code not runnign as expected.

2006-08-15 Thread dnk
dnk wrote: And to top it off - no matter what my text field does not have the HTML loaded into it. I wanted to thank everyone for their great help in explaining the other part of this original post regarding the testing... now i just wanted to touch on the other issue i was still having