Underscores in id names get changed to periods in event names

This is not a huge problem but when I use and underscore in an id name and then select for example an onclick event the function name the ide created will have a period where the underscore should be. When I run the code it throws an error.

Is there a bug report channel? I feel maybe the boards is the wrong place for these?

This is by design.

Back in the VB6 days, event functions were given names like Button1_onclick(). The AppStudio BASIC to JavaScript Translator transforms this to Button1.onclick() to fit JavaScript’s syntax.