Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/30/2017 in all areas

  1. Features: Create modern looking borderless and resizable GUIs with control buttons (Close,Maximize/Restore,Minimize, Fullscreen, Menu) True borderless, resizeable GUI with full support for aerosnap etc. Many color schemes/themes included. See MetroThemes.au3 for more details. 3 type of Windows 8/10 style buttons. Modern checkboxes, radios, toggles and progressbar. All buttons, checkboxes etc. have hover effects! Windows 10 style modern MsgBox. Windows 10/Android style menu that slides in from left. Windows 10 style right click menu Credits: @UEZ, for the function to create buttons with text using GDIPlus. @binhnx for his SSCtrlHover UDF Changelog: Download UDF with example:
    1 point
  2. FileInstall() make a redistributable ZIP file (perhaps with password). Download, unzip. On first run unpack (FileInstall) the required SQLite DLLs. The end user won't event know whats going on Have fun.
    1 point
  3. Exactly, especially since SQLite is particularly well suited to such use, being an embedded RDBMS (and by far the most used ever).
    1 point
  4. atwolf359

    Youtube API v3

    very basic, but gives a starting point for self research. note the documents links below. google apikeys are required. YouTube made a major change in it's API a couple years back, version3. you need server and Browser keys, so no direct access is allowed. you must register thru YouTube to get the keys, and they are considered confidential. #include <MsgBoxConstants.au3> $video_id = 'A_QfO7g1YsI'; Parliament - Night of The Thumpasorus Peoples $apikey = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' ; // browser key for desktop apps. ;$apikey = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' ; // server key for web apps. $ytquery = 'https://www.googleapis.com/youtube/v3/videos' & '?id=' & $video_id & '&key=' & $apikey ; $ytquery = $ytquery & '&part=snippet,contentDetails,status,player'; $ytquery = $ytquery & '&fields=items(id,snippet(title),status(uploadStatus,rejectionReason,embeddable)'; $ytquery = $ytquery & ',contentDetails(duration,regionRestriction)'; $ytquery = $ytquery & ',player(embedHtml))'; $ytdata = InetRead($ytquery,1); $ytjson = BinaryToString($ytdata); ;MsgBox($MB_OK, $video_id, $ytjson) ConsoleWrite( @CRLF & $ytjson & @CRLF) Exit ; https://developers.google.com/youtube/v3/ ; https://developers.google.com/youtube/v3/docs/videos
    1 point
×
×
  • Create New...