I need to be able to set one module to turn on more than 1 hour before twilight but the advance setting only goes up to 1 hour. I have moved my 'location' from Birmingham AL (real physical location) to Phenix City AL to get the earliest twilight time available in CDT but that still doesn't let the module turn on early enough. I need to be able to set the advance setting up to 1.5 hours at least and preferably more.
Here is a workaround that I found. I looked in the MyHome.ahx file which is where ActiveHome Pro stores modules macros and timers that you create. I looked in the timers section at the XML data and found that each timer has a whole bunch of attributes. One of these attributes is the DuskDelay attribute. I looked for one that had a big number in it since I knew I had one set for a one hour delay before. I saw one that had DuskDelay="36000000000", and I knew this had to be a reference to a fraction of time and was probably one hour. I added 18000000000 to that number, figuring that that should be another half an hour of time, to come up with 54000000000. When I entered that number for the dusk delay, saved the file and restarted AHP, I checked the timer in AHP that I had originally set for a 1 hour (60 minutes) delay and it now reads "90 minutes" in the AHP timer. The only problem is that if you click on the up or down arrows next to the delay time, it will revert back to 60. One other thing is that I do not know if it will store that time in the interface so it can be run from there alone.
The ahx files that AHP creates probably look like a bunch of jibberish to someone who doesn't understand XML formats, so it may be a bit hard to find the time delay for some, but if you just search for DuskDelay as mentioned above, you should be able to find it. The timer XML data does not have an easy way to identify which timer is which will make it harder to find the right one to modify if you have a lot of different delays set for different things. With a little bit of work you should be able to find it though.
Hope that helps