Search found 307 matches

by heron
Sun Oct 08, 2023 7:43 am
Forum: Help on using FreeCAD
Topic: Font is too Small
Replies: 5
Views: 720

Re: Font is too Small

How can I increase the font size of these elements? Hello, I also had to play with some settings to fix this issue. I would try: 1.- Set the properties of the windows executable freecad.exe mentioned above as default 2.- Set the DisableDpiScaling freecad parameter to false: Tools / Edit parameters ...
by heron
Sat Oct 07, 2023 6:21 am
Forum: Help on using FreeCAD
Topic: Attachment modes: Different texts in Part and PartDesign
Replies: 7
Views: 835

Re: Attachment modes: Different texts in Part and PartDesign

How many AttachEngines are available?: I'm not sure where to find information on this, I looked for something on this before, but I've never found anything. I don't think I know more about this topic than you do now, but I think the value of the property depends on the type of object, not specifica...
by heron
Fri Oct 06, 2023 9:18 pm
Forum: Help on using FreeCAD
Topic: Attachment modes: Different texts in Part and PartDesign
Replies: 7
Views: 835

Re: Attachment modes: Different texts in Part and PartDesign

Roy_043 wrote: Thu Oct 05, 2023 3:46 pm For some reason different attachment mode texts are shown in the Attachment task panel depending on the Workbench. Why this inconsistency?
Hello @Roy_043, are you aware of the AttacherType property of the object?
by heron
Fri Sep 15, 2023 8:39 pm
Forum: Foro em Português
Topic: Fallo al pasar de Part a PartDesing
Replies: 2
Views: 34602

Re: Fallo al pasar de Part a PartDesing

Hola TonyJG , bienvenido al foro. Primeramente decirte que has publicado en el foro general que es en inglés y algún moderador ha movido el tema al foro en Portugués :lol:. Para la próxima publica en el foro en español, o si publicas en el general hazlo en inglés. No es una buena idea seguir tutoria...
by heron
Wed Aug 30, 2023 6:37 pm
Forum: Announcements & Features
Topic: Announcing: FreeCAD News
Replies: 107
Views: 56986

Re: Announcing: FreeCAD News

chennes wrote: Wed Aug 30, 2023 5:46 pm Thanks for the catch
Thanks to you, this blog is great for those of us who like to stay updated on FreeCAD's advancements.
by heron
Wed Aug 30, 2023 6:29 pm
Forum: Users Showcase
Topic: Use of an Assembly4 Time Variable for Mechanism Design and Assembly--final comments re assembly constraints
Replies: 13
Views: 11953

Re: Use of an Assembly4 Time Variable for Mechanism Design and Assembly--Example 3 Three Claw Gripper

Hello ppemawm , first of all thanks for share this. Seeing your models on this topic, I was wondering why you chose to use a time variable as the basis for referencing the other variables, since In the last model for instance, it appears more logical to use the piston's own stroke. However, upon wat...
by heron
Wed Aug 30, 2023 5:32 pm
Forum: Announcements & Features
Topic: Announcing: FreeCAD News
Replies: 107
Views: 56986

Re: Announcing: FreeCAD News

Hello @chennes, There is some wrong in the last section "PR stats". The dates and the lines numbers of the total codebase change are the same as those of last week.
by heron
Wed Aug 30, 2023 9:41 am
Forum: Help on using FreeCAD
Topic: System Fckd up
Replies: 5
Views: 697

Re: System Fckd up

Hello, read the red banner at the top of the page and follow its instructions please
by heron
Thu Aug 17, 2023 8:24 pm
Forum: Python scripting and macros
Topic: how to add FCMacro file extension in VScode
Replies: 2
Views: 560

Re: how to add FCMacro file extension in VScode

Is there a way to change this Hello, in order for VSCode to recognize freecad macros as Python files, you need to set the "file.associations" key in the settings.json configuration file. { "files.associations": { "*.FCMacro": "python", "*.py": "...
by heron
Thu Aug 17, 2023 6:39 am
Forum: Python scripting and macros
Topic: How to script OUTSIDE of FreeCAD
Replies: 10
Views: 1646

Re: How to script OUTSIDE of FreeCAD

maltfield wrote: Thu Aug 17, 2023 1:57 am how do I import a workbench/tool?
Hello, to import the Draft module, you can add the path to Draft.py to the sys.path. On Windows:

Code: Select all

>>> sys.path.append( 'C:\Program Files\FreeCAD\Mod\Draft' )