> I know its not CF and apologise in advance,

> I,ve got a hidden frame,
> there is a timeout set and it will make a http request to check for a new
> instance of data,

> If there is a new instance,
> I want to write the new data to a table in the visible frame,

> I can do this successfully,

<snip>

> function runBlink(idNewRow,blinker){
>       if(blinker){idNewRow.bgColor = ""}else{idNewRow.bgColor = "orange"}
> }

> but when I then try to blink the new row I just get a error in bottom left
> corner in the status bar (error on page),
> It works fine within a single document window,

> any help would be greatly appreciated,

Just like you reference parent.f_userView.myTable to get your reference to
the table to add the cells, your runBlink function needs to reference
parent.f_userView to blink the new row ... so ...

I would guess that something like this should fix you up:

function runBlink(idNewRow,blinker){
        nrow = eval("parent.f_userView." + idNewRow);
        if(blinker==0) { nrow.bgColor = ""; }
        else { nrow.bgColor = "orange"; }
}

Otherwise, you cold put the runBlink() function in the f_userView page and
call the function as parent.f_userView.runBlink(idNewRow,blinker); which
would reduce a tiny amount of overhead on the client browser...

hth


Isaac Dealey
Certified Advanced ColdFusion Developer

www.turnkey.to
954-776-0046
______________________________________________________________________
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to