simple questions

hi, i’m writing a theme script and since it is my first real blender script i’m running into some obstacles. i’d be very happy if you could help my bypass them.

first, i’m calling the file browser but currently it goes to a default path, i’d like it to start in a custom set folder. Is there a solution to this?

secondly, i’m having some problems with making a drop down list UI entry. The references i’ve found seem to be using an outdated method. I need to generate a drop down which contains the content of a python list.

if you can point me in the right direction on these issues i’d be very thankful

i’ve got a really sweet dark theme to share with you when the script is done :wink:

ok, with some guidance from jaydez i could solve the second problem. I had to use the bpy.props.EnumProperty() function to define the list of items. check the ANT landscape script for reference.

could still use some advice on the first problem though