Welcome to Synthiam!

The easiest way to program the most powerful robots. Use technologies by leading industry experts. ARC is a free-to-use robot programming software that makes servo automation, computer vision, autonomous navigation, and artificial intelligence easy.

Get Started
Asked — Edited

Can I Change Notepad Window Names?

I love the fact that you can change the names of the individual controls via the properties. Can you do the same for the NotePad windows? I don't see the option


ARC Pro

Upgrade to ARC Pro

ARC Early Access will give you immediate updates and new features needed to unleash your robot's potential!

AI Support Bot
Related Content
Synthiam
Based on your post activity, we found some content that may be interesting to you. Explore these other tutorials and community conversations.
#1  
Unless someone knows if it can be done from inside the ARC file then the answer is no. *tired*
PRO
USA
#2  
asfaik: No ARC option.

The alternative:

1) Backup the project file, if somethings goes wrong you have the backup.

2) Open the project file with Windows Notepad.

3) Use Menu Edit > Replace...
Find what: <Title>Notepad</Title>
Replace with: <Title>My custom name</Title>

Replacing 3 notepads:

User-inserted image


User-inserted image


User-inserted image


Note 1:
The project file is a Xml document:
1.1) xml tags e.g. Title are case sensitive, preserve the original case
1.2) xml tags are closed with "/", don't forget </Title> closes the <Title>

Note 2:
Use only letters, numbers, underscore and space between <Title></Title>

Note 3:
ARC uses the control name i.e. text between the <Title></Title> to identify the control. Keep each control i.e. Notepad with an unique name.
PRO
USA
#3  
Great
Thanks again ptp!