{"id":13744823,"url":"https://github.com/openzoom/zoomit-as3-sdk","last_synced_at":"2025-05-09T04:30:49.777Z","repository":{"id":66948869,"uuid":"822408","full_name":"openzoom/zoomit-as3-sdk","owner":"openzoom","description":"Zoom.it ActionScript 3 SDK","archived":false,"fork":false,"pushed_at":"2011-06-13T06:44:59.000Z","size":322,"stargazers_count":13,"open_issues_count":0,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-15T16:41:45.604Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://api.zoom.it","language":"ActionScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openzoom.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2010-08-06T23:03:16.000Z","updated_at":"2024-06-12T07:41:43.000Z","dependencies_parsed_at":"2023-02-20T15:00:37.472Z","dependency_job_id":null,"html_url":"https://github.com/openzoom/zoomit-as3-sdk","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openzoom%2Fzoomit-as3-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openzoom%2Fzoomit-as3-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openzoom%2Fzoomit-as3-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openzoom%2Fzoomit-as3-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openzoom","download_url":"https://codeload.github.com/openzoom/zoomit-as3-sdk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253191762,"owners_count":21868803,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-03T05:01:16.732Z","updated_at":"2025-05-09T04:30:49.526Z","avatar_url":"https://github.com/openzoom.png","language":"ActionScript","funding_links":[],"categories":["API"],"sub_categories":["Other API"],"readme":"Zoom.it ActionScript 3 SDK\n==========================\n\nZoom.it is a free service for viewing and sharing high-resolution imagery.\nThe Zoom.it API provides you with programmatic access to the Zoom.it service.\nThis library lets you access this API with Adobe Flash, Flex and AIR\nusing ActionScript 3.\nYou can display the Deep Zoom images hosted on the Zoom.it using the free and\nopen source OpenZoom SDK available at [openzoom.org](http://openzoom.org)\n\nDocumentation\n-------------\nDocumentation about the Zoom.it service and API are available at [zoom.it](http://zoom.it)\n\nLicense\n-------\n\nThe Zoom.it API ActionScript 3 library was created by Daniel Gasienica\nand is licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html)\n\nExample\n-------\n\n```actionscript\n\n    ////////////////////////////////////////////////////////////////////////////////\n    //\n    //   Copyright 2010 Daniel Gasienica \u003cdaniel@gasienica.ch\u003e\n    //\n    //   Licensed under the Apache License, Version 2.0 (the \"License\");\n    //   you may not use this file except in compliance with the License.\n    //   You may obtain a copy of the License at\n    //\n    //       http://www.apache.org/licenses/LICENSE-2.0\n    //\n    //   Unless required by applicable law or agreed to in writing, software\n    //   distributed under the License is distributed on an \"AS IS\" BASIS,\n    //   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    //   See the License for the specific language governing permissions and\n    //   limitations under the License.\n    //\n    ////////////////////////////////////////////////////////////////////////////////\n    package\n    {\n\n    import flash.display.Sprite;\n\n    import it.zoom.api.AsyncRequest;\n    import it.zoom.api.ContentInfo;\n    import it.zoom.api.ZoomItService;\n    import it.zoom.api.events.FaultEvent;\n    import it.zoom.api.events.ResultEvent;\n\n    public class ZoomItServiceExample extends Sprite\n    {\n        public function ZoomItServiceExample()\n        {\n            service = new ZoomItService()\n\n            var request:AsyncRequest = service.getContentInfoById(\"h\")\n            request.context = \"I'm the successful request:\"\n            request.addEventListener(ResultEvent.RESULT,\n                request_resultHandler, false, 0, true)\n            request.addEventListener(FaultEvent.FAULT,\n                request_faultHandler, false, 0, true)\n            \n            var faultyRequest:AsyncRequest = service.getContentInfoById(\"101010\")\n            faultyRequest.context = \"I'm the faulty request:\"\n            faultyRequest.addEventListener(ResultEvent.RESULT,\n                request_resultHandler, false, 0, true)\n            faultyRequest.addEventListener(FaultEvent.FAULT,\n                request_faultHandler, false, 0, true)\n        }\n    \n        private var service:ZoomItService\n    \n        private function request_resultHandler(event:ResultEvent):void\n        {\n            var content:ContentInfo = event.result as ContentInfo\n\n            if (content)\n                trace(event.request.context, content)\n        }\n    \n        private function request_faultHandler(event:FaultEvent):void\n        {\n            trace(event.request.context, event.text)\n        }\n    }\n\n    }\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenzoom%2Fzoomit-as3-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenzoom%2Fzoomit-as3-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenzoom%2Fzoomit-as3-sdk/lists"}