├── .gitignore ├── LICENSE ├── README.md ├── animated_progress_dots ├── animated_progress_dots.lcb ├── api.lcdoc └── preview.gif ├── background_flash ├── api.lcdoc ├── background_flash.lcb ├── preview.gif └── support │ ├── icon.png │ └── icon@extra-high.png ├── breadcrumb_nav ├── api.lcdoc ├── breadcrumb_nav.lcb └── support │ ├── icon.png │ └── icon@extra-high.png ├── circle_progress ├── api.lcdoc ├── cirlceProgress.lcb └── support │ ├── icon.png │ └── icon@extra-high.png ├── rotating_svg ├── api.lcdoc ├── rotatingSVG.lcb └── support │ ├── icon.png │ └── icon@extra-high.png ├── rounded_corners ├── api.lcdoc └── rounded_corners.lcb ├── slider ├── api.lcdoc ├── slider.lcb └── support │ ├── icon.png │ └── icon@extra-high.png ├── svg_icon ├── api.lcdoc ├── support │ ├── icon.png │ └── icon@extra-high.png └── svgIcon.lcb ├── tab_control ├── api.lcdoc ├── support │ ├── icon.png │ └── icon@extra-high.png └── tab_control.lcb ├── tag_list ├── api.lcdoc ├── support │ ├── icon.png │ └── icon@extra-high.png └── tag_list.lcb ├── tree_toggle_button ├── api.lcdoc ├── support │ ├── icon.png │ └── icon@extra-high.png └── tree_toggle_button.lcb ├── url_parser ├── api.lcdoc └── urlParser.lcb └── widget_helpers ├── api.lcdoc └── widget_helpers.lcb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/README.md -------------------------------------------------------------------------------- /animated_progress_dots/animated_progress_dots.lcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/animated_progress_dots/animated_progress_dots.lcb -------------------------------------------------------------------------------- /animated_progress_dots/api.lcdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/animated_progress_dots/api.lcdoc -------------------------------------------------------------------------------- /animated_progress_dots/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/animated_progress_dots/preview.gif -------------------------------------------------------------------------------- /background_flash/api.lcdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/background_flash/api.lcdoc -------------------------------------------------------------------------------- /background_flash/background_flash.lcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/background_flash/background_flash.lcb -------------------------------------------------------------------------------- /background_flash/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/background_flash/preview.gif -------------------------------------------------------------------------------- /background_flash/support/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/background_flash/support/icon.png -------------------------------------------------------------------------------- /background_flash/support/icon@extra-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/background_flash/support/icon@extra-high.png -------------------------------------------------------------------------------- /breadcrumb_nav/api.lcdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/breadcrumb_nav/api.lcdoc -------------------------------------------------------------------------------- /breadcrumb_nav/breadcrumb_nav.lcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/breadcrumb_nav/breadcrumb_nav.lcb -------------------------------------------------------------------------------- /breadcrumb_nav/support/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/breadcrumb_nav/support/icon.png -------------------------------------------------------------------------------- /breadcrumb_nav/support/icon@extra-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/breadcrumb_nav/support/icon@extra-high.png -------------------------------------------------------------------------------- /circle_progress/api.lcdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/circle_progress/api.lcdoc -------------------------------------------------------------------------------- /circle_progress/cirlceProgress.lcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/circle_progress/cirlceProgress.lcb -------------------------------------------------------------------------------- /circle_progress/support/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/circle_progress/support/icon.png -------------------------------------------------------------------------------- /circle_progress/support/icon@extra-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/circle_progress/support/icon@extra-high.png -------------------------------------------------------------------------------- /rotating_svg/api.lcdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/rotating_svg/api.lcdoc -------------------------------------------------------------------------------- /rotating_svg/rotatingSVG.lcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/rotating_svg/rotatingSVG.lcb -------------------------------------------------------------------------------- /rotating_svg/support/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/rotating_svg/support/icon.png -------------------------------------------------------------------------------- /rotating_svg/support/icon@extra-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/rotating_svg/support/icon@extra-high.png -------------------------------------------------------------------------------- /rounded_corners/api.lcdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/rounded_corners/api.lcdoc -------------------------------------------------------------------------------- /rounded_corners/rounded_corners.lcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/rounded_corners/rounded_corners.lcb -------------------------------------------------------------------------------- /slider/api.lcdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/slider/api.lcdoc -------------------------------------------------------------------------------- /slider/slider.lcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/slider/slider.lcb -------------------------------------------------------------------------------- /slider/support/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/slider/support/icon.png -------------------------------------------------------------------------------- /slider/support/icon@extra-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/slider/support/icon@extra-high.png -------------------------------------------------------------------------------- /svg_icon/api.lcdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/svg_icon/api.lcdoc -------------------------------------------------------------------------------- /svg_icon/support/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/svg_icon/support/icon.png -------------------------------------------------------------------------------- /svg_icon/support/icon@extra-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/svg_icon/support/icon@extra-high.png -------------------------------------------------------------------------------- /svg_icon/svgIcon.lcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/svg_icon/svgIcon.lcb -------------------------------------------------------------------------------- /tab_control/api.lcdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/tab_control/api.lcdoc -------------------------------------------------------------------------------- /tab_control/support/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/tab_control/support/icon.png -------------------------------------------------------------------------------- /tab_control/support/icon@extra-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/tab_control/support/icon@extra-high.png -------------------------------------------------------------------------------- /tab_control/tab_control.lcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/tab_control/tab_control.lcb -------------------------------------------------------------------------------- /tag_list/api.lcdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/tag_list/api.lcdoc -------------------------------------------------------------------------------- /tag_list/support/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/tag_list/support/icon.png -------------------------------------------------------------------------------- /tag_list/support/icon@extra-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/tag_list/support/icon@extra-high.png -------------------------------------------------------------------------------- /tag_list/tag_list.lcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/tag_list/tag_list.lcb -------------------------------------------------------------------------------- /tree_toggle_button/api.lcdoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tree_toggle_button/support/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/tree_toggle_button/support/icon.png -------------------------------------------------------------------------------- /tree_toggle_button/support/icon@extra-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/tree_toggle_button/support/icon@extra-high.png -------------------------------------------------------------------------------- /tree_toggle_button/tree_toggle_button.lcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/tree_toggle_button/tree_toggle_button.lcb -------------------------------------------------------------------------------- /url_parser/api.lcdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/url_parser/api.lcdoc -------------------------------------------------------------------------------- /url_parser/urlParser.lcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/url_parser/urlParser.lcb -------------------------------------------------------------------------------- /widget_helpers/api.lcdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/widget_helpers/api.lcdoc -------------------------------------------------------------------------------- /widget_helpers/widget_helpers.lcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevordevore/livecode-extensions/HEAD/widget_helpers/widget_helpers.lcb --------------------------------------------------------------------------------