• Home
  • Members
  • Team
  • Help
  • Search
  • Register
  • Login
  • Home
  • Members
  • Help
  • Search
Hot Door CORE Forum Search Results

Pages (14): 1 2 3 4 5 ... 14 Next »
Jump to page 
Search Results
Post Author Forum Replies Views Posted [asc]
  Thread: The notifier doesn't trigger the action
Post: RE: The notifier doesn't trigger the action

As Rick mentioned, looking at the SDK will show a macro called kAIExportCommandPreNotifierStr, which is what hdi_core uses under the hood for hdi::core:: ExportCommandPreNotifierType. If the callback...
garrett Bugs 4 983 03-22-2023, 04:12 PM
  Thread: preferences->getIntPref seems to malfunction
Post: RE: preferences->getIntPref seems to malfunction

Thanks for the catch that we did not include a method to check for the existence of a pref. I have just added this to hdi_core and it will be present in our next release.
garrett Bugs 4 1,467 03-08-2023, 05:16 PM
  Thread: Translating Unicode between std::string and ai::UnicodeString
Post: RE: Translating Unicode between std::string and ai...

hdi_core is designed to use UTF-8 encoding basically everywhere, which is why you see proper strings when acquiring them via hdi_core. I strongly suggest you work in UTF-8 whenever possible, falling b...
garrett Getting started 1 3,556 02-12-2023, 07:13 PM
  Thread: Can't compile sample projects for CORE 0.8.1 Mac, Xcode 12.4
Post: RE: Can't compile sample projects for CORE 0.8.1 ...

We have not tried moving our dev environments to macOS 13 yet, so for now you're on your own in that territory. My biggest concern is that Apple might have finally removed "legacy project" support fro...
garrett Getting started 6 1,623 01-20-2023, 11:46 AM
  Thread: Can't compile sample projects for CORE 0.8.1 Mac, Xcode 12.4
Post: RE: Can't compile sample projects for CORE 0.8.1 ...

We are now using Xcode 13.4 ourselves, and the sample compiles fine for us, so hard to say why Xcode 12.5 is not working for you. However, Xcode 12.4 was the last to include the macOS 11.1 SDK, so you...
garrett Getting started 6 1,623 01-09-2023, 04:29 PM
  Thread: Can't compile sample projects for CORE 0.8.1 Mac, Xcode 12.4
Post: RE: Can't compile sample projects for CORE 0.8.1 ...

This almost sounds like an Xcode issue. Try installing a fresh Xcode (12/13/14) without adding any legacy stuff to it and see if it will compile the AI 26/27 projects.
garrett Getting started 6 1,623 01-06-2023, 11:33 AM
  Thread: textField cursor lost in Mac 2019, 2020
Post: RE: textField cursor lost in Mac 2019, 2020

We have finally had time to address this aesthetic bug. The fix will be present in the next release of hdi_core. Thanks for reporting it.
garrett Bugs 1 1,194 12-29-2022, 01:50 PM
  Thread: preferences->getIntPref seems to malfunction
Post: RE: preferences->getIntPref seems to malfunction

This is strange, as we made no changes whatsoever to the ai::Preferences class between releases of hdi_core. The class itself is just a thin wrapper over the SDK AIPreferenceSuite, so might be worth c...
garrett Bugs 4 1,467 11-29-2022, 06:26 PM
  Thread: recording and playing back Actions
Post: RE: recording and playing back Actions

Have you verified with the SDK directly (i.e. without hdi_core) that the data is as you expect? Our internal message handler literally takes the pointer to the data that Illustrator provides us, stor...
garrett General discussion 5 81,036 11-29-2022, 06:21 PM
  Thread: hdicoreFiles ungzip
Post: RE: hdicoreFiles ungzip

A while ago we decided we had too many issues with that approach, and switched to downloading a complete Windows installer exe (still gzipped). Then we just ungzip after download completion and launch...
garrett General discussion 8 48,219 11-22-2022, 01:03 PM
  Thread: Hot Door CORE 0.8.1 is now available
Post: Hot Door CORE 0.8.1 is now available

This update brings the following changes: Compatibility with Illustrator 2023 (27) Minor optimization on Macs to use OS 10.15 for x86 and 11.0 for ARM in Illustrator 25.3, 26, and 27 Now compiled a...
garrett Announcements 0 8,526 11-17-2022, 08:24 PM
  Thread: Scrollbar for panels
Post: RE: Scrollbar for panels

Thanks for the suggestion Illia, but this is not something we intend to implement.
garrett Feature requests 1 1,780 09-25-2022, 03:55 PM
  Thread: RSA Signing and Verifying Plugin using OpenSSL
Post: RE: RSA Signing and Verifying Plugin using OpenSSL

While we did not intend for others to utilize OpenSSL functionality outside of what hdi_core itself provides, the version of OpenSSL we're currently compiling against is 1.1.1g. Theoretically you shou...
garrett Getting started 4 3,748 09-01-2022, 12:05 PM
  Thread: Creating Dictionary Prefs + PrefDataVector parameter for *members
Post: RE: Creating Dictionary Prefs + PrefDataVector par...

With this constructor the intention is for you to create whatever variety of named PrefData subclass objects you need to appear at the root of a dictionary, add them to a vector, then construct the co...
garrett General discussion 1 16,704 04-26-2022, 05:44 PM
  Thread: Explaining InternetPOST _data and how it is sent
Post: RE: Explaining InternetPOST _data and how it is se...

I suppose the documentation for the data_ param could be worded a bit better; the dictionary will be JSON-encoded automatically by the InternetPOST class when communicating with the target server. As ...
garrett General discussion 1 7,317 04-26-2022, 05:35 PM
  Thread: CORE 0.8.0 ARM projects crash some Macs
Post: RE: CORE 0.8.0 ARM projects crash some Macs

Thanks for reporting this. After looking into it, unfortunately it's not reproducible here. During this Apple Silicon transition, particularly with it occurring "midstream" with Illustrator 2021 (i.e...
garrett Bugs 1 1,029 02-03-2022, 03:27 PM
  Thread: Changes in pointers, ArtVector iterator
Post: RE: Changes in pointers, ArtVector iterator

(01-21-2022, 05:28 PM)Rick Johnson Wrote: Ah, that works! Do I understand correctly that these vectors no longer need to be sent to cleanupVector? Correct (01-21-2022, 05:28 PM)Rick Johnson Wrote:...
garrett General discussion 4 10,139 01-22-2022, 08:37 PM
  Thread: Changes in pointers, ArtVector iterator
Post: RE: Changes in pointers, ArtVector iterator

Use std::unique_ptr when only one reference to some object exists (or is allowed to exist) simultaneously. Use std::shared_ptr when multiple references exist (or are allowed to exist) simultaneously...
garrett General discussion 4 10,139 01-21-2022, 03:50 PM
  Thread: New version
Post: RE: New version

Good tip for potential macOS/Gatekeeper newbies Rick. Yes, managing all these Illustrator versions and architecture targets in one project file is not feasible. There are many little reasons, but the...
garrett General discussion 3 9,894 01-21-2022, 03:46 PM
  Thread: Button shape of appearance
Post: RE: Button shape of appearance

We will likely do this automatically in a future update to make our UI match Adobe's as closely as possible, on a per-AI-version basis.
garrett Feature requests 1 1,473 01-20-2022, 08:47 PM
Pages (14): 1 2 3 4 5 ... 14 Next »
Jump to page