autoitxp 0 Posted June 1, 2010 (edited) When maximize windows my flash file not maximizing with Gui? how to do that kindly help me ! #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> GUICreate("Interface - 380p", 400, 300, -1, -1,BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS, $WS_CLIPCHILDREN)) GUISetState() $Flash = ObjCreate("ShockwaveFlash.ShockwaveFlash") $FlashObj = GUICtrlCreateObj($Flash, 0, 0, 400, 300) $Flash.Movie = "C:\Documents and Settings\go123\Desktop\gui\flashindex.swf" $Flash.Loop = false $Flash.allowScriptAccess = "Always" While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop WEnd GUIDelete() Edited June 1, 2010 by autoitxp Share this post Link to post Share on other sites
PsaltyDS 39 Posted June 2, 2010 Did you try: GuiCtrlSetResizing($FlashObj, $GUI_DOCKAUTO) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Share this post Link to post Share on other sites