I set the two actions to -275 and it worked.
I see -1000 on your screenshot. Assuming that this object is on a layer with no parallax, then it's -1000 pixels up from the top edge of the screen.
If swipe2 object has origin point at the top and you want to restrict its movement by top and bottom edges of the screen, you can use this more universal formula instead of the last two events on your screenshot:
On every tick: swipe2 set Y to clamp(self.y, ViewportHeight(self.layer)-self.Height, 0)
A couple of other things:
Instead of pinning category names to swipe2, add them to a hierarchy in the layout editor.
Use a single object categoryName with multiple instances instead of 17 different objects.
Your code is not framerate independent, use delta time. For example: move forward swipespeed*20*dt