I\'m trying to have an Edge animation resize based on screen resolution. I\'ve made a high-res one for 1080p and higher-res screens, but since the project is reasonably comp
I found this to be a great solution. Add a Resize trigger into your stage. Paste this code inside:
if ($(window).width() < 960) {
if ($(window).width() < 600) {
sym.stop("layout400");
} else {
sym.stop("layout600");
}
} else {
sym.stop("layout960");
}
Then make three different labels in the timeline with the names layout960, layout600 and layout400. Now you can avoid Edge from reloading every time and skip Edge Docks (at least for responsive).