[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
ot;") && (myLinker1 != undefined) && (myLinker1 != null)) ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of dnk Sent: Tuesday, August 15, 2006 5:59 PM To: Flashcoders mailing list Subject: [Flashcoders] [:::] appending html to a var fo

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 sear

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 += "" + myLinker1 + ""; } 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 != undef

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 wi

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 every