Recently active
Has anyone else experienced this glitch? An image widget is fine in the Vuforia Studio Canvas, but in the Preview it displays as transparent static (see attached). I tried to solve this issue by using a jpg instead of a png, but the issue happened again later to a different image widget that was already a png. So I changed this one to a jpg, and it was fine, but the original image (now a jpg) turned to static. It seems like a glitch in the software - especially since it displays fine in the Canvas & on the Hololens.
I have a model with 2 sequences. Right now I switch between the sequences via a 2D select widget. What I am trying to achieve is that if a choose one of the sequences a popup with a text will be visible and switching back to the first sequence the popup will disappear. I have tried different variations with no success and hope someone can help with see whats wrong. At first I have this code snippet: $scope.$on("$ionicView.afterEnter", function(event) { $scope.app.view.Home.wdg['select-1'].value = 'l-Creo 3D - Standard View.pvi' }); This to set which view is selected to begin with, also this is the view that I want no visible popup. Then I have this code snippet which follows and make the function "sequencemode": $scope.sequencemode = function(){ if($scope.app.view.Home.wdg['select-1'].value = 'l-Creo 3D - Standard View.pvi'){ $scope.app.view.Home.wdg['popup-1'].visible = false; }els
Good morning, i have a question if is possible to connect vuforia experience server with thingworx in docker also if exist any way to use vuforia studio in linux
Hi Everyone, I just created a new empty 2d View in Vuforia Studio. I added a footer with a grid layout inside but the grid layout does not cover the full width. (see Screenshot) Now I would like the footer to stretch full width with a 3 Column Layout with elements on the left, right and center of screen. How can I achieve this?
Dear Help, I’m working with the HMT-1 from realwear and I am trying to get a demo going for the headset. I’ve downloaded and installed the Vuforia app for the HMT-1, but I can’t really do anything with it. Isn’t there supposed to be something that pops up in the viewfinder of the hmt-1? I have a demo that I am trying to show off with your software to internal clients on Thursday and could really use a hand here. I’ve tried the message boards but they aren’t really all that helpful. I’ve also gone through the tutorial for the realwear hmt-1 that you have online, but all that does is walk me through installation on the hmt-1. I’m having trouble actually seeing anything via the hmt-1. I know this is a very disjointed message and that my problem isn’t well spelled out here, my apologies. Thank you for any and all help, I really appreciate it. Sincerely, Rob Heffern
Hello, Currently having the issue of publishing on the company server. Works when I am home but due to the nature of my work, I cannot work off the company network. I have found similar articles to mine and have performed everything they recommend. https://community.ptc.com/t5/Vuforia-Studio/Unable-to-publish/m-p/596273 https://www.ptc.com/en/support/article?n=CS269453 I am able to connect to https://studio.vuforia.com/home/ and login just fine. When I type my ES URL (https://6f0fc95509e8c8b0.studio-trial.vuforia.io/) into the web browser, I received the following message: {"message":"Not Found","errorCode":"","error":{"status":404}} When I check my listening ports, the only thing running is node.exe. My company does not use a proxy. Currently at a lost with IT to get this running and without being able to publish, the trial proves worthless. Can anyone assist with this issue? I have also attached my log. Thank
Hello all, Is possible to set orientation to landscape mode when ever experience is opened in mobile/tablet ? /VR
Hey, I have some trouble reading an XML File with Vuforia Studio. The first way is the XML DOM. I have downloaded the library from here and Imported the .js files like: $scope.app.fn.loadResourceScript("Uploaded/dom-parser.js"); Do I have to create an Object from the class dom-parser in my Home.js to call the methods? Another way was to read the XML File with the XMLHttpRequest() and save the content in a variable. This is working fine. In the XML File I have the Elements SopItemTitleText (Title), ItemText (Text, like a description) and Filename (name of an image). The ItemText contains sometimes line brakes. I was reading the string of the XML File with e.g. string.match(/<SopItemTitleText>(.*?)</g); and save its content in an Array. I delated <SopItemTitleText> and < from every entry of the Array. Unfortunately string.match(...) doesn't work, when the <SopItemTitleText> contains linebreaks. Is there a way to import a library in the trial
Hi , Can we add a new user that can access the Restricted ( Requires Authentication) AR Experience created in Vuforia Studio. There no option to add a user into Thingworx Composer
Hey there, I want to rotate the link in such a manner the one end should move and other will remain fixed with respect to its co-ordinates but i am unable to achieve this. Can anyone help me with this.
Hi, As we saw some of examples in vuforia view app, so want to know the tutorial to create similar apps. In one project Bike, it is zoom in-out working, rotation working, it stays at one place only so want to know the steps. As i tried it on one component with spatial target but it is not staying at one place if we move it is also moving. we can not able to zoom in-out in that. So pls suggest. - Prashant Pandarkar
Can I zoom in ( out / translate ) the image with finger gestures? i display manual image ( 2D ) and i will use finger gestures zoom in / out / translate is it possible?
Can you please help me to link multiple audio files to a single button, so that on pressing the same button I can play multiple audio files assigned to different animation sequences, to create AR in vuforia studio
Hey there, I am trying to change the color of when when it is pressed but unfortunately am unable to do it till now.
I am working on a use case where i need to insert a 3d object into the experience dynamically on click of a button. Same 3d object needs to added in the experience when the button is pressed multiple time. Is there any way to get this done?
As soon as I enter code in Home.js in my project, I am not able to view preview of my project. The code is: var ydelta = 0;$scope.$apply(function(){$scope.app.params.ypos = Math.max(0.045, $scope.app.params.ypos + ydelta);}); $scope.goDown = function() { ydelta = -0.005; } any help will be appreciated.
Hi, I want to change x,y,z axis of modelitem when i click on it and swipe its position to any other position.(just like picking that particular object and placing it whereever in need inside canvas. can we do that using .js code . if so please help me with the code. thanks in advance
To reference a function on a voice command or gesture use viewCtrl.myFunction() where "myFunction" is the name of your function. Check out the Vuforia Studio Help Center for detailed instructions on creating a HoloLens experience using gestures.
ThingWorx properties can be updated from a Vuforia Studio experience. Below is a simple example: Create a test Thing and a test property for the Thing in ThingWorx : Create a service for the Thing with text input parameter(Test) and add the below code to update the TestProperty value: Click Done and Save the Thing In Vuforia Studio, Add a Text Input widget and a Button widget in 2D canvas Add the service of the Thing in the External data Panel Now, bind the Text property of the ‘Text Input’ widget to the Test Parameter of the service as shown below: Bind the Click event of the Button widget to the Service to update the value of Thing property in ThingWorx Test the experience by clicking Preview. Enter text in the Text Input widget and click the button. The Thing property should then be updated. If you are creating a public experience, ensure that run time permissions for the es-public-access user have been assigned to
Good morning, while I was trying to debug and run my Vuforia Studio Projekct with Javascript, this error popped up (see studio_error). Also the console from Google Chrome showed me this (see Error_console). I was trying to read from an inputfield and paste it to the console. Actual I want to read from an .txt File, but in this step, I just want to have the output in the output text field. This is my Javascript&colon; $scope.einlesen = function(){var inText = $scope.app.view['Startseite'].wdg['textInput-1'].text; //Text aus dem Inputtext holen und in die Variable inText speichernconsole.log("Eingelesener Text: ", inText);}; I call the function when clicking on a button. Furthermore: Is there no documentation for $scope, $element, $attrs, $injector, $sce, $timeout, $http, $ionicPopup, and $ionicPopover, how to use them, or a general documentation for Javascript with Vuforia Studio, because using "normal" Javascript result every time in a crash, so I have to
I have number of published experiences which were working perfectly yesterday. It's animated instructions step by step. Today all of sudden when I try to view the experiences and move between steps the View app crashes. Sometimes from the first step, and others from second, third. I tried to use different trial account and publish the experience again, that doesn't resolve the problem. I tried Vuforia View on Android phone, tables and ios phone as well. All produce the same issue. I checked the log file found: Got unknown content type from server, UNKNOWN SERVER ERROR! Any help? Attached is the log file from Android phone.
Hey, after debugging a programm reading an XML File I got this error code (see attachement). Can someone say what I have to do? On the console, I don't get any error massages. Thank you PS: I left some space at the end of the document. After this, is the output after cklicking on Preview in Vuforia Studio.
I'd like to invoke the start scan service automatically when my view is loaded. I try to use the code following : $scope.init = function(){$scope.app.fn.triggerWidgetService('scan-1','startscan');}; angular.element(document).ready($scope.init); but it's not working. it's working when I use with show popup service or another service but only scan service is not working. I'll be happy if someone can help me. Thank you.
Is there a way through scripts to call an experience from within another experience thnx
Hi, As the topic is named I want to change the text in the a 2D-widget not by writing in the label field in properties window, as seen in the picture but rather I would like to change it in the home.js script. I was thinking of writing a code like this: $scope.app.view.Home.wdg['label-59'].text = 'hello'; OR: $scope.setWidgetProp( "label-59", "text", 'hello'); Tried different variations, but none of them seemed to work. I must miss something, does anyone have any suggestions?
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.