Posted: March 09 2004 at 14:38 | IP Logged
|
|
|
Ed,
Welcome to the PowerHome forums.
There is no way currently to display X-10 data on a tab at the moment (well, no easy way). The last version includes a number of functions for the Control Center that will allow a user to change a buttons border, text, color, etc. but it's not automated. These changes are not permanent to the database either and won't be reflected on the web version of the Control Center.
However, this will all be changing soon. Development is currently under way to expand the type of controls that can be placed upon the Control Center as well as synchronize between the client and web. Im also working to link some of these visual references directly to events so it won't be such a manual process.
Now if you really feel adventuresome, you can programmatically do just about anything you want. For example, I can use the following formula to create a text area on the first Control Center tab that reflects the current level of the X-10 device at K3:
ph_ccmodify(1,"create text(band=detail alignment='2' pointer='arrow!' text='Lamp Level: " + string(ph_getx10level("K",3)) + "' border='2' color='255' x='1200' y='140' height='70' width='400' name=st_X10_K3 font.face='Arial' font.height='-8' font.weight='400' font.family='2' font.pitch='2' font.charset='0' background.mode='2' background.color='12632256')")
Now as the level is changed, this would not be updated and you would have to create a trigger to modify this level. Also, this change is not permanent and is lost as soon as the Control Center is closed and reopened.
The above example just demonstrates what is possible and is probably more than you were bargaining for. However, if you are interested in pursuing programmatic changes to the Control Center, I can expand upon it some more.
Stay tuned for more changes and enhancements coming to a Control Center near you . In the near future, we should have controls that reflect the functionality you're interested in.
Dave.
|