special characters (ÄÖÜ) in PP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Englisch Version:
Hi Autodesk Community,
I got a Problem with special characters in my Heidenhain PP (ÄÖÜ)
I´m using a German Version of Fusion360.
If I Use Parameterized feeds I get the translation „Übergang“
60 CYCL DEF 32.1
61 FN0: Q50=2925 ; Schneiden
62 FN0: Q52=2925 ; Schlichten
63 FN0: Q57=8000 ; Eintauchen
64 FN0: Q59=8000 ; �bergang
65 L Z+36.659 FMAX
66 L Z+34.659 FQ1607
Following block of the PP is generating this code.
writeBlock("FN0: Q" + (1600 + feedContext.id) + "=" + feedFormat.format(feedContext.feed) + " ; " + feedContext.description)
The NC-Control can not work with special characters.
„operation:noEngagementFeedrate“ gets translated to Übergang.
There seams to be a solution for this Problem.
You can define your own translations in the PP.
An example:
if (hasParameter("operation:noEngagementFeedrate")) {
if (movements & (1 << MOVEMENT_LINK_DIRECT)) {
var feedContext = new FeedContext(id, localize("Verbindung"), getParameter("operation:noEngagementFeedrate"));
activeFeeds.push(feedContext);
activeMovements[MOVEMENT_LINK_DIRECT] = feedContext;
Now „operation:noEngagementFeedrate“ will get translatet to Verbindung not Übergang.
I can modify my PP, but with the next upgrade I have to do it again.
Is there a better solution, or is this a topic for support?
Best regards Alexander