
FroVN
Active Members-
Posts
30 -
Joined
-
Last visited
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by FroVN
-
Have any way to open a youtube video in GUI
FroVN replied to FroVN's topic in AutoIt General Help and Support
-
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
-
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
-
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
-
thanks you
-
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?
-
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?
-
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
-
i have a text : <Name>Jonh</Name>.<Age>15</Age> how i can get Jonh and 15 in one stringregexp? pls give me example
-
How to open tab but hide (for listen music)
FroVN replied to FroVN's topic in AutoIt General Help and Support
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? -
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
-
oh no problem, i have solve this, add argument -gotoapp 34312 then we done
-
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
-
my code too long ,pls read in here: https://anotepad.com/notes/p7qgr4
-
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?
-
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
-
Hide icon fffdshow when using _soundplay?
FroVN replied to FroVN's topic in AutoItX Help and Support
i want code to hide it automacally, not click -
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?
-
$sTest = "<div>This is a test string</DIV>" this value didn't correct, it like <div>{space} [TEXT NEED GET] </div>
-
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
-
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?
-
Multi StringInStr and StringReplace ?
FroVN replied to FroVN's topic in AutoIt General Help and Support
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? -
How to use progress to _soundseek() a file song
FroVN replied to FroVN's topic in AutoIt General Help and Support
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 -
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