
you would need a something on server side that receives and saves the file thereI'm assuming it is not possible. Flash is client side and the xml file will be on the server, unless we allow the editor plugin some kind of access to the server it should not be possible. Am i right?

right, the current editor plugin doesn't support the <scene> tag,I created an xml file with two scenes. When i view the xml file with the editor plugin i am able to see the code for one scene only, that too without the scene tags. Is there any option to load the xml with scene tags into the xml file that is displayed by the editor plugin?
|
|
Source code |
1 |
kmakemultires.exe templates/normal.config myimage.jpeg |
right, the linux download just contains the binaries,The zip file doesn't have the templates or the config file
right, that will be fixed in the next release,Also, there seems to be a bug with the editor plugin. In the flare tags of the lensflareset tag, pixvpos attribute appears twice.
right, deleting hotspots doesn't work in this version,Do i have to set any attribute to the plugin or the hotspots to be able to delete them or should i use a different version?
I can see a new button for adding image hotspots but i can't see any documentation or button for deleting a hotspot. Am i missing something?please load/use the version from here - 1.0.8 beta 9 - fovtype setting,
there is is newer editor plugin included, where it should work,
Thanks Klaus. So, the "delete-button" feature will be available in the release version only. Until then would you recommend any other version that allows deleting the hotspots?
this is a "pre-release", the release version should come soon,
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
public class googlemaps extends Sprite {
.......................
.......................
[Embed(source="email.jpg")] public static var embedded_logo:Class;
public function googlemaps()
{
// plugin entry point
if (stage == null)
{
.......................
........................
var logo:Image = new Image();
logo.source = new googlemaps.embedded_logo() as Image;
logo.x = 10;
logo.y = 10;
logo.visible = true;
logo.width = 100;
logo.height = 100;
// logo.alpha = 0.5;
this.addChild(logo);
}
else
{
// direct startup - show version info
...........................
...........................
.........................
|
just like normal, when a file is embedded, this will be loaded,If i embed the googlemaps plugin what will be the xml syntax for using it, particularly the url attribute?
what do you mean with "local host" in this case?I used the encryption tool instead and it seems to be working; it is working on the clients server but throwing an error when i use it on my local host. Is that okay?
this is wrong:When i compile the code it doesn't throw any error but i can't see the image on the google-maps plugin. Is that code okay or should i use something else?