Recently active
I'm trying to export a project and place it onto the hololens. I am wondering if it's possible to load the project without using a thingmark; is it possible to access the hololens's files and just place the contents directly into the application and have it start upon loading up Vuforia View?
Hello. Help me assign the value to the "text input" cell by the number of clicks on the "button" cell. For example: You click on the button once - cell "text input" takes the value "1". You click on the button twice - cell "text input" takes the value "2" etc.
I followed the instructions of the vuforia support tutorials "create and publish a mobile experience" (https://support.ptc.com/help/vuforia/studio/en/#page/Studio_Help_Center%2FBeginner_CreateAndPublish.html%23), but at the end the view app doesn´t react to the marker. Do I have to add any information or what could be my problem?
Hi.I'm trying to hide some 3D-Labels and 3D-Images in the Canvas to have a better overview while developing my experience, but it does not work. If I select the widget and click the "Hide Components"-Button nothing happens. Do I miss something?Is I click on the widget the Button is active but the widget still vissible??? (see attached screeshot)
Hello, How to check the CSS properties of a widget? For the help tutorial, the drop-down widget shows CSS examples like select or .item. Buttons do not tell us what properties to give when we hover or click.How do you use the buttons as well as other widgets when you want to check the detail properties?Please let me know. Below is the CSS that I have configured so that the black button becomes gray when the mouse hovers and becomes green when clicked.Not applied. .btn { background:black; } .btn hover{ background:gray; } .btn active{ background:green; } Warm Regards, SeonHo
Hello, I want to animate .SVG file in Vuforia Studio. I have .SVG file and I am able to animate it on Google Chrome, but in VS it's not working. Can anyone explain me how to animate? please find attached .svg file for reference. This is SVG Code which I am using: <?xml version='1.0' encoding='UTF-8'?> <svg xmlns="http://www.w3.org/2000/svg" style="enable-background:new 0 0 1000 1000;" version="1.1" viewBox="0 0 1000 1000" x="0px" y="0px" xml:space="preserve"> <path class="k4" style="fill:none;fill-rule:evenodd;stroke:#df871b;stroke-width:80;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" d="m 275.924,699.49118 54.75863,60.10532"/> <g class="isolate"> <path class="blend t1" style="opacity:1;fill:#dd5d20;fill-opacity:1;fill-rule:evenodd;stroke:#dd5d20;stroke-width:79.81949615;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" d="m 215.47816,252.84847 115.22634,0"/> <path class="blend t2" d="m
Hello friends, is it possible to configure the Vuforia Studio to support native variables in css? Something like this: :root { --color: 240, 240, 240;} .bg-red{ background-color: rgba(var(--color), 0.5);} In present time must write unnecessarily complicated code because: thank you for every post. Tomas
Hi, I am working with huge file and it takes more time to load the model. It is possible to download the 3D model (.pvz) on the phone and use it later? Thank you Janos
Greetings Guys, I have two selectable things in my 2D-Widget List in Vuforia Studio. If I select Item 1 and press play, it starts with the animation from the beginning which is good. Altogether my Sequence has 10 Steps. Item 1 is between Step 1 and Step 5. Item 2 is between Step 6 and Step 10. How can I jump directly into Step 6 if i select Item 2? At the moment the code looks like this: $scope.setsequenceList = function(){ $scope.app.params.sequenceList = [ { "display":"Item 1", "value":"app/resources/Uploaded/l-Creo%203D%20-%20Abbildung%202.pvi" }, { "display":"Item 2", "value":"app/resources/Uploaded/l-Creo%203D%20-%20Abbildung%202.pvi" } ] } $scope.setsequenceList(); Its like Item 2 is the same like Item 1. They both start in Step 1. What do I have to change or rather to add? I hope you can help. I would appreciate 🙂
Hello Everyone When I add second view to my experience.The menu bar automaticly is added to User Interface. I dont want this menu bar in my experiences I will navigate it by clicking buton. How Can I cancel it?
I am trying to figure out a way to display an AR model of a physical object, and have that model move like the physical object as movements from the physical object is recorded. Is this possible to do in Vuforia Studio?
Hi, I am creating an AR of big plant but i was unable to upload file on vuforia studio because it's is having file size more than 100mb and it's taking hours to upload and even it doesn't respond in the end. Can any one help me for the same. Thank you
Hi, I would like to talk to you about Vuforia Studio. The strength of Vuforia Studio is that I can make ARs quickly and easily.In addition, you can connect to the IoT platform Thingworx to realize digital data as AR. However, Vuforia Studio seems to need a lot more to create a powerful AR. Advanced knowledge of creo illustrations, advanced knowledge of JS ...And I know that connecting to Thingworx from other servers is not supported. If Thingworx is already built and used, it should be migrated to Vuforia Studio's Thingworx server, which can be inconvenient. Vuforia Studio can make ARs easily and quickly, but I do not think there are any marketing, advertising, or other strengths other than fun. Could you tell me some of the strengths that other Vuforia Studio users think?I use the trial version of Vuforia Studio, so the strength of Vuforia Studio may not reach me. Thank you. Warm Regards, SeonHo.
Where is pricing and capability information on Vuforia Studio? I filled out a form to get more info, but nobody has contacted me. I have never tried Vuforia Studio, but when I attempt to access it, I get a "Trial has ended" message. I recall trying ThingWorx a couple of years ago. I have been trying to gt information on how to upgrade my account so that I have access to Vuforia Studio, but it is so difficult to find any information about this that it makes me believe that PTC does not want any new customers.
Hello Guys, first of all, I want to thank you for your support. It is a really great community where you can learn a lot Now I try to explain you my question: The current Status looks like this: We have 2 Objects in the 2D-Widget List 2D-Widget List Item 1 has a own Sequence and Item 2 has a own Sequence. Both have about 5 Steps in total. $scope.setsequenceList = function(){ $scope.app.params.sequenceList = [ { "display":"Item 1", "value":"app/resources/Uploaded/l-Creo%203D%20-%20Item1.pvi" }, { "display":"Item 2", "value":"app/resources/Uploaded/l-Creo%203D%20-%20Item2.pvi" } ] } Now I turn a 3D-Image or Label On or Off at a specific Step (Step 1): $scope.$on('$ionicView.afterEnter', function(event) { let view = event.targetScope.view; console.log('viewContentLoaded', view); $scope.$watch('view.wdg["model-1"].currentStep', function (stepVal, oldVal) { console.log('model step changed', stepVal); $timeout(function () { $scope.changeImage(stepVal); }, 10); }); });
原先行動裝置可以支援空間辨識,但現在拒絕了Vuforia srudio的空間辨識來自於新版本8.4.4(8.4.4.4392) 我的行動裝置為 三星S10 + Android 9 我發現了行動裝置的Vuforia查看版本為8.4.4.2203,不知道是否影響 原始移動設備可以支持空間識別,但現在Vuforia srudio的空間識別被新版本8.4.4(8.4.4.4392)拒絕 我的移動設備是 三星S10 + Android 9 我發現移動設備的Vuforia查看版本是8.4.4.2203,我不知道它是否會影響
I have a use case where, rather than displaying a model in tracked AR, I would like to display it in the 2D view where a user could interact with it by playing through a sequence and rotating the model. I am aware other software could do this, but I would like it embedded in a vuforia studio experience without having to navigate elsewhere. For reference, this would be very similar to the <model-viewer> component that google has output without the need for converting it to AR. https://googlewebcomponents.github.io/model-viewer/
Hi. Is there some already progress in supporting other CAD-formats in Vuforia Studio? I found a discussion from 2017 where this was promised in future releases. For example a integration of CATIA-Composer file support would be very handy, because we already got several reduced and animated models within this format. Another way would be using the Vuforia engine with Unity in some way, but that would be very inconvenient.
We have come across an interesting use case where we need show how a Revascularization device function to remove a clot from the human brain. Has anyone done an AR experience around this in Vuforia Studio? I am looking at simple scenario as a first step. I have been told that we can not do achieve this using Vuforia Studio. thanks.
hi, i have recently completed my AR fundamental course, i just wanted to know that how can we experience our AR apps without vuforia view, like cant we create our seperate app which can be used to view AR?
I want to capture the value of this property by JS Vuforia.This is the code I am using but it is giving error: $scope.app.mdl['VV01-GI1_AC01'].properties['Temperatura']
Unfortunately, in the Vuforia Studio Documentation there is no complete List with the possible events which could be handled JS. Therefore for the first time this article tries to provide additional Information about known events : 1.) modelLoaded - is not required any more because the UI allow directly to specify this event. ... $rootScope.$on('modelLoaded', function() { //do some code here } ) .... 2.) Step completed example: scope.$on('stepcompleted', function(evt, arg1, arg2, arg3) { var parsedArg3 = JSON.parse(arg3); console.log("stepcompleted stepNumber="+parsedArg3.stepNumber + " nextStep="+parsedArg3.nextStep); $scope.app.stepNumber=parseInt(parsedArg3.stepNumber); $scope.app.nextStep=parseInt(parsedArg3.nextStep); $scope.app.duration=parseFloat(parsedArg3.duration); }); 3.) Event - stepstarted: ... $scope.$on('stepstarted', function(evt, arg1, arg2, arg3) { var parsedArg3 = JSON.parse(arg3); console.warn(arg3); console.log("stepstarted stepNumber="
With various Augmented Reality applications in PTC's product portfolio the technical aspects and use cases could leave you with some questions. Did you know that we do not only have a full blown Augmented Reality SDK but offer also the possibility for a easy to use integration with live sensor data coming in via ThingWorx? This blog post hopefully clarifies some of the questions around what can be done with Vuforia SDK and Vuforia Studio. Welcome to the real world In the real world, or the "real reality" (sounds weird, but it's basically what you can see with your own eyes - no augmentation involved) there are various objects. These might look the same - or not. Just take the following example... that's what we perceive when looking at things around us: These objects are recognized via shapes, contrasts (black & white) and whatever defines the actual form. Vuforia SDK is able to recognize those objects via it's built-in object recognition ca
Hi, how can I repeat a sequence? JS code would be appreciated. Many Thanks Janos
Using Connection Filters for state-based rendering and value formatting State-based rendering of properties that come from user inputs or from connected ThingWorx data is a common requirement. Think about the following scenario: from ThingWorx you get the state of a as one of these values: [ OK | At-Risk | Issue ]. You would like to visualize it with a 3D image or a changed 3DGauge icon. You can achieve that easily with a Vuforia Studio functionality that is often overseen: The Connection Filters. With connection filters you can achieve a lot of very nice a common features, mainly: number and date formatting value pre- and postfixing (specifically units for numbers but also anything else) state-based formatting, e.g. changing the image or style based on a number change Here is what I mean in practice: Step 1: Step 2: Here is the stateBasedStyling Connection Filter content: return value < 3000 ? "fill:rgba(255, 255,
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.