Jump to content

FroVN

Active Members
  • Posts

    30
  • Joined

  • Last visited

Everything posted by FroVN

  1. In my WIN7 , only black sceen
  2. I want to open youtube video inside my GUI, but the youtube no longer support old IE (IE9<) so IECreate is not work for some cases, your guy have any suggest? thanks
  3. Thanks your guy, i will try, Ah a little more, i have sreached and saw google drive provide API that i can use to upload : https://developers.google.com/drive/api/v3/simple-upload And it's like this : POST https://www.googleapis.com/upload/drive/v3/files?uploadType=media HTTP/1.1 Content-Type: image/jpeg Content-Length: [NUMBER_OF_BYTES_IN_FILE] Authorization: Bearer [YOUR_AUTH_TOKEN] So how i can make POST method like that? , and Content-Type,Content-Lenght,... I want to have challenge and this is
  4. Are there any ways to upload file txt to mediafire or google drive? if yes can get me an example or something please, Thanks
  5. I have a gui create account, when user registe account, how i can save information of that account ? And when user login too ,like steam,what should i do
  6. i have the loop for next, every time the loop will add 100,000, so i code like this: for $i=1 to 100 $bill_gate+=100000 next so how i can split 3 number zero and add ',' or '.' like this 1.000.000?
  7. Ah i see To hold a key down Send("{a down}") ;Holds the A key down Send("{a up}") ;Releases the A key is this right?
  8. I want to hold X then press Y ,like hotkey copy holding Ctrl then press C (Ctrl + C), i want do that but don't know how ? thanks
  9. i have a text : <Name>Jonh</Name>.<Age>15</Age> how i can get Jonh and 15 in one stringregexp? pls give me example
  10. Tks, i have try your code : _IECreate ("about:blank",0,0) i want to open this music link : https://mp3.zing.vn/bai-hat/Baby-Justin-Bieber-Ludacris/ZWZA0DIA.html my code like this _IECreate ("https://mp3.zing.vn/bai-hat/Baby-Justin-Bieber-Ludacris/ZWZA0DIA.html",0,0) and it not play the music, maybe IE can't run this music?
  11. I made a software that download music and play it, but i have an idea , listen music online when we have internet connectionm ,no need for download any more, so i want to connect to soundclound but if wan to do that i need to open google chrome , so is there any way to open that in hide and not show on taskbar? sorry for my bad english
  12. oh no problem, i have solve this, add argument -gotoapp 34312 then we done
  13. Hi, i need to create shortcuts that pointer like this "C:\Game" - gotoapp 34312 ,problem here how can i write -gotoapp 34312? i have try Filecreateshortcut('"C;\game" -gotoapp 34312') but not work, pls help me
  14. my code too long ,pls read in here: https://anotepad.com/notes/p7qgr4
  15. I use Autoit to make an install game (10gb, use Fileinstall), when i compile , it have issue like this, but when i compile another script(no game, just Msgbox), it don't have any error, dose every body how to fix?
  16. Liket title, i code my program for user, but if they want to uninstall, they can open Uninstall.exe instead go to directory foldel delete it, how to code a program like that? i think all night but don't have resuilt, thanks
  17. i want code to hide it automacally, not click
  18. when i _soundplay, icon ffdshow appear on tray, how much soundplay there are many icon ffdshow there ,i want auto hide it, not click on the tray and go to tray&patch to turn off, can i do it?
  19. $sTest = "<div>This is a test string</DIV>" this value didn't correct, it like <div>{space} [TEXT NEED GET] </div>
  20. Tks for advice, i think with 2 gui i compile two script , Ah, i have a problem with stringregexp too, can you help me,i get the code from html, it like: <div> [TEXT NEED GET] </div> i want to get the text inside <div> </div> but very bad in stringregexp, can get me any example? Thanks
  21. Hello, i have a problem, first i create two gui , first gui use Fuction Soundplay to play the music, if the music playing in the end, it auto change a new song like playlist on soundcloud, but the problem that while i press a button in gui 1 to open gui 2 , the song when it end it not change to a new song, wait for gui 2 close then begin change a new song, have anyway to make gui 1 still working while gui 2 is working too?
  22. ah one more i used GUICtrlSetData($Label3,'Time : '&$nowtime&' / '&$maxtime) in while loop to set the time of video while playing, label flicker that bad for eyes,you have any i dea?
  23. Tks, finally i can do it, but another way however same like you case $Slider1 $w=GUICtrlRead($Slider1) SoundSetWaveVolume($w) GUICtrlSetTip($Slider1,GUICtrlRead($Slider1)&'%') Case $cLabel $aMpos = GUIGetCursorInfo($Form1) $iPercent = 100 * ($aMpos[0] - 290) / 140 _Metro_SetProgress($cProgress, $iPercent) $timethanhmax=_SoundLength($s,2) $seek=$iPercent/100 $truelinh=$seek*$timethanhmax $truelinh=Int($truelinh) $toseek=mili($truelinh) $time = StringSplit($toseek,':') _SoundSeek($s,$time[1],$time[2],$time[3]) _SoundPlay($s) that ($iPercent = 100 * ($aMpos[0] - 290) / 140) 290,174 is left and width of progess, and i have an 2 hours to know this lol
  24. Hi, i have a problem :" can't set the name of file with a special character like: \;/;";|;... have anyway to short the StringInSrt and Stringreplace? i am using this code but too long $title=InputBox(0,'','','') if StringInStr($title,'\') or StringInStr($title,'/') or StringInStr($title,':') or StringInStr($title,'*') or StringInStr($title,'?') or StringInStr($title,'"') or StringInStr($title,'<') or StringInStr($title,'>') or StringInStr($title,'|') Then $title=StringReplace($title,'\','-') $title=StringReplace($title,'/','-') $title=StringReplace($title,':','-') $title=StringReplace($title,'*','-') $title=StringReplace($title,'?','-') $title=StringReplace($title,'"','-') $title=StringReplace($title,'<','-') $title=StringReplace($title,'>','-') $title=StringReplace($title,'|','-') EndIf
×
×
  • Create New...