<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Automate AR experience creation process in Vuforia Studio</title>
    <link>https://www.ptcusercommunity.com/t5/Vuforia-Studio/Automate-AR-experience-creation-process/m-p/647326#M7482</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We want to create AR experience automatic so is it possible? if yes then how?&lt;/P&gt;
&lt;P&gt;i.e. if we create one template it includes target information and 3D model. its a basic use case to just import 3D model and display on device view app.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So we want to make this process as automatic so designers work is to only see the experience and not to create experience.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So pls can you let me know, how we can achieve this? through any API or other method.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Prashant Pandarkar&lt;/P&gt;
&lt;P&gt;Pune&lt;/P&gt;</description>
    <pubDate>Tue, 04 Feb 2020 05:18:07 GMT</pubDate>
    <dc:creator>ppandarkar-2</dc:creator>
    <dc:date>2020-02-04T05:18:07Z</dc:date>
    <item>
      <title>Automate AR experience creation process</title>
      <link>https://www.ptcusercommunity.com/t5/Vuforia-Studio/Automate-AR-experience-creation-process/m-p/647326#M7482</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We want to create AR experience automatic so is it possible? if yes then how?&lt;/P&gt;
&lt;P&gt;i.e. if we create one template it includes target information and 3D model. its a basic use case to just import 3D model and display on device view app.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So we want to make this process as automatic so designers work is to only see the experience and not to create experience.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So pls can you let me know, how we can achieve this? through any API or other method.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Prashant Pandarkar&lt;/P&gt;
&lt;P&gt;Pune&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2020 05:18:07 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Vuforia-Studio/Automate-AR-experience-creation-process/m-p/647326#M7482</guid>
      <dc:creator>ppandarkar-2</dc:creator>
      <dc:date>2020-02-04T05:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Automate AR experience creation process</title>
      <link>https://www.ptcusercommunity.com/t5/Vuforia-Studio/Automate-AR-experience-creation-process/m-p/647391#M7492</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/183531"&gt;@ppandarkar-2&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am not sure if I know what you want to automat ate because somethings are very difficult be created without the UI.&lt;/P&gt;
&lt;P&gt;But in generally you can have a project template- this is created project which contains your start template with all thing what should be contains by your new project. Maybe you could use a set of templates, depending on the particular application case&lt;/P&gt;
&lt;P&gt;You can use some script e.g. to&lt;/P&gt;
&lt;P&gt;1.) add some files, models to a project resource/Upload folder&lt;/P&gt;
&lt;P&gt;2.) you can /strongly not supported/ edit the &amp;lt;projectName&amp;gt;\src\phone\components\Home.json to add some feature using the json syntax&amp;nbsp; /but this will be very advance technique and is not clear if you will get the correct appearance&amp;nbsp; or even project corruption/&lt;/P&gt;
&lt;P&gt;3.) you can add some javascript to the&amp;nbsp;&amp;lt;projectName&amp;gt;\src\phone\components\Home.js&lt;/P&gt;
&lt;P&gt;&amp;nbsp;or &amp;lt;otehrView&amp;gt;.js&lt;/P&gt;
&lt;P&gt;where you can do some data assignments or function definitions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;...
//add here this  which specific for the new project
 $scope.app.params["name"]= 'myTest-NAME' 
$scope.view.wdg['timeSeriesChart-2'].labelsField= "timestamp"
$scope.view.wdg['timeSeriesChart-2'].valuesField=  "SENSOR10"
//
....&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think the point 3.) is better then 2.)&amp;nbsp; but here you will only be able to change the values of widget properties in the project / text , visibilities etc.&lt;/P&gt;
&lt;P&gt;4.) publish the project using e.g. the curl command to a experience service - you need to have a admin permission on the server. Here some possible actions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Publish a project:
curl -u user:password -H "X-Requested-With: XMLHttpRequest" -F "File=@MyProject.zip"  https://localhost:2019/ExperienceService/content/projects/
Update an existing project:
curl -X PUT -u user:password -H "X-Requested-With: XMLHttpRequest" -F "File=@MyProject.zip"  https://localhost:2019/ExperienceService/content/projects/myproject
curl -u user:password -H "X-Requested-With: XMLHttpRequest" -F "File=@MyProject.zip"  https://localhost:2019/ExperienceService/content/projects?replace=true
Delete an existing project (replace "myproject" with the name of the project to be deleted):
curl -u user:password -H "Content-Type: Application/JSON" -H "X-Requested-With: XMLHttpRequest" -X "DELETE" https://localhost:2019/ExperienceService/con&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of course this above describe only one possible way what I see - maybe there are other better options available.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2020 11:08:38 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Vuforia-Studio/Automate-AR-experience-creation-process/m-p/647391#M7492</guid>
      <dc:creator>RolandRaytchev</dc:creator>
      <dc:date>2020-02-04T11:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Automate AR experience creation process</title>
      <link>https://www.ptcusercommunity.com/t5/Vuforia-Studio/Automate-AR-experience-creation-process/m-p/648978#M7542</link>
      <description>&lt;P&gt;Accounts receivable (AR) automation software helps companies optimize their customer invoicing and payments processes. Its purpose is to ensure that customers pay for the goods or services they received&amp;nbsp;&lt;A href="https://www.krogerfeedback.ltd/" target="_self"&gt;&lt;SPAN data-sheets-value="{&amp;quot;1&amp;quot;:2,&amp;quot;2&amp;quot;:&amp;quot;krogerfeedback&amp;quot;}" data-sheets-userformat="{&amp;quot;2&amp;quot;:769,&amp;quot;3&amp;quot;:{&amp;quot;1&amp;quot;:0},&amp;quot;11&amp;quot;:3,&amp;quot;12&amp;quot;:0}"&gt;krogerfeedback&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 10:44:18 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Vuforia-Studio/Automate-AR-experience-creation-process/m-p/648978#M7542</guid>
      <dc:creator>Vazquez</dc:creator>
      <dc:date>2020-02-14T10:44:18Z</dc:date>
    </item>
  </channel>
</rss>

