Cyrillic in object

Forum to report bugs for SDStudio Design Environment
Post Reply
ctaty3
Registered User
Posts: 22
Joined: Tue Jan 23, 2018 9:24 am

Cyrillic in object

Post by ctaty3 »

When you enter a Cyrillic object, the following error appears in the properties of the object. Do you plan to support Cyrillic?
Attachments
Скриншот 16-07-2018 084311.png
Скриншот 16-07-2018 084311.png (10.03 KiB) Viewed 3911 times
User avatar
Serkan
Developer
Developer
Posts: 214
Joined: Thu Jul 04, 2013 8:44 pm
Location: Windows.h
Contact:

Post by Serkan »

Object names are defined as the variables therefore they can not contain special characters ,
so that's not only Cyrillic anything other than a-z 0-9 _

A variable can not start with a number , can not contain spaces

The object name you entered is used in the scripts like below

Code: Select all

Object:CreateSomeThing(MyObjectName);
Or

Code: Select all

MyobjectName:DoSomeThing();
Post Reply