Vuforia Studio
Recently active
Hello, I have requested for an extention of my vuforia Studio license almost a week back as we are currently testing your softwares potential in our organisation. However fail to get any response with this regard. I would like to know whether this is possible and request an email back asap.
hi everybody , I saw this video and I wonder how they activated the voice commands to appear or disappear images , any ideas? https://www.youtube.com/watch?v=JrZUXxcfaA8
Hello, I am working with Creo Illustrate, Vuforia Studio and MS HoloLens. We are going to be training our 130 field service technicians around the globe on service procedures for new products, such as changing filters, assembly, disassembly. I am doing a lot of R&D on 3D UI for navigating sequences/ menus in the HoloLens. This involves some playing around with the JavaScript. I would love to collaborate with anyone in a similar situation (or if you know someone). I want to make the end-user experience as smooth as possible, since a lot of these technicians have probably never even heard of AR. I have a lot of UI ideas, and I'm slowly learning the JavaScript to make them each a reality. Please let me know if you or one of your colleagues would ever be interested in a WebEx or business Skype to share ideas and collaborate. Thanks! Wes Tomer Augmented Reality Training Specialist Atlas Copco VTS Division (includes Leybold and Edwards brands)
Hello Everyone I have a mıtsubıshı automation education set which consist of servo motors-drivers, asynchronous motor and I want to create an Augmented Reality application which shows motors rpm and errors but I am not sure how to do this. I have a work-flow like this; First I have to connect this set to IOT gateway via ThingWorx Industrial Connectivity so I can able to reach motors rpm data and errors. And to show this data(motors rpm and errors) in my Augmented Reality application I think, I should use Vuforia Studio. Are these steps right? Thank you for all respons.
Just downloaded the trial to test Vuforia Studio. I can log in through https://trial.studio.vuforia.com using my PTC account but I can`t through http://localhost:3000/home after launching Studio from the desktop, getting in the log the following message: [2019-04-16T17:26:20.963Z] error: [twx-studio:auto_configure] undefined GET https://trial.studio.vuforia.com/api/v1/service_details Unable to retrieve service details. Request failed. { Error: connect ETIMEDOUT 54.210.92.119:443at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1097:14)errno: 'ETIMEDOUT',code: 'ETIMEDOUT',syscall: 'connect',address: '54.210.92.119',port: 443 }[2019-04-16T17:26:20.965Z] error: [twx-studio:index] unhandledRejection Unable to retrieve service details. Request failed.[0mGET /api/autoConfigure [31m500 [0m21212.409 ms - 35[0m Similar message appears if I try to check for updates: [2019-04-16T17:23:07.338Z] error: [twx-studio:versionCheck] Could not find
Hello, I am trying to use the following code to set a sequence when a model is clicked on, however the .pvi fails to load each time: var seq_list =["Exhaust-filters","EXPLODE-ALL","Figure 1","Raise-Pump"]; $scope.setSequence = function(val){ $scope.setWidgetProp('pump', 'sequence', "app\resources\Uploaded\SV300B_High\l-Creo 3D - "+seq_list[val-1]+".pvi");/*"app/resources/Uploaded/SV300B_High/I-Creo 3D - "+seq_list[val-1]+".pvi");*/ $scope.$applyAsync();console.log(val-1);}; For each model I have a different JS command (i.e. setSequence(1); setSequence(2); setSequence(3) etc.) The error I am getting is "pump failed to load pvi [insert pvi here]" each time I click on a model (please see attached JPG) Any insight or ideas would be really appreciated! Thank you, Wes
Hi All, I'm trying to display a model with texture in a Hololens Experience.I published a model with textures but the textures are not visibile in the experience.The same model published in a Phone (Andoroid) experience shows the textures.I uploaded both the model without CAD optimization.Are the texture supported in an Hololens Experience?Message was edited by: Sushant Pandey moving to Studio for better reach
Hi everyone, I'm trying to use Epson B300 to view the projects. For vuforia, does it contains a library for x86? Regards, Luis
I have an assembly and I've assigned some parts of the assembly as 'model items'. I'd like to have a Select (drop down) widget display a list of these 'model items' and bind the drop down to their visibility property so that only the part selected in the list is displayed. Can someone advise if this is possible and point me in the direction of how to achieve it please?
I was working on a view that has multiple images and labels in stack of each others (above each others), when I click on an image, I expect only the visible widgets to fire the click event, and it was the case until I upgrade vuforia this morning to 8.4.0.4300. Now, any item in the view is firing the click event! which causes a huge mess! Note: this issue raise in preview page, in 3D view
Vuforia Studio Bug fixes and minor improvements Vuforia View But fixes and minor improvements Experience Service Security fixes and enhancements Bug fixes and minor improvements
This example briefly describes how you can use the Step names that you used in Creo Illustrate sequence definitions to drive a corresponding step instruction/description in your experience. This is an unsupported, preliminary solution - R&D is working on a better, final solution. But as long as this is not available, you can use this one for PoC and demo purposes.To setup the scene: Here is what I meant with Step names that you used in Creo Illustrate: Now in Thingworx Studio you want to have the following result:The text is rendered with a simple Label widget. You'll have to remember the ID of this widget for the following javascript tweak. Add the following text to the Javascript section of your View:var labelId = "label-1"; // ID of the Label widget that displays the Step progress and description text// this $on event handler switches the label based on the the sequence definition// the arg variable is of the following form: (<step #>/<total step #) <step name&
Hello, I am in development of a HoloLens experience and faced the following issue: Sequence created in Creo Illustrate 4.2, displayed in HoloLens correctly, I am using $scope.$on('newStep', function(evt, arg) to display sequence step information during playback. After a step is played (using play event), the sequence is switched to the next step. Thus the information I am displaying using newStep is automatically overwritten with the data related to the next step. I am looking for a possibility to pause the sequence playback after a step is played. In Illustrate there is a possibility to use Acknowledge to pause the playback and theres is an Acknowledge Request among the studio events, but I did not figure out how to tie those together. Any ideas? Thanks in advance!
Hello! Is there a way to indicate the boolean value in AR experience with the external data. For example, if I have a led like indicator and I need to turn the led color to red if the value 1 is received from industrial connectivity (OPC-UA).
I created an experience in which I want to show sequence location with Blinking 3D Image (Arrow). @-webkit-keyframes blinker { from {opacity: 1.0;} to {opacity: 0.0;} } .blink { text-decoration: blink; -webkit-animation-name: blinker; -webkit-animation-duration: 0.6s; -webkit-animation-iteration-count:infinite; -webkit-animation-timing-function:ease-in-out; -webkit-animation-direction: alternate; } I used above css on 3D lable but it's not working. Can someone help me with this or give any better solution.
How can I properly dock a panel to the bottom of the users screen when I am in a 2D view? 1.jpg - shows the effect I want to achieve. This was done by setting the class with the below CSS but this did not work in practice. .UI-Bottom{position: fixed;bottom: 0px;width: 100%;} 2.jpg - shows what the preview of 1.jpg looks like. The CSS does not hold the panel to the bottom 3.jpg - shows the panel with no CSS applied
Soy un usuario nuevo y mi escritorio tiene Windows 7.0 y me marca el siguiente error. No sé qué sucede porque este programa no se inicia. Se han establecido las siguientes propiedades: Propiedad: [AdminUser] = true {boolean} Propiedad: [InstallMode] = HomeSite {string} Property: [NTProductType] = 1 {int} Property: [ProcessorArchitecture] = AMD64 {string} Property: [ VersionNT] = 6.1.1 {versión} Corriendo las verificaciones del paquete 'Microsoft .NET Framework 4.5.2 (x86 y x64)', fase BuildList Valor de lectura 'Lanzamiento' de la clave de registro 'HKLM \ Software \ Microsoft \ NET Configuración de la estructura \ NDP \ v4 \ Completo ' Leer valor entero 461814 Valor de configuración' 461814 {int} 'para la propiedad' DotNet45Full_Release 'Valor de lectura' v4 'de la clave de registro'HKLM \ SOFTWARE \ Microsoft \ NET Framework Setup \ OS Integration 'No se puede leer el valor del registroNo se establece el valor de la propiedad 'DotNet45Full_OSIntegrated' Las siguientes propieda
Hello I have added multiple figure in a experience and used select and list option for selecting the sequence in experience.This is working fine with vuforia studio preview while it doesn't show any list in my ios mobile device. help me with the solution. Thank you
Trying to see if AR will suit a particular use case, which has an image inserted into the model (View-->Model Display-->Images). When I publish the model from Creo and subsequently view the experience in Vuforia View, the model displays, but not the inserted image. Is this simply not supported, or is there a clever solution I'm missing?
I'm planning to include a hide feature in my experience, giving the user the ability to hide a model to perform certain instructions. Showing the model all the time will block user's sight. I managed to make the whole model invisible using this code for (i = 0; i <= length; i++) { modelitem="model-1-/0/"+i; tml3dRenderer.setProperties(modelitem, { hidden:true } ); } However, even though the property 'hidden' set to 'true'. When animation started some of the animated parts will be shown. Not all the parts! which makes me wondering why? how to prevent it from showing, or at least how possibly show all the animated parts? I'm stuck in between. Thanks for the help in advance.
I was trying to figure out an automated way to make punch of parts assembly of my model to be transparent. My model consist of 150 parts and it makes no sense to drag and drop modelitem widget for every part. I used the following code modelitem="model-1-/0/"+i; tml3dRenderer.GetObject(modelitem).GetWidget().ApplyOccludeOpacity(0,0); Everything works good in preview mode, but surprisingly it doesn't work at all in HoloLens. Waste much my time on preview while not all function are supported. Any help of alternative way to make this work this out?
I added a model widget into the canvas with xyz co-ordinate as say 0,0,0 (center of canvas). Now when I add the resource (.pvz file) into that widget, those co-ordinates changes by itself say (0,0.35,0.254). On what basis this is changing. When I import the components of a sub-assembly individually into the canvas, it is not sitting on the correct position. What is the best way to assemble your components inside your canvas. Coordinates after adding resourceempty model widget coordinates Thanks!!!
Hi,We are now using ThingWorx studio to modify a panel model, and we want to add/change pictures on the panel surface.We can add the picture to panel surface in Creo 2, but it can not be display in ThingWorx Studio. So our question is how can we add/change picture on a model in ThingWorx studio? Do we need install other TW tools for the action?Thanks.
Hello my name is Kevin Leech I am a PTC partner and I had access my trial rean out can you help me Reset my Access. ThanksKevin Ps if you already received this I apologize I was interrupted trying to post this.
Hi dupatel, Per this topic: I checked out your video and it was helpful but didn't show how to make the menu collapsible/expandable. Is there any way to do this? Thanks.
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.