Jump to content

Born2Try

Members
  • Posts

    3
  • Joined

  • Last visited

Born2Try's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. how can make autoit flv player with link file .flv? Like this image : website example http://www.maxilamba.com/flash.html?video=http://www.maxilamba.com/video.mp4 can you help me edit this code work ? i'm a newbie learning autoit Global $sPlayer = "http://www.maxilamba.com/player.swf" Global $sMovie = "http://Your_video_link_file.flv" $GUI = GUICreate("Lama's", 605, 600) $url = GuiCtrlCreateInput( "http://Your_video_link_file.flv",20, 500, 500, 25) $OK = GUICtrlCreateButton("&Watch",530, 500, 75, 25,0x001) $oObj = ObjCreate("ShockwaveFlash.ShockwaveFlash.1") $oPlayer = GUICtrlCreateObj($oObj, 10, 10, 585, 485) $readurl = GUICtrlRead($url) With $oObj .Movie = $sPlayer .Bgcolor = "#000000" .AllowFullscreen = true .SetVariable('ss_station','BNN') .SetVariable('ss_program_title','101tv') .SetVariable('ss_date_production','') .SetVariable('ss_episode_title','') .SetVariable('ss_type_stream','flv') .SetVariable('config', '') .SetVariable('image', 'http://xemanhdep.com/gallery/ao-dai-trang-muot/ao-dai-trang-muot02.jpg') .SetVariable('file', $sMovie) EndWith GUISetState() While 1 Switch GUIGetMsg() Case -3 Exit EndSwitch Wendorignal: http://www.autoitscript.com/forum/index.php?showtopic=105969
  2. How to kill Thread in process in autoit ? example:
  3. I have same trouble with new line in iniread . but it happend with GUICtrlCreateLabel Ex: $text1 = IniRead("config.ini", "Config", "text1", "Error") $Group_3 = GUICtrlCreateLabel($text1,15,18,210,65) and Config.ini file : [config] $text1 = "line1" & @CRLF & "line2" ; << not work with new line [config] $text1 = "line1\line2" ; << not work too My English not good . Plz help me .
×
×
  • Create New...