i'm using cameratag.com record video on website. service can send json response server can save data database. don't know how proceed here: the documentation states please note json repsonse passed in body of post , not form parameters. here example of how parse response in ruby: data = json.parse(request.raw_post) video_uuid = data["uuid"] but don't know how data on javascript. i'm not experienced in js please bare me :) post sample: { "uuid": "00012710-4b65-0131-ffe6-22000a499ea4", "camera_uuid": "98373a20-79ee-0130-3e42-1231390fcc11", "created_at": "2013-12-20t05:25:02.000z", "percent_complete": 100, "short_code": "kktb4q", "metadata": { }, "state": "published", "recorded_from": "http://singwho.com", "publish_type": null, "formats": [ { "name...
is possible rename families in project through api. updating , standardizing our family naming convention. i'd build add-in rename families in existing project new standard names. haven't had success finding example of online. i’ve been able find family names, however, can’t rename family. i’m using c#. i tried direct way .name property , seems work. uiapplication uiapp = commanddata.application; uidocument uidoc = uiapp.activeuidocument; application app = uiapp.application; document doc = uidoc.document; foreach(elementid id in uidoc.selection.getelementids()) { familyinstance faminstance = doc.getelement(id) familyinstance; if (faminstance == null) continue; //skip element faminstance.symbol.name = faminstance.symbol.name + " - changed"; }
Comments
Post a Comment