Assuming, you are using the Platform behavior for the Player and the Solid behavior for the platform(s), you can use the Solid action Solid: Set enabled to disable the collision between the Player and the platform.
As a side effect, this will cause the player to fall through the platform.
Since I'm not completely sure whether your intention is to completely eliminate the collision or to just make the player not move along with the platform, you can use this workaround to make the player not stick to the platform, but also not fall through it:
When you disable the platform's solid state, also set the Player's Platformer gravity and speed to 0.
This will make him keep his position.
Remember to switch the gravity and solid state back on when needed.