使用and标准库在MFC打开2个flash

使用and标准库在MFC打开2个flash

一、目的

1、想:使用and标准库在MFC打开2个flash

二、参考

1、

三、操作

1、

www.zeeklog.com  - 使用and标准库在MFC打开2个flash
www.zeeklog.com  - 使用and标准库在MFC打开2个flash
void CMy01_MFCAndFlashDlg::InitFlash()
{
    //初始化:触摸屏flash
    RECT rect   ;
    SetRect(&rect,mFlash_chuMoPing.x,mFlash_chuMoPing.y,mFlash_chuMoPing.width,mFlash_chuMoPing.height);
    mFlash_chuMoPing.pFlash=FastFlashOpen(mFlash_chuMoPing.path,m_hWnd,0 , &rect);
    FastFlashStop(mFlash_chuMoPing.pFlash);
    
    //初始化:投影机flash
    //测试:使用picture:成功:
    RECT rect02   ;
    SetRect(&rect02,0,0,mFlash_touYingJi.width,mFlash_touYingJi.height);//注意RECT一定要从xLeft=0,yTop=0开启,我之前从xLeft=1024,yTop=0开启所以一直报错
    GetDlgItem(IDC_Flash2)->MoveWindow(1920,0,1024,768);//移动picture位置就是设置第二个flash的位置
    mFlash_touYingJi.pFlash=FastFlashOpen(mFlash_touYingJi.path, GetDlgItem(IDC_Flash2)->m_hWnd,0 , &rect02);
    FastFlashPlay(mFlash_touYingJi.pFlash);	
}