timmylogue
says
I’ve been messing around with Google Weather in AS3 . I was wondering if there is a way to call my own custom icons instead of using their low quality crappy ones lol.
I’ve seen this done with some different languages.
Tim
timmylogue
says
Here is example of php.
if($theAPIResponse->icon->attributes()->data == '/ig/images/weather/partly_cloudy.gif') {
// Override the nodes data attribute with your custom image
$theAPIResponse->icon->attributes()->data = '/path/to/your/custom_image.gif';
}
