Page 1 of 1

How to set property stackFiles using URL

Posted: Wed Nov 25, 2009 11:17 am
by ale870
Hello,

I wanted to use stackFiles property to assign needed stacks to my main application. My problem is I cannot find a way to setup such property not using a normal filename, but using an URL address (my stacks are located in a remote server).
Can you help me please?

Thank you!

Re: How to set property stackFiles using URL

Posted: Wed Nov 25, 2009 1:03 pm
by BvG
the stackfiles property only works with filepaths, not with urls. you need to make sure yourself that stacks from a remote server are loaded:

Code: Select all

put "aStack.rev" into nameOfStack
go invisible url ("http://yourserver.com/stacks/" & nameOfStack)

Re: How to set property stackFiles using URL

Posted: Wed Nov 25, 2009 2:00 pm
by ale870
Thank you, I will use this workaround :-)