0

我正在使用 jsfl 向 fla 添加一个新版本的自定义组件。

这会提示用户选择是否替换现有组件。

如果可能的话,我想通过 jsfl 来响应这个提示。

谢谢。

4

1 回答 1

0

我会编写一个程序(有延迟)来确认“解决库冲突”对话框,并在调用 fl.componentsPanel.addItemToDocument 之前使用 FLfile.runCommandLine 调用它。我知道如何在 Windows 中执行此操作,但在 Mac 上不知道。

(在 Windows 中,确认替换的程序可能是:
参见 Microsoft - Dev Center - Desktop > Samples > Enumerate top level windows fast in C#

using System;
using System.Text;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace FlashHack
{
    class Program
    {
        protected delegate bool EnumWindowsProc(IntPtr hWnd, IntPtr lParam);
        [DllImport("user32.dll", CharSet = CharSet.Unicode)]
        protected static extern int GetWindowText(IntPtr hWnd, StringBuilder strText, int maxCount);
        [DllImport("user32.dll", CharSet = CharSet.Unicode)]
        protected static extern int GetWindowTextLength(IntPtr hWnd);
        [DllImport("user32.dll")]
        protected static extern bool EnumWindows(EnumWindowsProc enumProc, IntPtr lParam);
        [DllImport("user32.dll")]
        protected static extern bool IsWindowVisible(IntPtr hWnd);
        [DllImport("user32", CharSet = CharSet.Unicode, SetLastError = true, ExactSpelling = true)]
        internal static extern IntPtr GetParent(IntPtr hwnd);
        [DllImport("User32.dll", EntryPoint = "SetForegroundWindow")]
        private static extern IntPtr SetForegroundWindowNative(IntPtr hWnd);
        protected static bool AnswerResolveLibraryConflictDlg(IntPtr hWnd, IntPtr lParam)
        {
            int size = GetWindowTextLength(hWnd);
            if (size++ > 0 && IsWindowVisible(hWnd))
            {
                StringBuilder sb = new StringBuilder(size);
                GetWindowText(hWnd, sb, size);
                if (sb.ToString() == "Resolve Library Conflict")
                {
                    IntPtr parent = GetParent(hWnd);
                    Console.WriteLine(sb.ToString());
                    if (parent != null)
                    {
                        SetForegroundWindowNative(parent);
                        SendKeys.SendWait("{TAB} {ENTER}");
                    }
                }
            }
            return true;
        }
        static void Main(string[] args)
        {
            System.Threading.Thread.Sleep(1000); // Must wait for the 'Resolve Library Conflict'-dlg
            Console.WriteLine("Now!");
            EnumWindows(new EnumWindowsProc(AnswerResolveLibraryConflictDlg), IntPtr.Zero);
        }
    }
}

在 jsfl 中,这个程序可以从以下开始:

FLfile.runCommandLine("start ConfirmReplace.exe");
fl.componentsPanel.addItemToDocument( ... );

)

于 2013-10-10T11:35:21.720 回答