Quick Question
I have the following functions:
example: fnSourceVTPopulate(Source1,Zone1)
fnSourceVTClear(Zone1)
The first address which would be 2501 works and populates fine but if i try it from any other zone it doesn't seem to populate or clear the text fields and ideas?
Define_Function fnSourceVTPopulate(integer source,integer zone) {
dLog("'populating source info to panel'")
Send_Command aTP_Nav[zone],"'^TXT-',Itoa(2500+zone),',0,',sSources[source].Name"
}
Define_Function fnSourceVTClear(integer zone) {
dLog("'clearing source info from panel'")
Send_Command aTP_Nav[zone],"'^TXT-',Itoa(2500+zone),',0,',''"
}
example: fnSourceVTPopulate(Source1,Zone1)
fnSourceVTClear(Zone1)
The first address which would be 2501 works and populates fine but if i try it from any other zone it doesn't seem to populate or clear the text fields and ideas?
Comments