Search the Community
Showing results for tags 'Tree'.
-
Greetings! I am in need of your guidance once again. I searched the forums for clicking in span, clicking by class, clicking without an ID or Name, etc., but I am unable to find a solution for my problem. I am trying to expand this tree in IE. There is an arrow ( > ) that i need to click, but I can't find a way to do it . Alternatively, I can double-click the text "Servers", but that seems to be even more troublesome. I will have to do this 2-3 more times as the tree expands. There appears to be an ID for the tree, simply called "tree", but that isn't working when I send a cl
-
Hello guys yestarday I was needing to print a Directory Tree Scheme But I don't like windows command Tree symbols so I just did this small function that allow me to extend the symbols. It's not optimized. Code: #include <File.au3> #include <Array.au3> #include <String.au3> Local $aSymbols[][] = [['\', '|', '-'] _ , ['⚽', '│', '─'] _ , ['⬮', '⁞', '.'] _ , ['⬯', '︴', '~'] _ , ['■', '║', '═'] _ , ['├', '│', &
- 5 replies
-
- tree
- list files
-
(and 1 more)
Tagged with:
-
Hello, this is a little piece of code, I use to generate an index.html page. (The index.html is a starting point to navigate through the local file structure and openend via a link from our web application.) Workflow: 1) Read the file structure (recursive) 2) Write the html file (which includes, the images as inline html, the css and the complete javascript [all minified]) The files can be sorted by --> 0 = filename, 1 = file creation time, 2 = Size of file Thanks to KaFu and Melba23 #region ;************ Includes ************ #include-once #include <Array.au3> #endr