Daiko Games
Daiko Games
CC#
Created by Daiko Games on 4/2/2025 in #help
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
CC#
Created by Daiko Games on 4/2/2025 in #help
Cmd File can´t run on Process.Start(Filename);
using Avalonia.Controls;
using Avalonia.Interactivity;
using Avalonia.Platform.Storage;
namespace Project
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}

public void Example( object sender, RoutedEventArgs args){
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);
}
}
using Avalonia.Controls;
using Avalonia.Interactivity;
using Avalonia.Platform.Storage;
namespace Project
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}

public void Example( object sender, RoutedEventArgs args){
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
CC#
Created by Daiko Games on 4/2/2025 in #help
Cmd File can´t run on Process.Start(Filename);
$codegif
17 replies
CC#
Created by Daiko Games on 4/2/2025 in #help
Cmd File can´t run on Process.Start(Filename);
cs 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);
cs 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
CC#
Created by Daiko Games on 4/2/2025 in #help
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
CC#
Created by Daiko Games on 4/2/2025 in #help
Cmd File can´t run on Process.Start(Filename);
This is the Full code without the main method
17 replies
CC#
Created by Daiko Games on 4/2/2025 in #help
Cmd File can´t run on Process.Start(Filename);
just a Process.Start(BatchFileFOlder) //- the folder is correct
17 replies
CC#
Created by Daiko Games on 4/2/2025 in #help
Cmd File can´t run on Process.Start(Filename);
My C# Code is:
17 replies
CC#
Created by Daiko Games on 4/2/2025 in #help
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
CC#
Created by Daiko Games on 3/24/2025 in #help
✅ Avalonia Message Box
How can I close this Questioning Thread?
13 replies
CC#
Created by Daiko Games on 3/24/2025 in #help
✅ Avalonia Message Box
ok, I found my error - everything is alright 😮 thanks 🙂
13 replies
CC#
Created by Daiko Games on 3/24/2025 in #help
✅ Avalonia Message Box
I will test it
13 replies
CC#
Created by Daiko Games on 3/24/2025 in #help
✅ Avalonia Message Box
Ok
13 replies
CC#
Created by Daiko Games on 3/24/2025 in #help
✅ Avalonia Message Box
Or am I on the wrong path?
13 replies
CC#
Created by Daiko Games on 3/24/2025 in #help
✅ 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
CC#
Created by Daiko Games on 3/19/2025 in #help
How to run a Windows Forms project on Linux
Ok, I made my Project to Avalonia and It works Thanks a lot! 🙂 I finally understand Avalonia UI 😀
113 replies
CC#
Created by Daiko Games on 3/19/2025 in #help
How to run a Windows Forms project on Linux
You can close this issue, i don´t think I need to ask more, avalonia and modern forms might be the solution to my problem
113 replies
CC#
Created by Daiko Games on 3/19/2025 in #help
How to run a Windows Forms project on Linux
does that sound good?
113 replies
CC#
Created by Daiko Games on 3/19/2025 in #help
How to run a Windows Forms project on Linux
ok, my plan is that i will try to get a solution with Modern Forms, as it is nearer to Windows Forms, If I succeed I will probably make a avalonia version, if not surely
113 replies
CC#
Created by Daiko Games on 3/19/2025 in #help
How to run a Windows Forms project on Linux
then i have to find out more about it
113 replies