File: sword and sworcery.swf-(6.62 MB, 1600x900, Loop)
[_] ruffle check Anonymous 04/11/24(Thu)14:26:34 No.3506565
>> [_] Anonymous 04/11/24(Thu)14:52:36 No.3506566
It mostly works, but moving using the LMB is a bit wonky and zooming doesn't seem to work. Note
that 4chan uses an old version of Ruffle (2023-03-21).
In the Ruffle extension's built-in player (2024-04-06), the movement actually works fine but the
zoom function is still broken.
>> [_] Anonymous 04/11/24(Thu)16:11:02 No.3506567
>>3506566
I'm still surprised it works this well
even the replay button
>> [_] Anonymous 04/11/24(Thu)16:41:01 No.3506569
>>3506566
That's what you get for using ruffle
In normal flash it works fine
>> [_] Anonymous 04/11/24(Thu)17:28:01 No.3506575
>>3506569
amen
ruffle really is a bandaid for the poor
>> [_] Anonymous 04/12/24(Fri)16:50:19 No.3506614
>>3506569
naturally it would work fine over there, "ruffle check" means he's checking how /f/'s old version
of ruffle compares to the flash player
>> [_] Anonymous 04/12/24(Fri)18:46:46 No.3506620
>>3506565
How do you add all the data when you right click? Trying to add music sources to my flashes but I
don't know how...
>> [_] Anonymous 04/12/24(Fri)18:54:27 No.3506621
>>3506620
open this flash with the decompiler to see how this one specifically operates, if you just want a
quick example:
import flash.ui.ContextMenu;
import flash.ui.ContextMenuItem;
import flash.events.ContextMenuEvent;
import flash.net.URLRequest;
var my_menu:*;
var msauce:*;
msauce = new ContextMenuItem("MUSIC SAUCE GOES HERE");
msauce.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,openLink);
my_menu.customItems.push(msauce);
contextMenu = my_menu;
function openLink(param1:ContextMenuEvent): void
{
navigateToURL(new URLRequest("https://www.youtube.com/watch?v=DAK24FQ7DrA"));
}
>> [_] Anonymous 04/12/24(Fri)20:32:10 No.3506625
>>3506621
Awesome, thanks!