But keep in mind these kinds of animations only slow users down, which tends to annoy power users. The Xojo 2013 IDE had animations in the navigator that have since been removed for that very reason.
I might reconsider the animations you’re thinking about.
I’ve done a couple of animation tutorials over at xdevmag.com.
Never animated a tabbed window thou.
There’s two approaches to consider.
Mac Only is to use CoreAnimation, this can provide nice smooth and fluid animations, it’s built right into the macOS. There are cravats, a). Core Animation uses a ‘flipped’ vertical rule to Xojo (it draws bottom up, instead of top down). b) It messes the Xojo co-ordinates from behind the scenes and without proper updating this causes view weirdness. c) For maximum fluidity you need to use Layer-Backed Views (triple buffering), for the most part work fine, but can cause some graphic glitches and weirdness.
Native Xojo code, this is x-plat and when dealing with Xojo controls is the easiest. However, you must do some tricks to improve the speed of the redraw of Xojo controls, otherwise it makes it slow, jerky and unnatural. For the project I’m working on right now, I’m going down this route as I’m starting to utilize pure Xojo more so I can port my apps to Windows. I have a couple of ideas on how to simulate triple buffering to improve the responsiveness of the animation, but nothing tested yet.