YuChan 0 Posted Tuesday at 03:24 AM Hello, Im beginner on Autoit Please can you help me to create a news system please, or send a tuto. THX Share this post Link to post Share on other sites
JLogan3o13 1,621 Posted Tuesday at 03:36 AM @YuChan We operate on a "Teach a Man to Fish" motto. If you want help with something specific, you need to provide the following: Exactly what you are trying to do What you have tried on your own Where you are stuck. No one here is going to write it for you. Also, if you are a beginner as you state, perhaps you should spend some time going through the help file and trying out the examples, rather than trying to launch right into the deep end with "a news system". "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum! Share this post Link to post Share on other sites
YuChan 0 Posted Tuesday at 03:42 AM THX. I want create a news system but i never make this, it's hard for me. Have you one link ? Or one tuto ? Share this post Link to post Share on other sites
TheDcoder 1,174 Posted Tuesday at 04:34 AM @YuChan I assume you mean "tuto" as in "tutorial", and the answer is that there are no tutorials available for creating a news system. Though we can help you if you can elaborate on what kind of news station you want to make EasyCodeIt - A cross-platform AutoIt implementation Share this post Link to post Share on other sites
YuChan 0 Posted Tuesday at 04:39 AM I want colaborate but im french it's hard to understand. I have this: Func _chargementNews() $bNews = InetRead("https://127.0.0.1/news.txt",1) If @error Then MsgBox(64,"ALERT","Impossible de recuperer les News !") $news = BinaryToString($bNews) $finalNews = StringSplit($news,"next",1 + 2) $arraySize = UBound($finalNews) For $i = 0 To $arraySize - 2 Step + 2 $previousJournalNews = GUICtrlRead($journalNews) If $previousJournalNews <> "" Then GUICtrlSetData($journalNews, $finalNews[$i] & @CRLF & $finalNews[$i + 1] & @CRLF & $previousJournalNews) Else GUICtrlSetData($journalNews, $finalNews[$i] & @CRLF & $finalNews[$i + 1]) EndIf Next EndFunc But i don't know how is a news file. Can you help me ? THX Share this post Link to post Share on other sites
TheDcoder 1,174 Posted Tuesday at 07:00 AM There is an unofficial dedicated French forum for AutoIt: https://www.autoitscript.fr/forum/ You may get more help there. By the way, are you just trying to read a web page and extract news from it? EasyCodeIt - A cross-platform AutoIt implementation Share this post Link to post Share on other sites
Nine 921 Posted Tuesday at 12:24 PM @TheDcoder He already knows about the french forum. He is asking multiple questions there too...The good side, he is not posting the exact same thing in both forums. 2 TheDcoder and FrancescoDiMuro reacted to this Not much of a signature, but working on it... Spoiler Block all input without UAC Save/Retrieve Images to/from Text Tool to search content in au3 files Date Range Picker Sudoku Game 2020 Overlapped Named Pipe IPC x64 Bitwise Operations Fast and simple WCD IPC GIF Animation (cached) Share this post Link to post Share on other sites