Jump to content

VixinG

Active Members
  • Posts

    105
  • Joined

  • Last visited

About VixinG

  • Birthday 08/25/1993

Profile Information

  • Location
    Poland

Recent Profile Visitors

409 profile views

VixinG's Achievements

  1. I'm sorry, your code doesn't work for me in any browser, even IE, that's why I wanted to help. It's just me > Uncaught TypeError: Object #<HTMLTextAreaElement> has no method 'createTextRange' AscW.htm:26 ClipBoard AscW.htm:26 (anonymous function) Regards
  2. I found out the Clipboard copy doesn't work on my browser. Here's the function if you would like to change it: <script> function ClipBoard(){ var text = document.getElementById("holdtext"); window.prompt ("CTRL+C to copy to clipboard:", text.innerText); } </script> And in the document's top right corner, and in the "copytext" element's top right corner: <a href="#" onclick="ClipBoard();"> It opens a prompt with code to copy etc.
  3. I don't know. Yellow is mostly used to highlight stuff, like ctrl+f in browsers. It's also used in SciTE to see current line: caret.line.back=#FFFED8 // au3.properties file Regards
  4. Back to the question: Wikipedia has got a lists and comparison lists of different software. Here's the ss I took about the CHM file makers:
  5. I like this idea, but yellow background and red code is hurting my eyes Default SciTE editor's background color is #F0F4F9, how about it? It helps to see the difference between red and orange. On yellow background it looks the same. Have a look:
  6. @mlipok In my opinion, the best way of learning something is by doing it. I'm not an expert, but I learned everything in my life by doing and failing. When I have an idea, I start with basic code, and then I replace some part of the code with more advanced functions. I have help opened all the time and I read. I add new UDF functions and improve code. Learning a complete set of functions is not as effective as using all of them in an application. Let's say you want to write a Mail client - you can use ALL functions from Function Reference and you will learn more by writing that client, than learning all the functions by translating it's reference and remarks. Believe me, even if you learn all these functions, you will still use F1, unless you're very experienced like Melba23 or others.
  7. I don't find it useful to translate AutoIt to Polish. Too much work and what for? Sure, it's not an easy language, if you're planning to write something serious, but I don't think it's hard to understand it and know how everything works. Putting it altogether and making sure it works is hard, but individually everything is easy. It's really well-written and people are often too lazy to press F1 and that's why they sometimes ask on forums, before they get into manual. If someone really wants to write something using AutoIt, he will find a way to learn functions (which are self-explanatory, like: ControlGetPos, StringIsFloat, WinGetPos, etc.) AutoIt syntax is very intuitional. Hey, I know some stuff is really hard if you look at it for the first time, if you don't know anything yet, but... who starts from the end? If you know basics and can use it together in script, you will understand the hardest functions, by looking on examples or searching another help file, which is THIS forum. There are examples and nice detailed help files everywhere. If you still want to do it, you can of course, but I find it useless. Let me know what do you think. Regards, VixinG
  8. F1 -> AutoIt -> Function Reference -> Graphic and Sound Management... Seems like you missed that part.
  9. I saw a topic where someone had similar problem (couldn't _IEAttach() ) and you told him to try loop it until it successfully attach. It's manually opened IE process from "C:\Program Files (x86)\Internet Explorer\iexplore.exe". It's not maximized. Edit: I uninstalled IE10 and went back to IE9. Everything works now. I can attach without errors. Sorry to bother you.
  10. Great job, I was about to post two possible solutions to this. For $j = 1 To $amount - 1 ;^ here $arr[0][$j-1] = $sAlpha & StringFormat("%03d", $j) Next ; OR For $j = 0 To $amount - 1 $arr[0][$j] = $sAlpha & StringFormat("%03d", $j+1) ;here Next
  11. I found an answer quick, but yeah: What would you think you'd need to change to fix the starting from Col 1 with ABCD001 instead of Col 0?
  12. Yes, I'm always using it for longer names like this. #include <IE.au3> $hWnd = WinGetHandle("[Class:IEFrame]") ConsoleWrite(WinGetTitle($hWnd) & @CRLF) ; shows exact name Do Local $oIE = _IEAttach($hWnd, "HWND") Sleep(500) Until IsObj($oIE) MsgBox(0, "IE URL", _IEPropertyGet($oIE, "locationurl")) Still the same error.
  13. Oh.. I feel terrible now Sorry, I should give him a tip, not a solution.
  14. For $j = 1 To $amount - 1 To start from ABCD001.
×
×
  • Create New...