Vuforia Studio
Recently active
Hi, I would like to have a AR visualization with the explosion view ( assembly sequence ). 1. I have worked on Studio AR. PLease tell me how and where to start with the sequencing of a machine, 2. Which format to use in the thingworx studio (if I can download the model from GrabCAD community)
I'm trying to make use of the "Select" widget, AKA dropdown picker. Does anyone know what format the list values need to be in? I can state that this is not it ["Value 1", "Value 2", "Value 3"]
I want to use value change event of select widget,but tried with servral times and get nothing.Does any body tried with it?
Hello everyone,How do i view a pdf file into experience with a mobile android? I tried to use this procedure $scope.popup = function() { var options = { cssClass: 'popup-custom', title: "PDF!", template: "<iframe src='app/resources/Uploaded/prova.pdf' frameborder='0' style='width: 100%; height: 600px'></iframe>", okText: "Close" } var popup = $ionicPopup.alert(options); popup.then(function(res) { //do something })};In preview the pdf file is visible, but with the thingworx viewer the screen turns out to be white.I also tried using a hyperlink widget, but if I use a file that is not on the Resources it works, if instead I use a file into resource repository source 'app / resources / Uploaded / NomeFile.pdf' on thingworx view the uplo
Hi everyone,I'm trying to show a PDF file in my thingworx studio experience, but i did not see any widget to do this.I tried to import a PDF file in resources folder, create a $ionicPopup in the javascript file and in the template section i wrote HTML code to show PDF file, like this:$scope.popup = function() { var options = { cssClass: 'popup-custom', title: "PDF!", template: "<iframe src='app/resources/Uploaded/prova.pdf' frameborder='0' style='width: 100%; height: 600px'></iframe>", okText: "Close" } var popup = $ionicPopup.alert(options); popup.then(function(res) { //do something })}In preview mode I see my PDF file correctly, but if I use a mobile device (with the Thingworx View app), I don't see my PDF, only white area.. I thin
Mechanism Concept in Vuforia Studio- How to make rotation more easy When we try to rotate a model or 3d model item about an axis it seldom rotates about the correct axis as we want. So in this case we can help with some mathematical calculation. For example having a door assembly: and when we try to rotate the door model about 60degree it rotates undesired on the wrong axis. So the first question is which is this axis and how to change it. When we have a PVZ model we cannot really change it! We can use some mathematical relation to get the correct appearance . In this case the correct javaScript relation should be : ... $scope.simple_door_slider_change = function (angle, door_length) { var angle1=angle; var l_door=door_length; var angle1_rad=angle1*Math.PI/180.0; $scope.view.wdg['modelItem-door-asm']['rx'] = angle1 ; $scope.view.wdg['modelItem-door-asm']['y'] = 0.0 - l_door*Math.sin(angle1_rad); $scope.v
I will call a service automatically when a view is loaded. I try this via window.onload or document.onload but this will not work. How can I realized this?
Hi, I want to make an experience where modelItems can be hidden by tapping on them, and where I have a restore-button that shows all modelItems again. I am using a simple js for hiding the modelItems: $scope.Hide= function(val) { $scope.view.wdg[val]['visible']=false; } This works fine, by using this call: Hide('name-of-the-modelItem') So far, so good. However, for showing all models I made a modelItem of the complete model, and I called this function (almost identical to the Hide function): $scope.Show= function(val) { $scope.view.wdg[val]['visible']=true; } But... this does not work on the modelItem that I made of the complete model, only on sub-assy-modelItems. Is this a bug, or are the visible-properties of the sub-modelItems blocking the correct display of the 'visible'-property of the total-model-modelItem?? The point is, I could call the Show-function for all sub-modelItems one by one from a new function, but that's more work, more code... and this e
I would like to make one experience that has one view that is model tracked, this shows spare parts and other stuff. But also have another view that is spatial tracked so i can "show room" a version of the product for people that don't have the physical bike in front of them. As it stands now once you add a spatial tracker to any view the experience will no longer load on devices that do not support spatial tracking. I would like the functionality that on an unsupported device you can load the experience and use views that are not spatial tracked but if you try to go to a view that is spatial tracked you would get an error saying that was not supported.
Hello, the main reason, why I will use an animation, is to show exact mechanism pricipe in AR. I have this mechanism builded in Creo Parametric (Mechanism Design) and exported to *.fra file, which can be imported to Creo Illustrate. But import from *.fra file make only an animation, which can not be recorded in TWS. Principes to create Animations and Sequences are similar (at least in Creo Illustrate 4.xx), so is there any way how to play animation in TWS or is possible to convert whole animation to one step of sequence? Thanks for every tip. Tomas
Hello, I have noticed many others have flagged this issue but I cant seem to find a resolution in all the posts. I have installed thingworx studio trial version 30 days trial period. When I'm trying to publish the project it's asking for a "Authentication Required" pop-up. After giving the credentials, it is asking for the same authentication again and again. Below is some code from the log. Any help would be appreciated. Thanks Kind Regards Giuliano Username : mr.ora.holo@gmail.com[06/11/2018 19:12:30] warn: [twx-studio:gitUtils] nodegit is not installed.[06/11/2018 19:12:36] info: [twx-studio:versionCheck] Version Check will use the update location: https://studio-download.vuforia.io/downloads/Studio.application[06/11/2018 19:12:36] ar-extension version 8.3.0.3345 (1.26.1125)[06/11/2018 19:12:37] info: [twx-studio:index] Studio Ready: listening on 127.0.0.1:3000[06/11/2018 19:12:42] [0mGET /home [32m
Our prospect builds rather large plants and wants to have a functionality that makes it possible to walk through an AR experience by tapping waypoints or buttons that bring him to different location within the model. Why?: Often there is not enough room to walk around long distances. Doing products demos for a product is easiert when it is possible to jump to different positions in the model. Thanks for your suggestions.
Hello, I am trying to create a universal function which return name of a widget where is called: Can be used for this example a keyword this ? $scope.getWidgetName = function (){ return this.view.wdg.studioID; //something like this } Thank you for answer. Tomas
I have seen the Medium Range-Missile experience in welcome experience demo,where i will get the project file of the same??
Hey guys, I have a small 2D application with a button. If I click the button the js-methode connectToTWX will call: $scope.connectToTWX = function() { var xhttp = new XMLHttpRequest(); var url = "http://xxxxx:8080/Thingworx/Things/RequestThing/Services/SayBla"; xhttp.setRequestHeader("Content-Type", "application/json"); xhttp.setRequestHeader("appKey", "xxxxxx"); xhttp.setRequestHeader("Accept", "application/json"); xhttp.open('POST', url, false); xhttp.onload = function () { if (xhttp.readyState === xhttp.DONE) { if (xhttp.status === 200) { console.log(xhttp.response); console.log(xhttp.responseText); $scope.app.params['ServiceResult'] = xhttp.responseText; } } }; xhttp.send("{ }"); } This code send a post-request to a twx server but nothing is happen. I don't get an error or something in log of the twx server. I'm not sure what happen or what can be wrong. PS: I can request the server via Request Maker from my develope pc and this works.
Hi,we would like to supporting our clients with individual AR Applications without sending and using the marker. Therefore the library function is a great solution for this because of the better overview and / or the small previews of each application. Problem is that we have different clients which we want to support with different experiences. Is it somehow possible to “define” some users within the library? Greetings Raphael
I am getting an error message when trying to install Thingworx Studio, see attached screenshot and log. Can anyone advise how to fix this? [05/28/2018 09:56:32] Studio Version 8.2.3 (8.2.3.3224)[05/28/2018 09:56:32] Status Message: Version 8.2.3 (8.2.3.3224)[05/28/2018 09:56:32] Status Message: Performing setup (Application)...[05/28/2018 09:56:32] Unzipping mbdist.zip to C:\Users\gavin.donald\AppData\Roaming\ThingworxStudio\studio-download.vuforia.io\[05/28/2018 09:56:33] Skipping Zero Byte File: dist\client\extensions\css\[05/28/2018 09:56:33] Skipping Zero Byte File: dist\client\extensions\html\[05/28/2018 09:56:33] Skipping Zero Byte File: dist\client\extensions\images\[05/28/2018 09:56:33] Skipping Zero Byte File: dist\client\extensions\js\[05/28/2018 09:56:38] Status Message: Performing setup (Libraries)...[05/28/2018 09:56:38] Unzipping mbmodules.zip to C:\Users\gavin.donald\AppData\Roaming\ThingworxStudio\studio-download.vuforia.io\[05/28/2018 09:59:29] Skipping Zero Byte File:
Want to change exisiting model to new model once navigate to other page.
I have a Link widget that should open my native email client. I use this mailto:someone@example.com?Subject=Hello%20again (source: https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_link_mailto) and on iOS the email clients opens but on Android nothing is happening. However if i go in chrome to the link on Android my email client is opening. Does anybody has some idea how to fix this?
Hello, I notice that Microsoft, together with companies like Samsung, Acer, Dell, HP etc, released a set of Mixed Reality headsets https://www.microsoft.com/en-us/windows/windows-mixed-reality So I'm wondering if Studio is compatible with these new devices (perhaps is the same as hololens?) and if View is already available for them, if not, there is a plan to make them available? Thanks Felix
Hi, I get a problem when using RealWear HMT-1. I have published my AR experiences, and they work on my mobile. When I try to use them on my AR glasses it doesn't work where I get the following error: Loading experience failed. Refer to the log file for details. Any ideas?
I've been searching for this answer for the last couple of days, but have not found a solution. After downloading the trial version of Thinkworx studio, I've ran through all the getting started tutorials. Three demo Thingmarks come with the trial Studio download. My question: Where can I create new Thingmarks that I can use inside Thingworx studio? Unless I'm missing something the three Thingmarks that came with the trial only work with the models that came with the trial. Any advice will be greatly appreciated!!! Also, is there any way to connect a Vumark (Vuforia) instead of a Thingmark? Thanks, Charlie
I bind the play stopped JS event with one of my model's properties but now I am looking for a way to remove this binding property and I know that deleting the model is one solution but I don't want to delete this model, everyone here knows another way to unbind an event property?
Does anyone know of a way to dim the image/view that is coming from the device camera? I'm working on an experience to show spare parts in AR an it can be hard to see some small parts as they don't stand out against the live image. If i could somehow reduce the brightness of the live image it would help these parts pop more.
Hello Everyone, I am utilizing a slider to adjust the scale of an object in order to essentially "zoom" in and out for a better view. The problem here is that the existing 3D labels remain in the same location thus not correlating to the object properly. The question here is can I get the labels to scale with the object? If not, could the labels somehow be linked to certain co-ordinates so that they stay in place while the object changes scale?-Thank You
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.