Jump to content

Reekod

Active Members
  • Posts

    57
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Reekod's Achievements

Wayfarer

Wayfarer (2/7)

1

Reputation

  1. actually impossible to send just a # it send windows key command ... someone got some tricks ?
  2. Hi there really nice work, why don't you share the 5.2 version used in your TV shows APPS ? the _List_CreateGUI is a pure and wonderfull advance for Auto-it scripting regards
  3. Hi there, thx for sharing is there a way to support _MetroUDF-5.1 ? regards
  4. just copy folder MetroUDF-5.1 into auto-it install path "\include" folder test example.au3 next
  5. yes sir, and i tried to code it but without any success ps : but may be the internet source path of the image is the issue i'm working on right now
  6. Hi there is GUICtrlCreateListView support image in cell ? is there a simple way to do it regards
  7. Hi there and where can we get the include files to test your code ? regards
    community really need a port on Koda the UDF 5.2 is available on TV show app include it's time
  8. @Danp2 @xCROv @Malkey Thank you guys !
  9. @Danp2 i dont find anything or help with Json_Dump function , do you think this func can help me ? i need to know how to - list all my json entry ( like 42 ) - Get specific value of 42 entry like Name     "Data": {         "42": {             "Id": "4321",             "Url": "\/coins\/42\/overview",             "ImageUrl": "\/media\/12318415\/42.png",             "Name": "42",             "Symbol": "42",             "CoinName": "42 Coin",             "FullName": "42 Coin (42)",             "Algorithm": "Scrypt",             "ProofType": "PoW\/PoS",             "FullyPremined": "0",             "TotalCoinSupply": "42",             "PreMinedValue": "N\/A",             "TotalCoinsFreeFloat": "N\/A",             "SortOrder": "34",             "Sponsored": false,             "IsTrading": true         }, Actually i write my file like this #include <GUIConstants.au3> #include <file.au3> #include <Array.au3> #include <MsgBoxConstants.au3> #include "json.au3" #include "BinaryCall.au3" Local $Tempfile1 = "c:\temp\tempfile.csv" FileDelete($Tempfile1) Local $Json = BinaryToString(InetRead("https://min-api.cryptocompare.com/data/all/coinlist"), 4) Local $Obj = Json_Decode($Json) Local $result = Json_Encode($Obj, $JSON_PRETTY_PRINT) start() Func start()     FileWrite($Tempfile1, $result) EndFunc   ;==>start Exit
  10. i will soon ! thx mate
  11. Finally not so hard Thank you so much ! #include "json.au3" #include "BinaryCall.au3" Local $Json = BinaryToString(InetRead("https://min-api.cryptocompare.com/data/all/coinlist"), 4) Local $Obj = Json_Decode($Json) ConsoleWrite(Json_Encode($Obj, $JSON_PRETTY_PRINT))
×
×
  • Create New...