Daiko Games
Cmd File can´t run on Process.Start(Filename);
This is just a example of how it looks Like, I made a FLASHRUNNER Folder and added ruffle into it. I didn´t specify my whole Project here - my Problem is that is is too big to show it here I would need Discord Nitro - but I don´t need it
17 replies
Cmd File can´t run on Process.Start(Filename);
string swfFile = Path.Combine(Foldername, Path.GetFileNameWithoutExtension(Filename) + ".swf");
string OriginalFlashPlayer64 = Path.Combine(AppDomain.CurrentDomain.BaseDirectory + @"FFDEC\FlashRunner\ORIGINALFLASHRUNNER\ruffle-nightly-2025_03_25-windows-x86_32", "ruffle.exe");
string NewFlashPlayerPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory + @"FFDEC\Converted" + Path.GetFileNameWithoutExtension(Filename) + ".exe");
File.Copy(OriginalFlashPlayer64, NewFlashPlayerPath, true);
string NewFileToDeleteAfterConversion = Path.Combine(AppDomain.CurrentDomain.BaseDirectory + @"\FFDEC\Converted" + Path.GetFileNameWithoutExtension(Filename) + ".swf");
File.Copy(swfFile, NewFileToDeleteAfterConversion, true);
string BatchFile = Path.Combine(AppDomain.CurrentDomain.BaseDirectory + @"FFDEC", "ConvertSWFTOEXE.cmd");
File.WriteAllText(BatchFile, "cd");
File.AppendAllText(BatchFile, "\nffdec -swf2exe wrapper "" + NewFlashPlayerPath + "" "" + NewFileToDeleteAfterConversion + """);
string CopiedFlashPlayerPath = Path.Combine(Foldername + Path.GetFileNameWithoutExtension(Filename) + ".exe");
Process.Start(BatchFile);
File.Copy(NewFlashPlayerPath, CopiedFlashPlayerPath, true);
17 replies
Cmd File can´t run on Process.Start(Filename);
Ok I will elaborate: I use JPEX´s decompiler on CommandLine - specifically the Java Version - you can find it here: https://github.com/jindrapetrik/jpexs-decompiler, and here is the documentation on how to work on command Line: https://github.com/jindrapetrik/jpexs-decompiler/wiki/Commandline-arguments. My code is written in Avalonia
17 replies
✅ Avalonia Message Box
The problem is that I don’t know how I can use the var in a if sentence in C#. I want to test if the result =yes Button.The problem I don’t know how the result is written or how I can surely check if the yes button was clicked
13 replies