Archive: (p)Reset button


25th March 2004 15:33 UTC

(p)Reset button
While creating synchnonized stuff, say 2 SSC's, I often need to close/open AVS because the scope I'm working on gets reset everytime I change something in it and the other SSC does not reset. You know what I'm talking about.

Now wouldn't it be an idea to have some sort of button that resets the preset? This prevents much irritation on my side because double clicking on the classic vis also toggles oscilloscope/spectrum/off.

Downside: closing the AVS window saves the current preset (preset00.avs?) This has prevented quite some preset-losses due to WAcrashes, (although WA5 hardly crashes anymore on my PC) or perhaps this could be included in the function of the button...


25th March 2004 17:19 UTC

I could use that too.


25th March 2004 19:28 UTC

Just use global variables instead, and all your synchronization problems will be gone.


25th March 2004 19:49 UTC

or ctrl+shift+k but global variables are the best idea.


8th April 2004 20:11 UTC

I did write SS, but I had problem same as you.
If next release of AVS will have this button it's pretty cool.


8th April 2004 20:33 UTC

There won't, Unconed is right. At first I thought there would be situations apart from DM's and SSC's that relied on it, but for as far as I can see there aren't, so just drop this. Globvars are the best solution.


13th April 2004 13:28 UTC

I have an addon to this. Open the AVS Debug window, then enable "Clear all local variables on all code recompiles". This also clears the global values too.


13th April 2004 13:48 UTC

neo: Activating this option is the cause of the problem, not the solution.
If you activate this option this happens:
You change a code block, it is recompiled and the variables of that one component are reset.
variables of other components and global vars are left untouched.

Deactivating it could help keeping your scopes in sync when editing, except if you change your whatever-you-want-to-sync code.
solution: as UnConeD said, use the registers to store those whatever-you-want-to-sync values :)


13th April 2004 15:02 UTC

o_O.... sorry for that, my mistake...