Hey, I'm working on a project in which i need to load images from relative link. The problem is i'm not sure how to call a proper path. Let's say I got it on "www.gamedomain.com". I did links to external files (images loaded into a sprite):
{ Load image from "www.gamedomain.com/data/minigame1/image.jpg". }
Asuming that the main file is executioned from "www.gamedomain.com" i tried put path links like
{ Load image from "/data/minigame1/"&loadedImage } (loadedImage a variable that holds file name).
Unfortunately it didn't work. Any idea how to make it possible? I asume that if it will work I could load files the same way from local drive from relative to the game file path - is it right?
Any help would be appreciated. Thanks in advance