Ну, хорошо

Все равно, спасибо!
Про этот Pan все написано на на
макромедии.
Вот цитирую:
A Flash method is JavaScript function that is specific to Flash movies. Use Flash methods to send JavaScript calls to Flash movies from a scripting environment.
Pan
Syntax Pan ( x, y, mode )
Description Pans a zoomed-in movie to the coordinates specified by x and y. Use mode to specify whether the values for x and y are pixels or a percent of the window. When mode is 0, the coordinates are pixels; when mode is 1, the coordinates are percent of the window. Pan does not pan beyond the boundaries of the zoomed-in movie. The argument type for all arguments is integer.
Example This example pans 50% right and 50% down:

Код:
movie.Pan(50, 50, 1)
This example pans -25 pixels left and -25 pixels up:

Код:
movie.Pan(-25, -25, 0)
Мне почему то кажется, что это выполнит мою задачу с городами на карте...