StungStang 1 Posted May 22, 2011 Hi to all, i want to embed windows media player in an autoit GUI...But unfortunatly i can't resize the object...i want a custom dimension but the player always take the same size. How i can set my size? expandcollapse popup#include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $Gui = GUICreate("WMP", 797, 558, 122, 78) GUISetState(@SW_SHOW) $Link = "rtsp://stream.vrf.de/VRF" $oMediaplayer = ObjCreate("WMPlayer.OCX.7") GUICtrlCreateObj ($oMediaplayer, 8, 8, 777, 545) ;<---Don't work well, i can't choice the dimension If Not IsObj ($oMediaplayer) Then MsgBox(8192, "test", "error") Exit EndIf With $oMediaplayer .fullScreen = True .windowlessVideo = False .enableContextMenu = True .enabled = True .uiMode = "full" .settings.autostart = True .settings.mute = False .settings.volume = 100 .settings.Balance = 0 .URL = $Link EndWith While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Hi to all Share this post Link to post Share on other sites
water 2,387 Posted May 24, 2011 Can't test it right now but try to move "GUISetState(@SW_SHOW)" after "GUICtrlCreateObj" My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
StungStang 1 Posted May 31, 2011 It's the same think ...Don't work, i can't have my custom size Any suggestion? Hi! Share this post Link to post Share on other sites
BrewManNH 1,305 Posted May 31, 2011 From researching this here on the forum and elsewhere this object can't be resized. It appears to ignore the size settings unless you're using it to view a video. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way!I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Share this post Link to post Share on other sites
StungStang 1 Posted June 1, 2011 There is no way to use windows media player with a custom size?...or some dll like as bass.dll but for video streaming? Hi! Share this post Link to post Share on other sites
BrewManNH 1,305 Posted June 1, 2011 There's no way to resize THAT WMP object, there are other ways of accessing Windows Media Player, do a search on the forums I believe I found a couple recently. Also, trancexx posted in the Example Scripts a function that displays streaming video on a GUI a little while ago. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way!I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Share this post Link to post Share on other sites
StungStang 1 Posted June 1, 2011 (edited) I don't see too much helpfull topic for my question. I see only this tracexxx topic for a Thank's for your help P.S. I see this dll : BASS_DSHOW2.4.2 , but i dont see nothing about it on this forum =) Edited June 1, 2011 by StungStang Share this post Link to post Share on other sites