• Overriding arrow keys in the Object Manager?

    r23 python
    9
    0 Votes
    9 Posts
    1k Views
    ManuelM
    @cairyn said in Overriding arrow keys in the Object Manager?: I guess they didn't make the cut at all...) Good guess, there's no particular reason for not being there.
  • can I have a callback when I close the c4d?

    8
    0 Votes
    8 Posts
    1k Views
    kbarK
    You should definitely be using the built in language system that C4D has. You have string files in your resource folder. One for each language that you want to support. Then C4D handles all this for you and will use the appropriate string file depending what language C4D is set to use (which you change via the preferences->Interface section). This is what @ferdinand posted already above, I just wanted to re-iterate this.
  • Mouse Over Generator Object, no position info

    6
    0 Votes
    6 Posts
    999 Views
    E
    @m_magalhaes Manuel you hero! That was it! DeformedPolygonCacheIterator was the key! Thank you so much!
  • ScrollGroupBegin() is not work in GeUserArea()

    python s24
    7
    0 Votes
    7 Posts
    903 Views
    gheyretG
    @ferdinand I will handle it. Thanks for your help! Cheers~
  • Python SSL error

    Moved python r20
    9
    0 Votes
    9 Posts
    2k Views
    orestiskonO
    @m_adam Thanks Maxime, I'll check that out. The customer was using R23.110
  • Creating "Objects" on Python tag

    python
    3
    0 Votes
    3 Posts
    572 Views
    orestiskonO
    @m_adam That clears it up, thanks Maxime!
  • Sampling an Effector

    r20 c++ sdk
    5
    0 Votes
    5 Posts
    857 Views
    ferdinandF
    Hello @d_schmidt, without further questions or replies, we will consider this topic as solved by Monday, the 30th and flag it accordingly. Thank you for your understanding, Ferdinand
  • Issue with Python MultiProcessing in 24

    3
    0 Votes
    3 Posts
    637 Views
    ferdinandF
    Hello @conductor, without further questions or replies, we will consider this topic as solved by Monday, the 30th and flag it accordingly. Thank you for your understanding, Ferdinand
  • Add a GUI button

    4
    0 Votes
    4 Posts
    839 Views
    ferdinandF
    Hello @stereo_stan, without further questions or replies, we will consider this topic as solved by Monday, the 30th and flag it accordingly. Thank you for your understanding, Ferdinand
  • How to detect a document switching?

    python r23 s24 sdk
    5
    0 Votes
    5 Posts
    859 Views
    ferdinandF
    Hello @mocoloco, without further questions or replies, we will consider this topic as solved by Monday, the 30th and flag it accordingly. Thank you for your understanding, Ferdinand
  • Apply Substance Preset with no User Input.

    Moved
    5
    0 Votes
    5 Posts
    685 Views
    ferdinandF
    Hello @janine-mcmaster, without further questions or replies, we will consider this topic as solved by Monday, the 30th and flag it accordingly. Thank you for your understanding, Ferdinand
  • Add button to run a script

    12
    0 Votes
    12 Posts
    2k Views
    ferdinandF
    Hello @stereo_stan, without further questions or replies, we will consider this topic as solved by Monday, the 30th and flag it accordingly. Thank you for your understanding, Ferdinand
  • MoData Rotations

    5
    0 Votes
    5 Posts
    759 Views
    ferdinandF
    Hello @RenatoT, without further questions or replies, we will consider this topic as solved by Monday, the 30th and flag it accordingly. Thank you for your understanding, Ferdinand
  • Detect Menu/Manager while hovering...

    python maxon api classic api
    4
    1
    0 Votes
    4 Posts
    908 Views
    ferdinandF
    Hello @lasselauch, without further questions or replies, we will consider this topic as solved by Monday, the 30th and flag it accordingly. Thank you for your understanding, Ferdinand
  • Where to find .res documentation?

    3
    0 Votes
    3 Posts
    558 Views
    orestiskonO
    @m_magalhaes Thanks Manuel!
  • 0 Votes
    7 Posts
    759 Views
    ThomasBT
    @m_magalhaes yes thanks that was my idea, too , I created a temporary object, in my case a spline with 0 points and 0 segments and simply exchanged it, thanks.....
  • Python: possible to check if a description is highlighted in AO?

    Moved
    3
    1
    0 Votes
    3 Posts
    510 Views
    R
    thanks.
  • 0 Votes
    5 Posts
    511 Views
    chuanzhenC
    @m_adam Thanks
  • Get string value from long cycle.

    c++ r21
    3
    0 Votes
    3 Posts
    625 Views
    O
    I came up with this solution which is working fine. Thanks for your help. std::string getDropDownName(Description* const description, Int32 group_id, Int32 SelectedItem) { const DescID* singleid = description->GetSingleDescID(); const DescID cid = DescLevel(group_id, DTYPE_LONG, 0); std::string selected_name = ""; if (!singleid || cid.IsPartOf(*singleid, nullptr)) { AutoAlloc<AtomArray> arr; BaseContainer* selectionParameter = description->GetParameterI(DescLevel(group_id, DTYPE_LONG, 0), arr); if (selectionParameter != nullptr) { BaseContainer* items = selectionParameter->GetContainerInstance(DESC_CYCLE); if (items != nullptr) { selected_name = items->GetData(SelectedItem).GetString().GetCStringCopy(); } } } return selected_name; }
  • 0 Votes
    3 Posts
    761 Views
    J
    @m_magalhaes This worked great, thank you.