Livelink for graphic design software or solutions?
- 
@d-healey A way to automatically update png in HISE?
This "image pool" is new to me.
https://forum.hise.audio/topic/1047/updating-changed-images?_=1625140766029 - 
Just design your GUI in whatever software you want and then build it in HISE.
 - 
I do that with
Engine.loadImageIntoPool( String id) - 
This post is deleted! - 
i I use like this to load all png-files.
Engine.loadImageIntoPool(png); - 
@MikeB Thank you! :) I will try this..
 - 
@UD-AUDIO
I just saw that I have it in twice - this is the right one.Engine.loadImageIntoPool("{PROJECT_FOLDER}png"); - 
@MikeB Yes, but it doesn't work. Typo is correct and I also hit compile.
Do I need to place the image per script to make it work? - 
@UD-AUDIO said in Livelink for graphic design software or solutions?:
Do I need to place the image per script to make it work?
How many interface scripts do you have?
 - 
@d-healey Only one I guess..
Content.makeFrontInterface(1200, 700);; //IMAGE POOL Engine.loadImageIntoPool("{PROJECT_FOLDER}GUI.png"); - 
Your image is in the project folder in the Images folder?
You can then see it in the ImagePool window.

 - 
@MikeB It is! But I can't figure out how to update it automatically.
 - 
@UD-AUDIO
I don't understand - what is supposed to update automatically? - 
@MikeB There is a reload function for the image pool right?
But it would be nice to load all changed images immediately by hitting compile etc. - 
that's actually done by the
Engine.loadImageIntoPool();If it is at the top of the first lines of init
and you press F5. - 
@MikeB Thanks! I need to try it again :)
 - 
Use exactly the same - without the path with () at the end! - then it applies to all ImageFiles
Engine.loadImageIntoPool();