AU Class
AU Class
class - AU

iLogic from Zero to 60 in 90

共享此课程
在视频、演示文稿幻灯片和讲义中搜索关键字:

说明

Have you heard great things about iLogic but never really learned about how or when to use it? This hands-on lab will cover key concepts and techniques, with minimal expectations of programming experience. You’ll leave with an understanding of how you can be more efficient with Inventor software by using iLogic to automate routine tasks. We will begin with the basics: What are rules and when do rules fire? Samples and exercises will illustrate the extents of what you can do with rules—in parts, assemblies, and drawings. We’ll work with iLogic forms, which let you make a user interface without programming. We’ll use rules in different circumstances and scenarios—for parameter validation, for updating iProperties on file open/save. Finally, you’ll get some exposure to more-advanced capabilities like external rules and using the Inventor API.

主要学习内容

  • Learn how to create an iLogic rule that validates the “range” of the value of a parameter
  • Learn how to create an iLogic rule that updates an iProperty whenever the file is saved
  • Learn how to create an iLogic “form” that makes it easy to change certain Inventor parameter or iProperty values
  • Discover the difference between internal and external iLogic rules

讲师

  • Jon Balgley
    Jon Balgley has been with Autodesk since 2005, and has worked on CAD-related software since the 1980's. He was one of the original developers of Inventor ETO, and now works on Configurator 360, iLogic, and other forward-looking projects.
Video Player is loading.
Current Time 0:00
Duration 28:10
Loaded: 0.59%
Stream Type LIVE
Remaining Time 28:10
 
1x
  • Chapters
  • descriptions off, selected
  • en (Main), selected
Transcript

PRESENTER: OK. Welcome to iLogic, from 0 to 60 in 90. So we're going to go-- start from zero, but we're going to go really fast. I hope everyone is ready. Is everybody ready? We're ready? Is anybody tired from lunch or over extended from? Yeah, not you, Paul. Anybody need an extra brain? If they need an extra brain. Yeah. Matt. Anybody else need an extra brain? OK. Here you go, we got extra brains if anybody needs any extra brains.

OK so welcome, yeah. We're going to go quickly here. The agenda today is I'm going to do a quick overview of what is iLogic. And then we're going to go through these four exercises. Each of the four exercises is independent. The exercise always starts you off in a clean state, so you don't to worry if you don't finish the previous one. No worries at all, go right into the next one, and you'll be fine.

At the end, the last one is definitely challenging, way too challenging to do it all in this class. So it's broken down into three parts, you get to pick one. And you'll see, you get to pick one, and then we'll talk about where to go next.

So that sound good? Other thing I just want to mention, is it's going to be a lot of hands on stuff. I'm not going to just walk through, and you're going to watch me, you're going to do it all. I've got some great advice from speaker mentors saying that a speaker in a lab should talk as little as possible. So I'm going to shut up, quickly, and you guys can do it.

We have some great-- Did I mentioned, we have some great lab assistants here. We have Adam Nagy, and Paul Mumford, and I don't see my third one, but these guys are great. I have also been working with iLogic for a long time. And yeah, feel free to ask them anything.

OK, so what is iLogic? So first of all, it's a built in capability of inventor, right? So it's not something extra that you have buy or anything, it's built right into Inventor. Allows you to specify and run little chunks of code. How many people here feel like they're a real genuine programmer? Couple. How many people have ever written anything that resembles programs? Yeah, OK, so, if you can write an Excel formula, then you can do basic iLogic, right?

If you want to get into full programming, that can be handled also. So yeah, and it runs at certain predefined and convenient times, right? So that's kind of a key thing. So little chunks of code, the logic that you're writing is in the VB.NET language. So that's a compatibility aspect. There's a lot of aspects that are hidden, so that you don't have to worry about a lot of the details. So it kind of keeps all of that out of your way. But you can get into it if you really want to, so it kind of-- you have the best of both worlds in that regard.

It comes with a built-in editor with snippets of pieces that you can reuse that you can use right off the bat, so you don't need an extra tool to start using it. It's all built into to Inventor. Like anything that's programming, there's a compiler aspect to it that you have to-- normally, you would have to build a program to run. It takes care of all that for you. It's all behind the scenes. You don't have to worry. It's there for you, and you just say, save and run, and you're on your way.

And last that the rules are triggered or invoked automatically as a general rule. No pun intended, sorry, as a general rule. So again, you don't even have to worry about running them. They run at the right times for you, and we'll talk about when that is.

There's two different formats for iLogic rules, internal, which is what we'll be working with mostly, and external. Internal rules live inside the file, part file, assembly file, or [? drawing ?] file. External rules live in a separate file. That has an advantage because they're, of course, independent and separate from the file, but the disadvantage there is that they don't have as easy access to the contents of the file that you want. OK?

So when iLogic rules run, it's called being triggered. So the triggers that you have are several options. And this is sort of the general, normal case. There's always exceptions. So if the logic in the rule refers to invent a parameter, and that invent a parameter's value changes, the rule will run. Very convenient. Any time it changes, it just takes care of it for you. You don't have to ask it to run. It'll just run. You can take a rule and attach it to certain events. Events are things like when a file is open, when a file is saved, either before the file is saved or after the file is saved, and so if you attach a rule to event, then it just runs at that time as well. Again, another easy way to have a rule run at the right time. And of course, there's also an option for you to say, yeah, rule, run now. And so you can do that. That's easy.

The last thing is that you can also use-- rules can ask for other rules to run. Then you have to-- that's a little bit harder. You have to at least write a little code, so to speak, to do it. It's not fully automatic. OK.

This is an example of the 60, where I hope that we can be by the end of the day today, end of the session. So on the left is a iLogic form that might allow you to configure this box. We're going to pretend that we're the custom box company making custom boxes. I've been perennially surprised at how many people, many customers make some kind of box. Does anybody in this room make something that could be categorized as a box? Yeah. Yeah. Yeah. So yeah, so it's not so unrealistic to be working on a box. OK. And then you on the right, you can see that there's different configurations, different sizes. Sometimes there's a lid. Sometimes there's not. Sometimes there's a T handle. Sometimes there's a round handle. That's the configuration. So that's what we're going to be going, heading towards. OK.

On doing the exercises, the box that you're seeing on the screen is already open to exercise one, step three or so, so you've gotten a head start already. The data sets live in this folder. So you can go there if you need to find the files, C:DATASETS. And then IM, blah, blah, blah, blah, iLogic. Yeah. The exercises should already be open on all your systems. There's a V2 PDF, if you lose it. It'll be there. And I want you to go fast because having timed it, it's only just barely doable in this amount of time, so just go. And like I said, it's OK to do not finish and go on to the next one. The yellow highlights point out things that you have to actually do. The un-yellow highlights are mostly just description. Green stuff is optional that you can skip unless you're way ahead. OK.

So exercise one, this is just kind of an overview of it. You've already got the box.IPT open on your screen. What we're going to do is add a simple rule that will not allow you to make a parameter be too small. So if you try to make the size of the box too small, it's going to say, no, don't go that small. Set it to the minimum limit and keep it at that. So that's what that rule is going to-- that's what you're going to do in this exercise, is have a rule that prevents a user from changing up parameter values from being too small.

And then the last bit is just to say, do you want to do that silently, or do you want to give the user some kind of warning about it? And so we'll experiment with different warnings. I think the first thing is just to do it silently and just have it do it, and then we can add various kinds of warnings. All right. Everybody ready? Questions on that so far? Anybody, anybody, anybody? Anybody need an extra brain? Extra brain? Yeah, yeah, OK. Yeah. All right. Go.

OK. So exercise one, written a simple iLogic rule. Any kind of high-level comments, observations, questions? OK.

AUDIENCE: [INAUDIBLE].

PRESENTER: Say it again.

AUDIENCE: Is it important to keep things in certain lines?

PRESENTER: You mean one of the error things? Yeah. So that's an aspect of Visual Basic that certain keywords are expected to be on the same line or different lines in different times. Yeah. And so that's why I wanted to point that out was, it's not really very good, doesn't give you very good error messages in those cases. And it's sensitive to that because it sort of kind of expects that you know that.

OK. So second exercise, so having written a simple rule, now we're going to go into something called iLogic forms. iLogic forms are-- I have to get this in the right place. There we go. OK. Now that's good. iLogic forms is a little bit separate from rules. You don't actually even need to write any rules to use iLogic forms. Although in this exercise, we're going to start with no rules and just using a form, and then we're going to tie in one very simple rule at the end.

So what is in an iLogic-- what is a form? So it's a very simple kind of dialogue box, a pop-up dialogue box that lets the user enter values for parameters, for iProperties or to run rules as a button. So you can show a rule as a button on your form, and then the user can click it to run that rule. So very simplistic, that's more or less all that it does, but it's great and really easy to use, so simple but limited.

Yeah, and then in addition, you can create these forms just by a very simple user interface. You can just drag and drop the controls onto the form, and then you're ready to use it.

OK. So exercise two. We're going to make a simple form that just allows you to change the values of the parameters of the box, so you can then easily-- you don't have use the parameters dialogue. You won't need to use the parameters dialogue anymore, but you can just enter values for length, width, and height. No rules for that. The form will automatically trigger any rules that are necessary, so you'll still have that clamping rule in place. And so it will run that clamping rule if you enter a value that's less than eight. Then it will bring it back to eight.

We're going to look at something called multi-value parameters. Multi-value parameters is a part of Inventor, per se. It's not really part of iLogic exactly, so although it's often used in conjunction with iLogic and forms, and you'll see why. And then also, true-false parameters that you may not be familiar with, also part of regular Inventor, not necessarily a part of iLogic per se but very useful in the iLogic context.

OK.

AUDIENCE: Is it necessary to restart Inventor? Because sometimes they have this [INAUDIBLE] message and all that.

PRESENTER: Oh, oh, yes, yes. So you don't have to-- thank you so much. You don't have to restart Inventor. The first instruction says, restart Inventor. All you have to do is just close all your files, close all your open documents, and then go to the new project. On these network computers, it takes a long time to restart Inventor. So let's avoid it if we can. OK. Go.

--having problems getting to the project. I'm going to demonstrate it on the screen. If you're doing OK, you don't have to watch.

So I'm not on the same network here. But what you'll need to do is go to the projects button. Click on that. And then you'll see that there's a-- that you're in the 1.1 clean. And then you can use the browse button. And then go to-- it'll be in a different folder, but go to the 2.1 clean. Click on that, and there's a 2.1 clean IPJ file. Click on that, open, and then you'll see that you're in this 2.1 project. Click done, and then open, and then you get a different box in the 2.1 clean folder. So that's really the key thing is that it's in the 2.1 clean folder. And you may have seen that there's a finished version of each one, as well, if you want to see the result at the end.

OK. About one minute left. Who's done? Who's done? Who's done? OK.

So comments, general comments or observations, questions? Forms. Forms are really easy. Yeah, Tom.

AUDIENCE: For multi-value parameters, there is a option in there [INAUDIBLE] select for allow custom values.

PRESENTER: Yeah.

AUDIENCE: Do we need to enable that [INAUDIBLE]?

PRESENTER: Yeah. Hang on. Yeah. So the question is, for multi-valued parameters, there is an option that you were asked to not select called allow custom--

AUDIENCE: Value.

PRESENTER: -- value. Thank you. Allow custom value, so the idea there is that if that's not checked the way it is in the exercise, then you're only allowed to choose from the ones there. If it is checked, then you're allowed to enter anything there in addition to the ones that are supplied there. I believe it--

AUDIENCE: It doesn't show [? here. ?]

PRESENTER: Does it not show up in the form?

[INTERPOSING VOICES]

PRESENTER: It doesn't let you type?

There might be something if you click on the control in the edit form.

[INTERPOSING VOICES]

PRESENTER: Yeah, yeah, yeah. There's a different format.

OK. Good question. Thank you. Other comments. Other comments, questions? OK.

Let me get my power tool here. So iLogic events. iLogic events are predefined times, situations, where iLogic will run a rule if you ask it to. So you can-- so let me just say, that the events are things like after file save or, excuse me, after file open or before file save. It can't be before file open. That would be tricky, yeah. Typically what you do or what we're going to start with are attaching an internal rule, a rule in the file, to an event that happens just for this particular file.

But for external rules that don't live in any particular file, there's also global events. There's also global events, and so external rules can be tied to global events, and so that happens on any file of a certain category. So you have a choice of any part file, any assembly file, any drawing file, or just any file. So you can make things happen when a user opens any file or when a user opens just any drawing file, or you can make things happen on just this particular file. All right? So we'll start with just this particular file, and then we're going to expand it to any file, and the--

Yeah, so the idea is that we're going to make a rule that sets an iProperty and not attached to any events for a start, just make sure that that rule works. And then we're going to attach it to this document events, and you'll see in the exercise what this document means. There's actually a tab called this document. And then we're going to convert that rule to an external rule, and that's a little-- it's not really that convenient to do that. It's not like there's a one-button thing. There's some work to convert it to an external rule, so just don't be surprised by that. And then finally, attach it to some global events.

Some people working ahead found that the instructions on the data set don't exactly match. It asks you to look at a particular rule that as if that rule exists, and the rule doesn't exist. So you just have to create it. The code for the rule is in the text of the PDF. You just have to create it, copy and paste the text in, and then you're good to go.

OK. Go. Oh, we're going-- You're going at about 20 miles an hour now. Right? Acceleration is on a curve, right? So we're about halfway through the time. But we're only accelerating up to about 20 miles an hour.

For anybody who uses Inventor, how many people here use Inventor? Yeah. There's a party Wednesday night. If you need one of these orange bands, stop by the Answer Bar, and you can get a invitation to the party.

AUDIENCE: Answer Bar?

AUDIENCE: The Answer Bar?

PRESENTER: Yeah, Answer Bar.

AUDIENCE: Where's the Answer Bar?

PRESENTER: Where is it? Sorry?

AUDIENCE: Yes.

PRESENTER: In the-- Yeah, in the expo area. I haven't been there yet. It's in the center, right? Yeah.

Yes, just to reiterate, you do have to actually create the rule named set customer project. The text for that rule is actually in the handout, but it's not predefined in advance. My mistake.

Yeah. So if you're looking for the events dialogue, it's in the manage tab. There's--

AUDIENCE: [INAUDIBLE]

PRESENTER: Sorry. Tools tab. There's an iLogic section, and then one of the buttons in that section is the event triggers dialogue.

I think you're going about 45 miles an hour now, 45. Yeah. How many people are done with exercise three? Just getting a feel here. Done with exercise three? How many people still working on it, still working on it? Yeah. OK. We'll give you a couple more minutes.

All right. Actually we're not to give you a couple more minutes. We're only going to give you one more minute. All right. So any general comments, observations? Got significantly harder, huh? No? Yes? No? Yeah, yeah. Lots more--

AUDIENCE: [INAUDIBLE]

PRESENTER: Yeah.

OK. Yeah, so it's not as easy to use. It is all just kind of menu-based, picks and clicks. There's not really any programming to attach to events. But there's a lot more pieces that need to be in the right place at the right time. Yeah.

OK. Moving on towards 60 miles an hour, some more advanced topics. So we're going to look at two different types of things. They're are closely related in this context. But they don't have to be related. So you'll see why in a minute. The two things we're looking at are using iLogic for assembly configuration and using iLogic to-- iLogic GoExcel functions to access Excel files.

So the first category of techniques, assembly configuration. So the idea is that you're going to have an assembly file and through a form, perhaps, we're going to control the components in that assembly. So some assemblies might have an extra valve or an extra widget of some kind, and other variants of the assembly do not. So turning things on and off according to some rules ultimately based on parameters. So ultimately, this is going to be based on some parameter value.

One thing that both of these styles do is they implement something that I call top-down design. So you're going to be having parameters and rules in the top level assembly file, and those rules are going to change and modify parameters in the component part files. Right? So the rules in the assembly file are going to modify the part file, so I call that top-down design. A little bit different than skeletal modeling, where you change things in a part, and it kind of propagates to the rest of the assembly. So it's different style of operation just different people have different styles. This is a style to be aware of. It's only enabled by iLogic. Right? It's not something you can do typically without having a rule in place to drive the values from the top-level assembly into the components.

There's two styles of assembly configuration. One is called the LOD style, and that's a legacy one that people have used for many years up until-- well, including now. They continue to use it. But in 2018, I think, I'm not sure, must be 2019. [? It might have been ?] 2019. Recently, we've introduced a new technique called managed assemblies for iLogic that works in a different way. And so the new managed assemblies technique is good for going forward. It's got some advantages and some disadvantages. The legacy technique is something that you'll see if you're using colleagues' rules. You'll definitely see that style, so you might want to learn that style as a good baseline technique. And there's pros and cons to both, and you'll see if you pick one, you'll definitely see the pros and cons of the one that you pick, and then later you can try the other one and see the pros and cons of that one.

Last is that within the rule editor, there's a command that-- you'll see at the top of the rule editor there's a model browser that shows the components in an assembly tree that's a separate model browser there, and you can right click on those components and capture the current state, and that will write a little fragment of a rule and insert it at your cursor point, wherever you've got the cursor in the text, and that fragment of rule is something that will make the component be the way it is right this moment. And then you'll typically modify it to do something else. So it gives you a starting point to say, Yeah, I want this component like it is now, and then you can tweak it by putting in an if statement or change some numeric values or something. OK, so capture current state, and there's different varieties of that depending upon the style that you're choosing.

The last thing is GoExcel. It allows you to read and write Excel files. You'll see that-- sorry. Typically, people use this for just as a little, tiny database, so when it's not really worth having a full-blown database but you just have a handful of data that you want to work with. You can just slap it into an Excel file and use this technique to pull the data out very, very, very quickly. Find row is kind of the most common thing that people use to search through the table of cells to find the other values of interest. So typically, you'll use find row using one particular column to find the relevant row, and then you pull the other cells out to use those other cell values.

And then last, there's an option-- you may not want to do this in the class today-- that uses a different mechanism for reading the file besides Excel itself. It's called LibXL. It's a lot faster than Excel. It fires up a lot quicker. So just be aware of it. There's a technique to turn it on and off. It's great if you don't actually need Excel within your Inventor session. Right?

So you'll see that there's 4.1, 4.2, 4.3. Pick one, and go with that. 4.1 is good if you want to work with colleagues' legacy rules for assembly configurations. 4.2 is good if you want to go with the new modern style and see what that's all about. And 4.3 is about working with Excel. It starts you off with a configurable assembly. So you don't have to do that yourself. You're starting the configurable assembly, and just walks you through the Excel part. All right. Go.

By the way, I think that I pulled out the references to LibXL from the exercise 4.3, so something that you can search for online to see how to use it. If you're leaving, feel free to please fill in your surveys. That helps me out. Thanks.

______
icon-svg-close-thick

Cookie 首选项

您的隐私对我们非常重要,为您提供出色的体验是我们的责任。为了帮助自定义信息和构建应用程序,我们会收集有关您如何使用此站点的数据。

我们是否可以收集并使用您的数据?

详细了解我们使用的第三方服务以及我们的隐私声明

绝对必要 – 我们的网站正常运行并为您提供服务所必需的

通过这些 Cookie,我们可以记录您的偏好或登录信息,响应您的请求或完成购物车中物品或服务的订购。

改善您的体验 – 使我们能够为您展示与您相关的内容

通过这些 Cookie,我们可以提供增强的功能和个性化服务。可能由我们或第三方提供商进行设置,我们会利用其服务为您提供定制的信息和体验。如果您不允许使用这些 Cookie,可能会无法使用某些或全部服务。

定制您的广告 – 允许我们为您提供针对性的广告

这些 Cookie 会根据您的活动和兴趣收集有关您的数据,以便向您显示相关广告并跟踪其效果。通过收集这些数据,我们可以更有针对性地向您显示与您的兴趣相关的广告。如果您不允许使用这些 Cookie,您看到的广告将缺乏针对性。

icon-svg-close-thick

第三方服务

详细了解每个类别中我们所用的第三方服务,以及我们如何使用所收集的与您的网络活动相关的数据。

icon-svg-hide-thick

icon-svg-show-thick

绝对必要 – 我们的网站正常运行并为您提供服务所必需的

Qualtrics
我们通过 Qualtrics 借助调查或联机表单获得您的反馈。您可能会被随机选定参与某项调查,或者您可以主动向我们提供反馈。填写调查之前,我们将收集数据以更好地了解您所执行的操作。这有助于我们解决您可能遇到的问题。. Qualtrics 隐私政策
Akamai mPulse
我们通过 Akamai mPulse 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Akamai mPulse 隐私政策
Digital River
我们通过 Digital River 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Digital River 隐私政策
Dynatrace
我们通过 Dynatrace 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Dynatrace 隐私政策
Khoros
我们通过 Khoros 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Khoros 隐私政策
Launch Darkly
我们通过 Launch Darkly 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Launch Darkly 隐私政策
New Relic
我们通过 New Relic 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. New Relic 隐私政策
Salesforce Live Agent
我们通过 Salesforce Live Agent 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Salesforce Live Agent 隐私政策
Wistia
我们通过 Wistia 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Wistia 隐私政策
Tealium
我们通过 Tealium 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Tealium 隐私政策
Upsellit
我们通过 Upsellit 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Upsellit 隐私政策
CJ Affiliates
我们通过 CJ Affiliates 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. CJ Affiliates 隐私政策
Commission Factory
我们通过 Commission Factory 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Commission Factory 隐私政策
Google Analytics (Strictly Necessary)
我们通过 Google Analytics (Strictly Necessary) 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Google Analytics (Strictly Necessary) 隐私政策
Typepad Stats
我们通过 Typepad Stats 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Typepad Stats 隐私政策
Geo Targetly
我们使用 Geo Targetly 将网站访问者引导至最合适的网页并/或根据他们的位置提供量身定制的内容。 Geo Targetly 使用网站访问者的 IP 地址确定访问者设备的大致位置。 这有助于确保访问者以其(最有可能的)本地语言浏览内容。Geo Targetly 隐私政策
SpeedCurve
我们使用 SpeedCurve 来监控和衡量您的网站体验的性能,具体因素为网页加载时间以及后续元素(如图像、脚本和文本)的响应能力。SpeedCurve 隐私政策
Qualified
Qualified is the Autodesk Live Chat agent platform. This platform provides services to allow our customers to communicate in real-time with Autodesk support. We may collect unique ID for specific browser sessions during a chat. Qualified Privacy Policy

icon-svg-hide-thick

icon-svg-show-thick

改善您的体验 – 使我们能够为您展示与您相关的内容

Google Optimize
我们通过 Google Optimize 测试站点上的新功能并自定义您对这些功能的体验。为此,我们将收集与您在站点中的活动相关的数据。此数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID 等。根据功能测试,您可能会体验不同版本的站点;或者,根据访问者属性,您可能会查看个性化内容。. Google Optimize 隐私政策
ClickTale
我们通过 ClickTale 更好地了解您可能会在站点的哪些方面遇到困难。我们通过会话记录来帮助了解您与站点的交互方式,包括页面上的各种元素。将隐藏可能会识别个人身份的信息,而不会收集此信息。. ClickTale 隐私政策
OneSignal
我们通过 OneSignal 在 OneSignal 提供支持的站点上投放数字广告。根据 OneSignal 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 OneSignal 收集的与您相关的数据相整合。我们利用发送给 OneSignal 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. OneSignal 隐私政策
Optimizely
我们通过 Optimizely 测试站点上的新功能并自定义您对这些功能的体验。为此,我们将收集与您在站点中的活动相关的数据。此数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID 等。根据功能测试,您可能会体验不同版本的站点;或者,根据访问者属性,您可能会查看个性化内容。. Optimizely 隐私政策
Amplitude
我们通过 Amplitude 测试站点上的新功能并自定义您对这些功能的体验。为此,我们将收集与您在站点中的活动相关的数据。此数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID 等。根据功能测试,您可能会体验不同版本的站点;或者,根据访问者属性,您可能会查看个性化内容。. Amplitude 隐私政策
Snowplow
我们通过 Snowplow 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Snowplow 隐私政策
UserVoice
我们通过 UserVoice 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. UserVoice 隐私政策
Clearbit
Clearbit 允许实时数据扩充,为客户提供个性化且相关的体验。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。Clearbit 隐私政策
YouTube
YouTube 是一个视频共享平台,允许用户在我们的网站上查看和共享嵌入视频。YouTube 提供关于视频性能的观看指标。 YouTube 隐私政策

icon-svg-hide-thick

icon-svg-show-thick

定制您的广告 – 允许我们为您提供针对性的广告

Adobe Analytics
我们通过 Adobe Analytics 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Adobe Analytics 隐私政策
Google Analytics (Web Analytics)
我们通过 Google Analytics (Web Analytics) 收集与您在我们站点中的活动相关的数据。这可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。我们使用此数据来衡量我们站点的性能并评估联机体验的难易程度,以便我们改进相关功能。此外,我们还将使用高级分析方法来优化电子邮件体验、客户支持体验和销售体验。. Google Analytics (Web Analytics) 隐私政策
AdWords
我们通过 AdWords 在 AdWords 提供支持的站点上投放数字广告。根据 AdWords 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 AdWords 收集的与您相关的数据相整合。我们利用发送给 AdWords 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. AdWords 隐私政策
Marketo
我们通过 Marketo 更及时地向您发送相关电子邮件内容。为此,我们收集与以下各项相关的数据:您的网络活动,您对我们所发送电子邮件的响应。收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、电子邮件打开率、单击的链接等。我们可能会将此数据与从其他信息源收集的数据相整合,以根据高级分析处理方法向您提供改进的销售体验或客户服务体验以及更相关的内容。. Marketo 隐私政策
Doubleclick
我们通过 Doubleclick 在 Doubleclick 提供支持的站点上投放数字广告。根据 Doubleclick 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Doubleclick 收集的与您相关的数据相整合。我们利用发送给 Doubleclick 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Doubleclick 隐私政策
HubSpot
我们通过 HubSpot 更及时地向您发送相关电子邮件内容。为此,我们收集与以下各项相关的数据:您的网络活动,您对我们所发送电子邮件的响应。收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、电子邮件打开率、单击的链接等。. HubSpot 隐私政策
Twitter
我们通过 Twitter 在 Twitter 提供支持的站点上投放数字广告。根据 Twitter 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Twitter 收集的与您相关的数据相整合。我们利用发送给 Twitter 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Twitter 隐私政策
Facebook
我们通过 Facebook 在 Facebook 提供支持的站点上投放数字广告。根据 Facebook 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Facebook 收集的与您相关的数据相整合。我们利用发送给 Facebook 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Facebook 隐私政策
LinkedIn
我们通过 LinkedIn 在 LinkedIn 提供支持的站点上投放数字广告。根据 LinkedIn 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 LinkedIn 收集的与您相关的数据相整合。我们利用发送给 LinkedIn 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. LinkedIn 隐私政策
Yahoo! Japan
我们通过 Yahoo! Japan 在 Yahoo! Japan 提供支持的站点上投放数字广告。根据 Yahoo! Japan 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Yahoo! Japan 收集的与您相关的数据相整合。我们利用发送给 Yahoo! Japan 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Yahoo! Japan 隐私政策
Naver
我们通过 Naver 在 Naver 提供支持的站点上投放数字广告。根据 Naver 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Naver 收集的与您相关的数据相整合。我们利用发送给 Naver 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Naver 隐私政策
Quantcast
我们通过 Quantcast 在 Quantcast 提供支持的站点上投放数字广告。根据 Quantcast 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Quantcast 收集的与您相关的数据相整合。我们利用发送给 Quantcast 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Quantcast 隐私政策
Call Tracking
我们通过 Call Tracking 为推广活动提供专属的电话号码。从而,使您可以更快地联系我们的支持人员并帮助我们更精确地评估我们的表现。我们可能会通过提供的电话号码收集与您在站点中的活动相关的数据。. Call Tracking 隐私政策
Wunderkind
我们通过 Wunderkind 在 Wunderkind 提供支持的站点上投放数字广告。根据 Wunderkind 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Wunderkind 收集的与您相关的数据相整合。我们利用发送给 Wunderkind 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Wunderkind 隐私政策
ADC Media
我们通过 ADC Media 在 ADC Media 提供支持的站点上投放数字广告。根据 ADC Media 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 ADC Media 收集的与您相关的数据相整合。我们利用发送给 ADC Media 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. ADC Media 隐私政策
AgrantSEM
我们通过 AgrantSEM 在 AgrantSEM 提供支持的站点上投放数字广告。根据 AgrantSEM 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 AgrantSEM 收集的与您相关的数据相整合。我们利用发送给 AgrantSEM 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. AgrantSEM 隐私政策
Bidtellect
我们通过 Bidtellect 在 Bidtellect 提供支持的站点上投放数字广告。根据 Bidtellect 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Bidtellect 收集的与您相关的数据相整合。我们利用发送给 Bidtellect 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Bidtellect 隐私政策
Bing
我们通过 Bing 在 Bing 提供支持的站点上投放数字广告。根据 Bing 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Bing 收集的与您相关的数据相整合。我们利用发送给 Bing 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Bing 隐私政策
G2Crowd
我们通过 G2Crowd 在 G2Crowd 提供支持的站点上投放数字广告。根据 G2Crowd 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 G2Crowd 收集的与您相关的数据相整合。我们利用发送给 G2Crowd 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. G2Crowd 隐私政策
NMPI Display
我们通过 NMPI Display 在 NMPI Display 提供支持的站点上投放数字广告。根据 NMPI Display 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 NMPI Display 收集的与您相关的数据相整合。我们利用发送给 NMPI Display 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. NMPI Display 隐私政策
VK
我们通过 VK 在 VK 提供支持的站点上投放数字广告。根据 VK 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 VK 收集的与您相关的数据相整合。我们利用发送给 VK 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. VK 隐私政策
Adobe Target
我们通过 Adobe Target 测试站点上的新功能并自定义您对这些功能的体验。为此,我们将收集与您在站点中的活动相关的数据。此数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID、您的 Autodesk ID 等。根据功能测试,您可能会体验不同版本的站点;或者,根据访问者属性,您可能会查看个性化内容。. Adobe Target 隐私政策
Google Analytics (Advertising)
我们通过 Google Analytics (Advertising) 在 Google Analytics (Advertising) 提供支持的站点上投放数字广告。根据 Google Analytics (Advertising) 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Google Analytics (Advertising) 收集的与您相关的数据相整合。我们利用发送给 Google Analytics (Advertising) 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Google Analytics (Advertising) 隐私政策
Trendkite
我们通过 Trendkite 在 Trendkite 提供支持的站点上投放数字广告。根据 Trendkite 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Trendkite 收集的与您相关的数据相整合。我们利用发送给 Trendkite 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Trendkite 隐私政策
Hotjar
我们通过 Hotjar 在 Hotjar 提供支持的站点上投放数字广告。根据 Hotjar 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Hotjar 收集的与您相关的数据相整合。我们利用发送给 Hotjar 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Hotjar 隐私政策
6 Sense
我们通过 6 Sense 在 6 Sense 提供支持的站点上投放数字广告。根据 6 Sense 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 6 Sense 收集的与您相关的数据相整合。我们利用发送给 6 Sense 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. 6 Sense 隐私政策
Terminus
我们通过 Terminus 在 Terminus 提供支持的站点上投放数字广告。根据 Terminus 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 Terminus 收集的与您相关的数据相整合。我们利用发送给 Terminus 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. Terminus 隐私政策
StackAdapt
我们通过 StackAdapt 在 StackAdapt 提供支持的站点上投放数字广告。根据 StackAdapt 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 StackAdapt 收集的与您相关的数据相整合。我们利用发送给 StackAdapt 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. StackAdapt 隐私政策
The Trade Desk
我们通过 The Trade Desk 在 The Trade Desk 提供支持的站点上投放数字广告。根据 The Trade Desk 数据以及我们收集的与您在站点中的活动相关的数据,有针对性地提供广告。我们收集的数据可能包含您访问的页面、您启动的试用版、您播放的视频、您购买的东西、您的 IP 地址或设备 ID。可能会将此信息与 The Trade Desk 收集的与您相关的数据相整合。我们利用发送给 The Trade Desk 的数据为您提供更具个性化的数字广告体验并向您展现相关性更强的广告。. The Trade Desk 隐私政策
RollWorks
We use RollWorks to deploy digital advertising on sites supported by RollWorks. Ads are based on both RollWorks data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that RollWorks has collected from you. We use the data that we provide to RollWorks to better customize your digital advertising experience and present you with more relevant ads. RollWorks Privacy Policy

是否确定要简化联机体验?

我们希望您能够从我们这里获得良好体验。对于上一屏幕中的类别,如果选择“是”,我们将收集并使用您的数据以自定义您的体验并为您构建更好的应用程序。您可以访问我们的“隐私声明”,根据需要更改您的设置。

个性化您的体验,选择由您来做。

我们重视隐私权。我们收集的数据可以帮助我们了解您对我们产品的使用情况、您可能感兴趣的信息以及我们可以在哪些方面做出改善以使您与 Autodesk 的沟通更为顺畅。

我们是否可以收集并使用您的数据,从而为您打造个性化的体验?

通过管理您在此站点的隐私设置来了解个性化体验的好处,或访问我们的隐私声明详细了解您的可用选项。