Recently active
Hi everyone. Our Customers asked me if it's somehow possible to make the 3D-Labels 'draggable'. In some cases / viewing angle , they're covering the model. Is this possible? Greets
Hello, Just recently started my tripe for Vuforia Studio and I am trying to log in to my Dev portal with in the web interface but it keeps telling me "Username or password is incorrect. Check your credentials and try again." I have tried my username and my email in the username field but no luck. This is the log generated at the time of log in: [2019-06-06T14:35:26.849Z] error: [twx-studio:auto_configure] 401 GET https://trial.studio.vuforia.com/api/v1/service_details Unable to retrieve service details. Response not 200 OK. "Not authorized"[2019-06-06T14:35:26.850Z] error: [twx-studio:index] unhandledRejection Unable to retrieve service details. Response not 200 OK.[0mGET /api/autoConfigure [33m401 [0m241.668 ms - 38[0m
Hello, I want to push different types of data from VS to TW.(Login Details/ PDF/ Screen Capture) Could anyone please explain me that how can we push data to TW? ExampleHow can I send verification details to TW as per image? I want to display this data on Thingworx Mashup. (Whoever login or verify this detail)
Hi, I am trying to achieve functionality similar to the vuforia studio motorbike welcome experience. I want to be able to press a 3D image button, and have a section of my 3D model highlighted a different colour. There are three different sections that I want to have their own button. My process so far has been: create 3 figures within Creo Illustrate, one highlighting each part. I then uploaded the .pvz to studio, along with the 3 .pvi files individually and did not select a sequence in the model widget. I then added the following lines to my Home.js $scope.firsthighlight = function() {$scope.view.wdg['model-1']['sequence'] = 'app/resources/Uploaded/l-Creo 3D - TestFigure1.pvi';$scope.view.wdg["model-1"].svc.play = true; with the function call firsthighlight(); in my click js for the image button. This seems to do nothing and I'm not sure why, any help would be appreciated! Thanks
Hi, 1) Can you tell me if realwear HMT-1 support Vuforia Chalk?(Yes/No) 2) If it does, from where can i get the apk? 3) Is it free or not? 4) What are the procedures for licensing? Thanks & regards, Abhijeet Gupta
As I understand, Vuforia Studio allows you to share an experience using an Experience QR Code as well as a Experience URL. Is it possible to customize the Experience URL? Thanks! Laura
How do I copy and paste artwork into Creo "Illustrate" from other tools such as Adobe Illustrator?
Hello. I am trying to overlay a simplified (laser-cut acrylic sheets) real-world-mockup with CAD data. With just one ThingMark, I experience problems with occlusion by my mockup. Therefore 2 questions: Can I somehow use several ThingMarks? For example, I can put 2 ThingMarks on my mockup and know the x, y, z positions of each one, so once one of the two is occluded, the other one will come into play If I have a CAD model of my simplified mockup, can I somehow convince Vuforia to track this real-life-mockup and overlay it with my virtual CAD data? Thanks for the support, best wishes, Jens
Hello, I am currently working on a HoloLens experience which will be used in large physical space and the users need access to some of the information no matter whether they are near the loaded experience or not. The HoloLens Start menu and the Vuforia Studio Experience selector menu uses the concept, which Microsoft calls tag-along. Is it possible to include/edit this property for a studio 3D Label? Thanks in advance!
Is there a significant difference in model target tracking between the Model Target Generator for Vuforia Engine, the model target tracking in Vuforia studio and the tracking from the Vuforia Object Scanner app? Currently we are using the model target tracking built into Vuforia studio and it isn't working very well. I'm wondering whether one of the other two approaches might have better results.
Hi , In Vuforia studio when I am using Model Target for Holoens, Tracking and size are correct as per real Hardware, but as my view changes the 3d Model is not stationary, similar like using on Image target. Is there any way to get Stationary properties for Model Target? Thanks
I would like some clarifications regarding the use of experiences created in Vuforia Studio by external users (clients).1. How do you create accounts for these users? I tried to look at Vuforia's e-support and app settings, but I didn't find anything2. How can I manage the passwords and experiences that these users can access? If on a thingmark I have more experiences, can I limit access to only some of these? Can I change my password and access possibilities after they have been configured? Such as?3. Is the Experience Service already configured by default to be able to "share" the experiences created or do we need to activate it in some way?
Hello there, folks! I've been successfully able to update a boolean value in Thingworx from Vuforia Studio without problems. I've made the correct bindings and everything, as you can see in this post: https://community.ptc.com/t5/Studio/Writing-Values-to-Things-From-Vuforia/td-p/616754 However, I'm not being able to update the same value from a script command (such as the click of a button). Below, an example of the syntax I'm using to update the values: $scope.app.mdl['thingName'].properties['booleanProperty'] = false Nothing is being shown in the app logs or any other ones. Am I doing something wrong?? Thanks!!
Hello, everyone! This question is quite simple: From an AR experience (Vuforia), I want to change a Thing property (in Thingworx) only if a condition is attended. The problem is I have no idea about how the syntax is. For example: In Vuforia Studio > Home.js: if(waterTemperature == 50) { ... [change a thing property from false to true]; ... } I assume it would be something like "$scope.thing[ThingName].propertyvalue = true", right? Thanks!! 🙂
Hi, we can do many tricks with Javascript in Studio and most of the times it's just a matter of copying & pasting the right code. I'd like all Studio users, not just coders, to benefit from this, and thought I could drop here a snippet to blink a widget. I call this a quark - from the particle physics standard model - and not atom, because it's really a smaller building block than an atom Blinking a widget can be useful, for example, if you are not using Creo Illustrate to create a sequence but still want to draw the user attention to some item in the scene. Here's the Javascript code to copy & paste to your Home.js: (to Javascript coders: I'm using modern Javascript syntax, don't be frightened by that ) $scope.blink = function(widget, times, interval) { let w = (widget.visible !== undefined ? widget : $scope.view.wdg[widget]); if (!w || w.visible === undefined) { throw "Cannot blink this widget"; } $int
I use trial version of Vuforia Studio and I cannot login on Vuforia view too.
Hello, I'm running the free trial version for vuforia studio and very new to the mobile app. I am experimenting and wanting to display a CAD model on a QR code that I already have. Would this be possible for me to setup and if so how do I go about doing it? Any pointers or help if I am able to use this example of the QR code I have already or is it not possible? (Not sure why it flipped sideways sorry)
Does someone know the (JSON-)format of the Data-field of the Data Grid - Widget. I want to use it without an Thingworxs-Service. At the moment I'm using the ionic-popups' template-field for showing a table in it. There it's possible to put html-code into.Is there another way to use html-code? Some widget?
At a time Can we use two Different CAD Models in vuforia studio with 2 different sequences to run with the help Javascript? if it yes ...how?
Hello, I am wanting to change the color of my model but don't quite know where to do this in Vuforia Studio? I know Unity allows you to make a Material and then can turn that into any color you want to slap onto the desired model. I was wanting to know how can I change my model color? Thank You,
Hey Guys, currently I have a Problem with the Model Target in Vuforia Studio. (My Model is a little bigger than a car). When I try to track a specific part of my real model (It's a very simple square nothing complicated), my 3D-Model shortly appears and disappears again. After this scenario I have no chance to track my real model again. I have to restart Vuforia View to see that short appearance again. I also tried Thing Marks, which worked! But I would love to use a Model Target. I also turned these two things on 3D Container Is my Model just to big? Do you have any Idea what the problem could be? Any Ideas are appreciated 🙂 Thanks, Yasar
I've been trying to reference a widget the first time a view is opened, but when I do the console logs it as undefined. For a view, are widgets defined after the first time the js runs? Thank you
Is it possible to create bindings with js during runtime?
Who can I select items in widgets like "select" or "list" via javascript? I want to achieve something like, click a next button and select the next item in a list. Can I somehow utilize the "clickitem" event, or simulate a click otherwise to select a specific item in the list?
In the 2D Canvas it is possible to switch the mobile devices. As I´ve got a Huawei P Smart, which is not available in the predefined selection, I´d like to use the custom resolution, but I´m not sure what measures to put in. The resolution that is given in the phone information seems giant comparing to the others... Could anybody explain me how/where to find these measures? (Or do I need them at all?) Greets and thx
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.