Forum Migration Notice
Update (2026-01-21): The user forums are now in read-only mode pending the data migration.

Update (2026-01-12): The user forums will be put into read-only mode on the 21st of January, 00:00 CET, to prepare for the data migration.

We're transitioning to a more modern community platform by beginning of next year. Learn about the upcoming changes and what to expect.

Omnicore - Modpos from WebApp

Part of an Omnicore webapp I'm making for a customer includes a manual mode step through of the auto program to insure nothing crashes before going to auto. This program currently has 4 different EOAs, 20 different jobs all with their own unique positions, and from what I'm told many more to come. I'd like to add extra logic on the app end to make sure tools, wobjs, tool ids, etc. are all correct before a position is taught.

Long story short, is there a way from the webapp I can modify a position. Something like below?

button.onclick = async function () {
    let position = await RWS.Rapid.getData(posName);
    await position.modpos();
}