Running Scripts in Altium Designer. Executing scripts. Script as a Command. Modified by on 13-Sep-2017

Size: px
Start display at page:

Download "Running Scripts in Altium Designer. Executing scripts. Script as a Command. Modified by on 13-Sep-2017"

Transcription

1 Running Scripts in Altium Designer Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 Related information Customizing the Altium Designer Resources Parent page: Scripting While the Altium Designer Scripting system provides the means to create sophisticated automated tasks for Altium Designer, the resulting scripts also need to be easily accessible during the design process. For example, a script created to perform a complex set of operations while editing a PCB should be readily available in the PCB Editor itself, where it can be executed with a mouse click or two. Altium Designer caters for this need by allowing a script to be assigned to a process launcher, and thereby a command that can be assigned to a server Menu, Toolbar and Shortcut. Executing scripts To briefly recap, when open in the script editor, a script can be executed using the editor's Run command or via the DXP» Run Script menu. This requires the script project to be open in Altium Designer, which is not a convenient approach to accessing a script needed during the PCB design process, for example. A more suitable method to access a frequently used script is to install the project as a Global Project DXP» Preferences, Scripting System Global Projects. In this case the project is automatically loaded when Altium Designer starts, and can be executed at any time via the DXP» Run Script menu. The ideal way to access a script's functionality however, is where it is integrated into Altium Designer's GUI as a menu or toolbar command. This is normally a two step process; implemeting a script as a Command (with optional shortcut), then assigning the Command to a Menu (static or popup) or a Toolbar. Script as a Command A script can implemented as a server command by harnessing Altium Designer's built in server processes, or more specifically, the ScriptingSystem:RunScript process. A command represents a performed action and is supported by a process string via a packaged process launcher. In the case of the the ScriptingSystem:RunScript process, it includes parameters for pointing to a specific script project file, a constituent script file (*.pas) and a processes within that script.

2 Run Process Altium Designer processes are directly available via the DXP» Run Process menu, where the ScriptingSystem:RunScript process can be selected and appropriate parameters added to execute the desired script. In the case of the sample HelloWorld script for example, the entries would be as follows: Process: ScriptingSystem:RunScript Parameters: ProjectName ProcName > Process Therefore, depending on the source path to the script the Parameters string would be similar to: ProjectName=C:\Users\Public\Documents\Altium\Delphiscript Scripts\General\HelloWorld.PRJSCR ProcName=HelloWorld.pas>HelloWorld Executing a script using the script process launcher via the Run Process dialog. While still not a particularly convenient way to execute a script during the design process, note that running the script as a process avoids the need to directly open the script or have it loaded as a Global Project. The second and more significant advantage of using the process method to run a script is that it can be implemented as an accessible Altium Designer command. This is done by customizing Altium Designer's menu system, where a script can be assigned to a command for a nominated server. Create a Command To assign the HelloWorld script as a command for the PCB editor for example, open a PCB document and select DXP» Customize from the main menu.

3 To create a new command, click the New button in the Customizing PCB Editor dialog to open the Edit Command dialog where the server process and script path details can be included, as detailed for the Run Process dialog example above.

4 The dialog also provides entry fields for a command caption, description, shortcut and associated bitmap image (BMP/GIF; 18 x 18 pixels). Tip: The required parameters can be copied from the actual script entry under the [Scripts] category in the Customize PCB Editor dialog. Once copied, ensure that the Categories entry is no longer set to [Scripts] before creating the new command with the New button. With the details complete and the dialog dismissed (OK) the HelloWorld script becomes available as a Custom command for the PCB Editor.

5 Note that commands are implemented on a server basis, so a Custom command that has been created for the PCB Editor (as above) will not be available in other severs, such as the Schematic Editor or the Scripting System. External Application Command An external application such as the Microsoft Notepad can be launched from Altium Designer through software control. In this case the command process and parameters entries would be: Process: ScriptingSystem:RunScriptText Parameters: Text=Begin RunApplication('notepad.exe'); End; The server process in this case, ScriptingSystem:RunScriptText, is literally running a sequence of script statements, rather than opening and running a specific script file as outlined above.

6 The alternative approach is to create a script with a few equivalent lines of code, then create a conventional ScriptingSystem:RunScript command entry. Procedure RunNotepad; Begin RunApplication('notepad.exe'); End; Note that for both approaches to implementing the external Notepad command it is sufficient to just enter 'notepad.exe' as the parameter for RunApplication, rather than specify the application's full path and filename. Windows applications such as Calculator and Notepad have their paths already specified by the operating system. To launch an application from Altium Designer that does not have an inherent Windows path, the application's full path and filename need to be specified (in single quotes, to cater for any white space in the path). So to launch a second copy of Altium Designer for example, the RunApplication process and parameters would be: RunApplication('C:\Program Files (x86)\altium\adxx\dxp.exe') where xx represents is the Altium Designer version. Commands can be edited and removed directly from the customizing dialog (in this case the Customizing PCB Editor dialog) using the buttons at the bottom of the dialog. Assigning Menu Commands With a script implemented as a custom server command via Altium Designer's Customizing function (DXP» Customize) as detailed above, it can be assigned to the server GUI by a simple drag and drop process.

7 Toolbars To assign a custom command to the PCB editor's main menu or Toolbar menu for example, open the Customizing PCB Editor dialog, locate the custom command and drag it to the desired menu location. Note that a PCB document needs to be open to provide access to the PCB server menus. A custom command can be dragged to the required menu location. With the customizing dialog closed, the new menu command can be accessed at any time in the PCB editor. A new script command assigned to the PCB Toolbar. Since the new custom command has been assigned to the PCB Toolbar menu it can be seen under the 'PCB Standard' command category in the Customizing PCB Editor dialog.

8 When assigned to a menu, the custom script command will appear under that menu's category in the customizing dialog. To remove a command from a menu, open the custom dialog then drag the menu command icon back into the dialog. Removing a command assigned to the Toolbar. When in customizing mode, commands assigned to a menu can also be edited and deleted by right clicking on the menu command itself.

9 Menus A custom command can be assigned to a menu, at any menu depth, using the same drag and drop process described above. When the server is in customizing mode the menus remain responsive to the mouse pointer, and will expand and contract accordingly. To place a command into the PCB editor's Reports menu for example, drag the command into the menu and down the list where it can be dropped in a suitable position. Active menus during customization allow a custom command to be dragged into a drop-down menu. With the customizing dialog closed, the new menu command can be accessed from within the Reports menu.

10 The Notepad script command included in the Reports menu. Pop-up Menu A command can be assigned to a right-click pop-up menu in the same way as described above, with no restriction imposed by the sub-menu depth. In this example the command is dragged through the menu path of Help» Popups» Right Mouse Click Free Space and dropped in the sub-menu as shown below.

11 A custom command assigned to a right-click sub-menu As assigned, the custom Notepad script command becomes available in the PCB editor when rightclicking in free space. The Notepad script command in the PCB right-click menu. Direct Script Assignment As an alternative to creating a reusable custom command from a script then assigning it to menu, a script can be directly applied to a menu as a quick, one-off approach. This bypasses the creation of a custom command step by directly assigning a loaded script to a menu. Without the existence of a matching custom command, which can be applied to multiple menus, this direct method is a singlular solution for script menu access. To assign a script directly to a menu, load the script project, open the server's Customizing dialog (DXP» Customize), select [Scripts] in the Categories list, locate the desired script and drag it to a menu position. Click OK to dismiss the Edit Command dialog.

12 A script, rather than a command, can also be assigned directly to a menu. The new menu item will be at its default settings (caption name etc), which can be corrected by rightclicking on the menu entry and selecting Edit from the submenu, to open the Edit Command dialog.

13 In Customizing mode, right click on a menu to access its parameters. Once configured, the new menu will be available at design time without further need to load the script project, or install it as a Global Project. Note that this approach to applying a script to a menu automatically creates the required command. This is not a re-assignable custom command, as described in the above methods, but a command created for that direct menu entry. This can be observed in the actual menu category entry in the Customizing dialog. For the above example, the command can be seen in the 'Reports' category in the Customizing PCB Editor dialog.

14 When directly applying a script to a menu, the matching command is created for just that menu entry. Source URL:

Customizing the Altium Designer Resources

Customizing the Altium Designer Resources Customizing the Altium Designer Resources Summary This tutorial describes how to customize your Altium Designer resources, such as commands, menus, toolbars and shortcut keys. This tutorial describes how

More information

A Tour of the Scripting System. Contents

A Tour of the Scripting System. Contents A Tour of the Scripting System Contents Features of the Scripting System Script Projects and Scripts Scripting Editor Scripting Panels Scripting Debugger Several Scripting Languages Application Programming

More information

5 WAYS TO CUSTOMIZE ALTIUM DESIGNER FOR BETTER EFFICIENCY

5 WAYS TO CUSTOMIZE ALTIUM DESIGNER FOR BETTER EFFICIENCY Menu items, shortcut keys, and toolbar icons are the three ways of accessing features within the Altium Designer environment. All of these are customizable and may enhance the user experience with Altium

More information

Microsoft Windows XP. Operating System. Starting Windows XP. You might be asked to enter your username and password

Microsoft Windows XP. Operating System. Starting Windows XP. You might be asked to enter your username and password Microsoft Windows Operating System Starting Windows Windows automatically starts when you turn on your computer You might be asked to enter your username and password The Windows desktop uses a graphical

More information

Figure 1. Output jobs are configured as an OutJob file, giving you full control over print-based output.

Figure 1. Output jobs are configured as an OutJob file, giving you full control over print-based output. PCB Printout Output Options Old Content - visit altium.com/documentation Modified by Admin on Sep 13, 2017 Print-based Output Print-based output for your PCB project in Altium Designer is available through

More information

Generating a Custom Bill of Materials

Generating a Custom Bill of Materials Generating a Custom Bill of Materials Old Content - visit altium.com/documentation Modified by on 6-Nov-2013 This tutorial describes how to use the Report Manager to set up a Bill of Materials (BOM) report.

More information

The following content has been imported from Legacy Help systems and is in the process of being checked for accuracy.

The following content has been imported from Legacy Help systems and is in the process of being checked for accuracy. Tool Palette Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 The following content has been imported from Legacy Help systems and is in the process of being checked for accuracy.

More information

Published on Online Documentation for Altium Products (

Published on Online Documentation for Altium Products ( Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Home > Configuring PCB Printouts Using Altium Documentation Modified by Jason Howie on Apr 20, 2017 Print-based

More information

For more detailed information on the differences between DelphiScript and Object Pascal, refer to the DelphiScript Reference document.

For more detailed information on the differences between DelphiScript and Object Pascal, refer to the DelphiScript Reference document. Writing Scripts Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 Related pages Script Editor Tools Scripting System Panels Parent page: Scripting Writing Scripts There a number of

More information

Published on Online Documentation for Altium Products (http://www.altium.com/documentation)

Published on Online Documentation for Altium Products (http://www.altium.com/documentation) Published on Online Documentation for Altium Products (http://www.altium.com/documentation) Home > PCB Pad Via Templates A New Era for Documentation Modified on Apr 11, 2017 Parent page: PCB Panels The

More information

Published on Online Documentation for Altium Products (http://www.altium.com/documentation)

Published on Online Documentation for Altium Products (http://www.altium.com/documentation) Published on Online Documentation for Altium Products (http://www.altium.com/documentation) Home > Managed Projects Usability Improvements A New Era for Documentation Modified by Rob Evans on Apr 11, 2017

More information

Published on Online Documentation for Altium Products (

Published on Online Documentation for Altium Products ( Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Home > Storage Manager Using Altium Documentation Modified by Jason Howie on Jun 16, 2017 Parent page: System

More information

eproduct Designer A Simple Design and Simulation Tutorial

eproduct Designer A Simple Design and Simulation Tutorial eproduct Designer A Simple Design and Simulation Tutorial Written by Bahram Dahi Fall 2003 Updated Spring 2007 Dashboard Project management tool 1. In the main window, click on the File menu and select

More information

Storage Manager. Summary. Panel access. Modified by on 10-Jan-2014

Storage Manager. Summary. Panel access. Modified by on 10-Jan-2014 Storage Manager Old Content - visit altium.com/documentation Modified by on 10-Jan-2014 Related panel: Differences Panel Related documents: Version Control and Altium Designer Version Control Terminology

More information

Editing Multiple Objects. Contents

Editing Multiple Objects. Contents Editing Multiple Objects Contents Selecting Multiple Objects Inspecting the Objects Editing the Objects Editing Group Objects Step 1. Selecting the Capacitors Step 2. Changing the Comment String Step 3.

More information

SAP Favorites. You can manage your own SAP menu Favorites in multiple ways: 1. From the SAP menu bar click on Favorites to display your options:

SAP Favorites. You can manage your own SAP menu Favorites in multiple ways: 1. From the SAP menu bar click on Favorites to display your options: SAP Favorites SAP Favorites... 1 Add Favorite (available options)... 3 Edit Favorites:... 4 Delete Favorites (available options)... 5 Add Folders to Favorites... 6 Moving the Placement of Favorites (available

More information

Importing the Source Models. Placing a 3D Model in the Workspace. Modified by on 25-Jul-2014

Importing the Source Models. Placing a 3D Model in the Workspace. Modified by on 25-Jul-2014 Importing the Source Models Old Content - visit altium.com/documentation Modified by on 25-Jul-2014 Placing a 3D Model in the Workspace A 3D model can be placed into a PCB document at any time. Note that

More information

Using the Customize Dialog Box

Using the Customize Dialog Box Toolbar Tools > Customize Using the Customize Dialog Box The Customize tool is used to define custom work environment, toolbar, and tool settings. The Customize dialog box appears when you access the Customize

More information

Publish to PDF. Contents

Publish to PDF. Contents Publish to PDF Contents OutputJob Editor Adding New Outputs Adding Output Media Assigning Outputs to the Output Medium Publishing your Outputs Publish to PDF Configuring PDF Medium Output File Path Zoom

More information

A board is split into distinct regions by placing Split Lines (blue in color), which run from one edge of the board shape to another edge.

A board is split into distinct regions by placing Split Lines (blue in color), which run from one edge of the board shape to another edge. Board Region Old Content - visit altium.com/documentation Modified by Admin on Nov 6, 2013 Parent page: Objects A board is split into distinct regions by placing Split Lines (blue in color), which run

More information

Releasing a Schematic Sheet to a Vault

Releasing a Schematic Sheet to a Vault Releasing a Schematic Sheet to a Vault Old Content - see latest equivalent Modified by Jason Howie on 31-May-2017 Parent article: Design Content Management Being able to re-use design content is something

More information

Unified Cursor-Snap System (PCB)

Unified Cursor-Snap System (PCB) Unified Cursor-Snap System (PCB) Old Content - visit altium.com/documentation Modified by on 21-Nov-2013 Related Videos Advanced Snap Management Cursor snap is the process whereby the physical mouse cursor's

More information

USER MANUAL SATORI TEAM

USER MANUAL SATORI TEAM KANBAN USER MANUAL SATORI TEAM Table of Contents KanBan... 4 1. Introduction... 4 2. Roles and privileges... 6 3. Process flow... 6 4. Descriptions... 7 a) Creating the Board... 7 b) Creating the section...

More information

Welcome to the Altium Designer Environment

Welcome to the Altium Designer Environment Welcome to the Altium Designer Environment Summary Guide GU0112 (v1.0) April 29, 2005 Altium Designer brings a complete electronic product development environment to your PC s Desktop, providing multi-document

More information

Working with Excel involves two basic tasks: building a spreadsheet and then manipulating the

Working with Excel involves two basic tasks: building a spreadsheet and then manipulating the Working with Excel You use Microsoft Excel to create spreadsheets, which are documents that enable you to manipulate numbers and formulas to create powerful mathematical, financial, and statistical models

More information

Defining Board Regions and Bending Lines

Defining Board Regions and Bending Lines Defining Board Regions and Bending Lines Old Content - visit altium.com/documentation Modified by on 29-Nov-2016 Related Videos Bending Lines Layer Stack Regions A Board Region is the term used to describe

More information

EDAConnect-Dashboard User s Guide Version 3.4.0

EDAConnect-Dashboard User s Guide Version 3.4.0 EDAConnect-Dashboard User s Guide Version 3.4.0 Oracle Part Number: E61758-02 Perception Software Company Confidential Copyright 2015 Perception Software All Rights Reserved This document contains information

More information

Working with Excel CHAPTER 1

Working with Excel CHAPTER 1 CHAPTER 1 Working with Excel You use Microsoft Excel to create spreadsheets, which are documents that enable you to manipulate numbers and formulas to quickly create powerful mathematical, financial, and

More information

Defining Net Classes by Area on a Schematic. Creating a Net Class from a Blanket Directive. Modified by Admin on Sep 13, Blankets in Schematic

Defining Net Classes by Area on a Schematic. Creating a Net Class from a Blanket Directive. Modified by Admin on Sep 13, Blankets in Schematic Defining Net Classes by Area on a Schematic Old Content - visit altium.com/documentation Modified by Admin on Sep 13, 2017 Related Video Blankets in Schematic Altium Designer already allows you to create

More information

Summary. Parent Page: PCB Panels

Summary. Parent Page: PCB Panels Published on Online Documentation for Altium Products (http://www.altium.com/documentation) 主页 > PCB - 3D Models Altium 技术文档新纪元 Modified by Annika Krilov on Apr 11, 2017 Parent Page: PCB Panels The 3D

More information

Caja File Manager. Desktop User Guide

Caja File Manager. Desktop User Guide Caja File Manager Desktop User Guide Desktop User Guide» Working with Files This chapter describes how to use the Caja file manager. Introduction Spatial Mode Browser Mode Opening Files Searching For Files

More information

Moving to Altium Designer from Protel 99 SE. Contents

Moving to Altium Designer from Protel 99 SE. Contents Moving to Altium Designer from Protel 99 SE Contents Design Database Become a Design Workspace & Projects Importing a 99 SE Design Database Creating the Altium Designer Project(s) Manually Adding and Removing

More information

Published on Online Documentation for Altium Products (https://www.altium.com/documentation)

Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Home > PCBLIB List A New Era for Documentation Modified by Susan Riege on Jan 24, 2018 Parent Page PCB Panels

More information

Print Station. Point-and-Click Printing WHITE PAPER

Print Station. Point-and-Click Printing WHITE PAPER Print Station Point-and-Click Printing WHITE PAPER Contents Overview 3 Printing with Print Station 4 Easy-to-use Browser Interface 4 Familiar Folder Navigation 5 Search Functionality 6 Informative Display

More information

Extensions Management Interface. Parent page: System Installation, Licensing & Management

Extensions Management Interface. Parent page: System Installation, Licensing & Management Published on Online Documentation for Altium Products (https://www.altium.com/documentation) 主页 > 扩展Altium Designer Using Altium Documentation Modified by Jun Chu on Jan 29, 2018 Parent page: System Installation,

More information

The scripting system handles two types of components: Visual and Non-visual components.

The scripting system handles two types of components: Visual and Non-visual components. Forms and Components Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 Parent page: DelphiScript Overview of Graphical Components The scripting system handles two types of components:

More information

CROMWELLSTUDIOS. Content Management System Instruction Manual V1. Content Management System. V1

CROMWELLSTUDIOS. Content Management System Instruction Manual V1.   Content Management System. V1 Content Management System Instruction Manual V1 www.cromwellstudios.co.uk Cromwell Studios Web Services Content Management System Manual Part 1 Content Management is the system by which you can change

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 1 Databases and Database Objects: An Introduction Objectives Design a database to satisfy a collection of requirements Describe the features of the Access window Create a

More information

2. Click on the Launch button and select Terminal. A window will appear which looks like:

2. Click on the Launch button and select Terminal. A window will appear which looks like: 1. Log-in to one of the lab computers. If given a choice, select Gnome/Java Desktop (JDS) as your window manager. Don't select the Common Desktop Environment (CDE). You should then see something like the

More information

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets Dreamweaver Basics Planning your website Organize site structure Plan site design & navigation Gather your assets Creating your website Dreamweaver workspace Define a site Create a web page Linking Manually

More information

Collaborating between Altium Designer and SOLIDWORKS

Collaborating between Altium Designer and SOLIDWORKS Collaborating between Altium Designer and SOLIDWORKS Old Content - visit altium.com/documentation Mod ifi ed by Jas on How ie on 21- Oct -20 16 Parent page: MCAD Co-Designer: SOLIDWORKS This documentation

More information

Published on Online Documentation for Altium Products (

Published on Online Documentation for Altium Products ( Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Home > Managed Schematic Symbols Using Altium Documentation Modified by Jason Howie on Jun 22, 2018 Parent page:

More information

ICS Tutorials: Basic Operations

ICS Tutorials: Basic Operations ICS Tutorials: Basic Operations This tutorial introduces the basic components of Builder Xcessory. For more detailed information, see the Builder Xcessory Reference Manual. This book is directly accessible

More information

JAMS 7.X Getting Started Guide

JAMS 7.X Getting Started Guide Table of Contents JAMS Overview 2 Working with Servers 3-4 The JAMS Client Interface 5 Customizing the JAMS Client 6-8 JAMS Scheduler Overview 9 Defining Folders and Jobs 10-13 1 2017 MVP Systems Software,

More information

Building an Integrated Library

Building an Integrated Library Building an Integrated Library Old Content - visit altium.com/documentation Modified by on 6-Nov-2013 Integrated libraries combine schematic libraries with their related PCB footprints and/or SPICE and

More information

Interaction Style Categories. COSC 3461 User Interfaces. Windows. Window Manager

Interaction Style Categories. COSC 3461 User Interfaces. Windows. Window Manager COSC User Interfaces Module 2 Supplemental Materials WIMP Interfaces Interaction Style Categories Command-line interfaces Menus Natural Language Question/answer and query dialog Form-fills and spreadsheets

More information

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Slide 1 Customizing Outlook Course objectives Create a custom toolbar and customize the menu bar; customize the Quick Access toolbar,

More information

Reading: Managing Files in Windows XP

Reading: Managing Files in Windows XP Student Resource 13.4a Reading: Managing Files in Windows XP Directions: All recent versions of Windows (XP, Vista, Windows 7) have fairly similar ways of managing files, but their graphic user interfaces

More information

Google Earth. Tutorials. Tutorial 2: Annotating Google Earth

Google Earth. Tutorials. Tutorial 2: Annotating Google Earth Google Earth Tutorials Tutorial 2: Annotating Google Earth Google Earth makes it easy to create a map with annotations - you can add placemarks (points), paths (lines), polygons in Google Earth, and add

More information

Managed Projects. Modified by Jason Howie on 31-May-2017

Managed Projects. Modified by Jason Howie on 31-May-2017 Managed Projects Old Content - see latest equivalent Modified by Jason Howie on 31-May-2017 Altium Designer 14.3, in conjunction with the latest Altium Vault, brings support for Managed Projects. In the

More information

Published on Online Documentation for Altium Products (

Published on Online Documentation for Altium Products ( Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Home > Managing Users Using Altium Documentation Modified by Jason Howie on May 8, 2017 Parent page: Browser-based

More information

Schematic Editing Essentials

Schematic Editing Essentials Summary Application Note AP0109 (v2.0) March 24, 2005 This application note looks at the placement and editing of schematic objects in Altium Designer. This application note provides a general overview

More information

This document provides detailed information on placing components from a database using Altium Designer's SVN Database Library feature.

This document provides detailed information on placing components from a database using Altium Designer's SVN Database Library feature. Old Content - visit altium.com/documentation Mod ifi ed by on 13- Sep -20 17 This document provides detailed information on placing components from a database using Altium Designer's SVN Database Library

More information

1. Adjusting Your Work Area

1. Adjusting Your Work Area 21 1. Adjusting Your Work Area You can customize the Windows Vista operating system to look and function exactly how you want. In the book Windows Vista for SENIORS you learned for example how to change

More information

To Do Panel. Contents

To Do Panel. Contents To Do Panel Contents Function Content and Use Adding Project-level To-Do Items Adding Document-level To-Do Items Right-click Menu Notes See Also Function The To-Do panel lists all To-Do items that are

More information

Exploring CircuitMaker

Exploring CircuitMaker Exploring CircuitMaker Modified by Phil Loughhead on 2-Jun-2015 Getting Started Driving a PCB Design through CircuitMaker Project Management Component Management Variants Parent page: CircuitMaker Documentation

More information

Horizon Launcher Configuration Guide

Horizon Launcher Configuration Guide Horizon Launcher Configuration Guide Windows NT and Windows 2000 are registered trademarks of Microsoft Corporation. All other product or company names are trademarks or registered trademarks of their

More information

PCB 3D Movie Editor. Summary. Modified by on 13-Sep D PCB Movie Editor. Parent page: Panels

PCB 3D Movie Editor. Summary. Modified by on 13-Sep D PCB Movie Editor. Parent page: Panels PCB 3D Movie Editor Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 Related Videos 3D PCB Movie Editor Parent page: Panels Use the PCB 3D Movie Editor panel to create a 3D movie.

More information

Network Management Software ALLNET Zone Controller

Network Management Software ALLNET Zone Controller Network Management Software ALLNET Zone Controller For ALL0558N / ALL02850N / ALL02860ND / ALL02880ND User Manual v1.0 Table of Contents 1. Installation & Un-installation... 4 1.1. Install NMS Suite...

More information

Published on Online Documentation for Altium Products (

Published on Online Documentation for Altium Products ( Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Home > Simulation Profiles Using Altium Documentation Modified by Jason Howie on Dec 14, 2017 Along with other

More information

MODULE III: NAVIGATING AND FORMULAS

MODULE III: NAVIGATING AND FORMULAS MODULE III: NAVIGATING AND FORMULAS Copyright 2012, National Seminars Training Navigating and Formulas Using Grouped Worksheets When multiple worksheets are selected, the worksheets are grouped. If you

More information

Schematic Symbol Generation Tool

Schematic Symbol Generation Tool Schematic Symbol Generation Tool Old Content - visit altium.com/documentation Modified by Rob Evans on May 4, 2015 The task of creating a component library symbol and its pin data has become an increasingly

More information

Changing Button Images in Microsoft Office

Changing Button Images in Microsoft Office Changing Button Images in Microsoft Office Introduction This document deals with creating and modifying the button images used on Microsoft Office toolbars. Rarely is there a need to modify a toolbar button

More information

This book is about using Microsoft Excel to

This book is about using Microsoft Excel to Introducing Data Analysis with Excel This book is about using Microsoft Excel to analyze your data. Microsoft Excel is an electronic worksheet you can use to perform mathematical, financial, and statistical

More information

3D Body. Summary. Modified by Admin on Sep 13, Parent page: Objects

3D Body. Summary. Modified by Admin on Sep 13, Parent page: Objects 3D Body Old Content - visit altium.com/documentation Modified by Admin on Sep 13, 2017 Parent page: Objects A sphere, a cylinder and 4 extruded rectangles have been used to create the 3D body for an LED.

More information

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box.

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box. Visual Basic Concepts Hello, Visual Basic See Also There are three main steps to creating an application in Visual Basic: 1. Create the interface. 2. Set properties. 3. Write code. To see how this is done,

More information

JScript Reference. Summary. Exploring the JScript language. Introduction. This reference manual describes the JScript scripting language used in DXP.

JScript Reference. Summary. Exploring the JScript language. Introduction. This reference manual describes the JScript scripting language used in DXP. Summary Technical Reference TR0122 (v1.0) December 01, 2004 This reference manual describes the JScript scripting language used in DXP. Exploring the JScript language The following topics are covered in

More information

To complete this project, you will need the following folder:

To complete this project, you will need the following folder: = CHAPTER 1 Windows 7 More Skills 12 Use Libraries to Organize Files A library is a collection of files and folders stored in different locations on your computer that can be viewed as a single folder.

More information

USING THE Integrated Library to Database Library Translator WIZARD

USING THE Integrated Library to Database Library Translator WIZARD Published on Online Documentation for Altium Products (http://www.altium.com/documentation) Home > Integrated Library To Database Library Translator Wizard A New Era for Documentation Modified by Phil

More information

OutputJob Editor Reference

OutputJob Editor Reference OutputJob Editor Reference Summary This reference provides information on the OutputJob Editor which is used to configure various output types including Assembly Outputs, BOMs, Gerber, NC Drill, Netlists,

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 1 Databases and Database Objects: An Introduction Objectives Describe the features of the Access window Create a database Create tables in Datasheet and Design views Add records

More information

Fireworks 3 Animation and Rollovers

Fireworks 3 Animation and Rollovers Fireworks 3 Animation and Rollovers What is Fireworks Fireworks is Web graphics program designed by Macromedia. It enables users to create any sort of graphics as well as to import GIF, JPEG, PNG photos

More information

Published on Online Documentation for Altium Products (

Published on Online Documentation for Altium Products ( Published on Online Documentation for Altium Products (https://www.altium.com/documentation) Home > Using Version Control Using Altium Documentation Modified by Rob Evans on Apr 11, 2017 RELATED INFORMATION

More information

Text strings are available for placement in both Schematic and Schematic Library Editors by:

Text strings are available for placement in both Schematic and Schematic Library Editors by: Text String Old Content - visit altium.com/documentation Modified by on 20-Nov-2013 Parent page: Objects A placed Text String. Summary A text string (also referred to as an annotation) is a non-electrical

More information

All Applications Release Bulletin January 2010

All Applications Release Bulletin January 2010 All Applications Release Bulletin January 2010 In this bulletin... Online Enrollment: HTML Forms for Contracts 2 System Administration: MBP Online User Accounts 11 About Release 91_6 This release includes

More information

Component Templates. The Component Template Item Type. Modified by Jason Howie on 31-May-2017

Component Templates. The Component Template Item Type. Modified by Jason Howie on 31-May-2017 Component Templates Old Content - see latest equivalent Modified by Jason Howie on 31-May-2017 Altium Vault 2.5, in conjunction with Altium Designer 15.1, brings support for creating and defining Component

More information

Generating Output for an Assembly Variant. Selecting the Variant. Modified by on 6-Nov-2013

Generating Output for an Assembly Variant. Selecting the Variant. Modified by on 6-Nov-2013 Generating Output for an Assembly Variant Old Content - visit altium.com/documentation Modified by on 6-Nov-2013 Assembly and/or report-based output for a variant is typically generated using an Output

More information

Lab 5: Reporting with RPE

Lab 5: Reporting with RPE Objectives After completing this lab, you will be able to: Report on Rhapsody Models and Linked OSLC Artifacts using Rational Publishing Engine Scenario In this Lab, you will first start the Rhapsody REST

More information

Parent page: PCB Panel

Parent page: PCB Panel Published on Online Documentation for Altium Products (https://www.altium.com/documentation) 主页 > PCB Library Using Altium Documentation Modified by Annika Krilov on Apr 11, 2017 Parent page: PCB Panel

More information

Comments. Summary. Modified by Rob Evans on Jun 10, Parent page: Workspace Manager Panels

Comments. Summary. Modified by Rob Evans on Jun 10, Parent page: Workspace Manager Panels Comments Modified by Rob Evans on Jun 10, 2015 Parent page: Workspace Manager Panels The Comments panel showing a collection of user comments for the currently active project. Summary The Comments panel

More information

If you are new to version control systems and are wondering where to start, read the article Version Control and Altium Designer.

If you are new to version control systems and are wondering where to start, read the article Version Control and Altium Designer. Tutorial - Using Version Control in Altium Designer Old Content - visit altium.com/documentation Modified by on 6-Nov-2013 Altium Designer supports Subversion (SVN) and Concurrent Versions System (CVS).

More information

Creating Buttons and Pop-up Menus

Creating Buttons and Pop-up Menus Using Fireworks CHAPTER 12 Creating Buttons and Pop-up Menus 12 In Macromedia Fireworks 8 you can create a variety of JavaScript buttons and CSS or JavaScript pop-up menus, even if you know nothing about

More information

Class Structure in the PCB

Class Structure in the PCB Class Structure in the PCB Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 Related Videos Structured Classes in the PCB Editor Altium Designer already provided high-quality, robust

More information

Securing Design Source Inside a Design Repository

Securing Design Source Inside a Design Repository Securing Design Source Inside a Design Repository Old Content - see latest equivalent Modified by Jason Howie on 31-May-2017 Parent article: Board Design Release The best way of working from a known set

More information

Enhanced Polygon Editing and Management. Poured or Unpoured Polygons. Modified by Jason Howie on Nov 13, 2014

Enhanced Polygon Editing and Management. Poured or Unpoured Polygons. Modified by Jason Howie on Nov 13, 2014 Enhanced Polygon Editing and Management Old Content - visit altium.com/documentation Modified by Jason Howie on Nov 13, 2014 Most board designs today incorporate areas of copper, which are easily created

More information

The Spectacle Handbook. Boudhayan Gupta Boudhayan Gupta

The Spectacle Handbook. Boudhayan Gupta Boudhayan Gupta Boudhayan Gupta Boudhayan Gupta 2 Contents 1 Introduction 5 2 Starting Spectacle 6 3 Using Spectacle 7 3.1 Taking A Screenshot.................................... 8 3.1.1 Capture Mode....................................

More information

Outline Vertices Editor for Polygonal Pours and Regions

Outline Vertices Editor for Polygonal Pours and Regions Outline Vertices Editor for Polygonal Pours and Regions Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 Related Videos Outline Vertices Editor for Polygon Pours and Regions Offering

More information

IDX Support. Extension Access. Modified by on 13-Sep-2017

IDX Support. Extension Access. Modified by on 13-Sep-2017 IDX Support Old Content - visit altium.com/documentation Modified by on 13-Sep-2017 As more and more electronic products involve both electrical and mechanical components, and product release cycles get

More information

1. BlueSoleil isend Introduction: 2. Function:

1. BlueSoleil isend Introduction: 2. Function: 1. BlueSoleil isend Introduction: BlueSoleil isend is a BlueSoleil plug in designed for sending words or pictures to your mobile phone or other Bluetooth devices mainly in two ways: Bluetooth and SMS network.

More information

JScript Reference. Contents

JScript Reference. Contents JScript Reference Contents Exploring the JScript Language JScript Example Altium Designer and Borland Delphi Run Time Libraries Server Processes JScript Source Files PRJSCR, JS and DFM files About JScript

More information

SILVACO. An Intuitive Front-End to Effective and Efficient Schematic Capture Design INSIDE. Introduction. Concepts of Scholar Schematic Capture

SILVACO. An Intuitive Front-End to Effective and Efficient Schematic Capture Design INSIDE. Introduction. Concepts of Scholar Schematic Capture TCAD Driven CAD A Journal for CAD/CAE Engineers Introduction In our previous publication ("Scholar: An Enhanced Multi-Platform Schematic Capture", Simulation Standard, Vol.10, Number 9, September 1999)

More information

Folders Projects, Folders and Menus. Table of Contents. 1.0 Folder Types. 2.0 Folder Menu Commands

Folders Projects, Folders and Menus. Table of Contents. 1.0 Folder Types. 2.0 Folder Menu Commands Folders Projects, Folders and Menus Table of Contents 1.0 Folder Types 2.0 Folder Menu Commands 1.0 Folder Types ProjectWise folders differ from Windows folders in that each ProjectWise folder has a type,

More information

Adding a Simulation Model to a Component Definition

Adding a Simulation Model to a Component Definition Adding a Simulation Model to a Component Definition Old Content - see latest equivalent Modified by on 13-Sep-2017 Parent article: Releasing a Component Definition to a Vault On the design side, each design

More information

Acrobat X Professional

Acrobat X Professional Acrobat X Professional Toolbar Well Page Navigations/Page Indicator Buttons for paging through document Scroll Bar/box page indicator appears when using the scroll button to navigate. When you release

More information

NetIQ Advanced Authentication Framework - Virtual Desktop Authentication (VDA) Profile Editor. Administrator's Guide. Version 5.1.

NetIQ Advanced Authentication Framework - Virtual Desktop Authentication (VDA) Profile Editor. Administrator's Guide. Version 5.1. NetIQ Advanced Authentication Framework - Virtual Desktop Authentication (VDA) Profile Editor Administrator's Guide Version 5.1.0 Table of Contents 1 Table of Contents 2 Introduction 3 About This Document

More information

Getting Started with. Microsoft Office 2010

Getting Started with. Microsoft Office 2010 Getting Started with Microsoft Office 2010 Microsoft Office 2010 Objectives Explore the programs in Microsoft Office Start programs and switch between them Explore common window elements Minimize, maximize,

More information

Multi-line PCB Text Support

Multi-line PCB Text Support Multi-line PCB Text Support Old Content - visit altium.com/documentation Modified by on 29-Nov-2016 In this latest release of Altium Designer, the PCB Editor s String object now supports text that can

More information

Getting Started with BarchartX

Getting Started with BarchartX Getting Started with BarchartX April 2007 Getting Started with BarchartX I ve signed up for BarchartX (or, signed up for a free trial). Now what? Within minutes, you will receive an email from Barchart

More information

Excel window. This will open the Tools menu. Select. from this list, Figure 3. This will launch a window that

Excel window. This will open the Tools menu. Select. from this list, Figure 3. This will launch a window that Getting Started with the Superpave Calculator worksheet. The worksheet containing the Superpave macros must be copied onto the computer. The user can place the worksheet in any desired directory or folder.

More information

Video Output Container. Access. Modified by Admin on Nov 26, D PCB Movie Editor. Related article: PCB 3D Video

Video Output Container. Access. Modified by Admin on Nov 26, D PCB Movie Editor. Related article: PCB 3D Video Video Output Container Old Content - visit altium.com/documentation Modified by Admin on Nov 26, 2013 Related Videos 3D PCB Movie Editor Related article: PCB 3D Video In support of PCB 3D Video output,

More information