... I do see the dimming commands in activity monitor ( by the way I also see WEIRD commands that I did not program in the macro)...
What type of "weird" commands are you seeing? Those could very well be the Extended Dim commands, for the SoftStart modules.
Do you have multiple modules assigned to the same addresses? I have found that mixing SoftStart and non-SoftStart modules on the same HC/UC address doesn't work very well.
SoftStart modules have the ability to go directly to whatever dim level you want, and I've found that using "relative" dimming doesn't actually work as well with those as it did with the non-SoftStart modules.
For example, if you want a light to come on at 20%, and then brighten an additional 20% every 5 minutes, the "old" style macro would actually do the following (this is not the actual commands, but a representation of them in human-readable form):
Bright 100 (light is at 100% - which is needed for the non-SoftStart modules, to make sure you know where yo start)
Dim 80% (light is at 20%)
wait 5 minutes
Bright 20% (light is at 40%)
wait 5 minutes
Bright 20% (light is at 60%)
wait 5 minutes
Bright 20% (light is at 80%)
wait 5 minutes
Bright 20% (light is at 100%)
This seems to work pretty well. However, when doing that with the SoftStart modules, I've found they don't respond very well. The better way to do it is:
Extended Dim 20% (light goes right to 20%, from whatever state it was before)
wait 5 minutes
Extended Dim 40% (light goes right to 40%, from whatever state it was before)
wait 5 minutes
Extended Dim 60% (light goes right to 60%, from whatever state it was before)
wait 5 minutes
Extended Dim 80% (light goes right to 80%, from whatever state it was before)
wait 5 minutes
Extended Dim 100% (light goes right to 100%, from whatever state it was before)
When using SoftStart modules, it is always better to program them to ABSOLUTE values when dimming in a macro. Otherwise, they try to use the relative dim, which doesn't work as well for them.
AHP version 3.228 did not support the SoftStart modules. SoftStart support was added in version 3.302.
When you use Absolute dimming with non-SoftStart modules, it actually has to brighten up to 100% first, then dim by the amount you want (to go to 40%, it does a "Bright 100", then a "Dim 60"). The SoftStart modules can go directly to any brightness, so Absolute dimming works nicely for them (to go to 40%, it only has to to an "Extended Bright/Dim 40%").
I hope this helps, and let us know how it goes.
You can always post the contents of the macro here (just type out the steps, and let us know what type of module each one is), and we can take a look.