Quitar la banda azul?

Gracias por tu tiempo. Esto utilizando ventanas Miaw, pero cuando las llamos coon el siguiente script, me sale el una banda azul con el nombre del archivo y la X para cerrar la ventana, en vez de salirme como si fuera pantalla copmpleta. El script es el siguiente:
on mouseUp
global miVentana
if objectP (miVentana) then
forget miVentana
end if
set miVentana to window "ProgramaCalculo"
set the filename of miventana = "ProgramaCalculo.dir"
set the visible of miventana = false
open window "ProgramaCalculo"
end
He intentado jugar con los parametros del script pero sigue igual. Puedes ayudarme???? Gracias

1 Respuesta

Respuesta
1
¿Qué version de director usas?
revisaste las opciones TYPE y MODAL de las ventanas??
Prueba el siguiente script
On mouseDown
Global gDemoWindow
ToggleControls
set gDemoWindow to window "Window1"
set the filename of gDemoWindow to "movie1.dir"
set the title of gDemoWindow to "Title"
set the windowType of gDemoWindow to 2
set the modal of gDemoWindow to FALSE
set horizOffset to 360
set vertOffset to 220
set windowSize to the drawRect of gDemoWindow
set newRect to offset(windowSize, horizOffset, vertOffset)
set the rect of gDemoWindow to newRect
open gDemoWindow
end
Tengo el Macromedia Director 8.5. No te importa y me dices donde esta esas opciones,gracias.
Gracias por el script,pero ahora me surgio un problemilla, que no puedo cerrar la ventana Miaw con el script de Miaw, como a continuación te muestro:
on mouseUp
global miVentana
if objectP (miVentana) then
forget miVentana
end if
end
Me podrias decir como la cierro??? Muchisimas gracias
Siguiendo el mismo script que te envié antes, seria asi:
On mouseDown
Global gDemoWindow
ToggleControls
Close gDemoWindow
Forget gDemoWindow
end

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas