首页
社区
课程
招聘
[原创]对某款软件flash提取
发表于: 2013-3-26 07:33 8492

[原创]对某款软件flash提取

2013-3-26 07:33
8492

前言略,直接分析


/**************FlashMainForm*********************/
public class FlashMainForm : Form
{
    // Fields
    private IContainer components = null;
    private AxShockwaveFlash MyFlash;
    private Timer timer1;

    // Methods
    public FlashMainForm()
    {
        this.InitializeComponent();
    }

    private string CalSource(string c, string p, string sp)
    {
        string str = @"myResources\flashs\";
        if (c != "")
        {
            str = str + c + @"\";
        }
        if (p != "")
        {
            str = str + p + @"\";
        }
        if (sp != "")
        {
            str = str + sp + @"\";
        }
        return (str + "flash.ec");
    }

    protected override void Dispose(bool disposing)
    {
        if (disposing && (this.components != null))
        {
            this.components.Dispose();
        }
        base.Dispose(disposing);
    }
 private void MyFlash_FSCommand(object sender, _IShockwaveFlashEvents_FSCommandEvent e)
    {
        GlobalClass class2;
        switch (e.command)
        {
            case "找影*":
                GlobalClass.IsRuiGame = true;
                new Resolution().ChangeRes(800, 600);
                GlobalClass.FlashImageDirectory = Application.StartupPath + @"\Course\找影*\";
                GlobalClass.FlashImagePath = GlobalClass.FlashImageDirectory + "0.jpg";
                GlobalClass.FlashFieldPath = GlobalClass.FlashImageDirectory + "FIELD.EC";
                GlobalClass.FlashGamePath = GlobalClass.FlashImageDirectory + "GAME.EC";
                class2 = new GlobalClass();
                if (!class2.IsAllReady())
                {
                    MessageBox.Show("该课件缺少文件,请重新安装");
                    break;
                }
                new FlashForm().ShowDialog();
                break;
       case ......

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

上传的附件:
收藏
免费 6
支持
分享
最新回复 (7)
雪    币: 135
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
LZ的代码是用什么逆出来的?
2013-3-26 11:18
0
雪    币: 97697
活跃值: (200859)
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
3
Thanks for share.
2013-3-26 17:15
0
雪    币: 12
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
4
谢谢楼主分享,我没有看出这是哪款软件的flash,楼下有人看出来了否?
2013-3-27 08:29
0
雪    币: 43
活跃值: (14)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
应该是用C#写的,楼主反编译~~~
2013-3-27 09:36
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
6
强悍,LZ写提取软件flash的工具软件呗!
2013-3-27 11:03
0
雪    币: 242
活跃值: (1664)
能力值: ( LV9,RANK:410 )
在线值:
发帖
回帖
粉丝
7
Thanks for share.
2013-3-29 08:52
0
雪    币: 370
活跃值: (15)
能力值: ( LV9,RANK:170 )
在线值:
发帖
回帖
粉丝
8
写出从app中提取flash的程序会更牛逼
2013-4-1 23:32
0
游客
登录 | 注册 方可回帖
返回
//