Jump to content

Koda Form Designer


Dj Demir

Recommended Posts

selam arkadaşlar

bu konuda acemiyim daha ama geçen Koda form designerde GUI'ye avi ekleme özelliğinin olduğunu gördüm

ama nedense AVI'yi ekliyorum eklemiyor

hata veriyor

acaba eksik Bir Plug-in'den mi kaynaklanıyor yoksa başka bir sorun mu var

yardımcı olabilecek arkadaşlar olursa sevinirim ..

Link to comment
Share on other sites

Yardım dosyasına niye bakmıyorsun! Autoitin yardım dosyası çok güzeldir...

#include <GUIConstantsEx.au3>

Opt('MustDeclareVars', 1)

Example()

Func Example()
    Local $ani1, $buttonstart, $buttonstop, $msg

    GUICreate("My GUI Animation", 300, 200)
    $ani1 = GUICtrlCreateAvi(@SystemDir & "\shell32.dll", 165, 50, 10)

    $buttonstart = GUICtrlCreateButton("start", 50, 150, 70, 22)
    $buttonstop = GUICtrlCreateButton("stop", 150, 150, 70, 22)

    GUISetState()

   ; Run the GUI until the dialog is closed
    While 1
        $msg = GUIGetMsg()

        Select
            Case $msg = $GUI_EVENT_CLOSE
                ExitLoop

            Case $msg = $buttonstart
                GUICtrlSetState($ani1, 1)

            Case $msg = $buttonstop
                GUICtrlSetState($ani1, 0)

        EndSelect
    WEnd
EndFunc  ;==>Example[/CODE]

Link to comment
Share on other sites

güzel olduğunu biliyorum da ingilizce pratikte var :)

fazla bilmiyorum

Link to comment
Share on other sites

hocam yaptım bunları ama avi ekleyemedim

görüntü bozuk diyor

Link to comment
Share on other sites

Ben daha önce hiç bu şekilde bir çalışma yapmadım, lakin yaşadığın sorunun codeck ile alakası olduğunu düşünüyorum.

Kısacası eklemeye çalıştığın avi, autoit için uygun deyil. Mümkünse sıkıştırılmamış bir avi dosyası kullan.

Kolay gelsin...

Link to comment
Share on other sites

normal bi tane AVI kullandim

FLash ile swf yaptım onu AVI'ye çevirdim

yoksa nasıl AVI yapabilirim bilmiyorum

shell'in icindekileri alıyor ama benim verdigim avi'yi almıyor

peki hocam teşekkürler

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...