Found the solution..
- We have problems with stage width -height
- Also we have problems with map width - height
But we have no problem with "Browser window sizes" So I tried to
communicate with Javascript by using ExternalInterface.call method..
And bingo!
After adding this code to html :
<script>
function getHeight(){
return document.body.clientHeight;
}
function getWidth(){
return document.body.clientWidth;
}
</script>
and this to actionscript :
function resizeAGAIN(){
ldrButton.x=ExternalInterface.call
("getWidth")-10;
ldrButton.y=ExternalInterface.call
("getHeight")-10;
}
This worked! But map.height-widht issue must be inspected or explained
by Google ;)
Thanks
:Türker
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Maps API For Flash" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-maps-api-for-flash?hl=en
-~----------~----~----~----~------~----~------~--~---