ADisplayXtra 1.2.1

ADisplayXtra is free both personal and commercial use.
Version 1.2.1 is Director 8.5 compatible.
Version 1.2 do not require adisplay.dll, because whole Xtra was written in C.

Installation:

Required DLL-s: (Windows contains both)
GDI32.DLL
USER32.DLL

Function list:

FAQ

global gInit, gOldRes
on prepareMovie
  if gInit <> 1 then
    changeRes()
  end if
end

on changeRes
  --prevent screenchange every movie starting if you have more dir files and screencahnging code in a shared cast
  gInit=1
  gOldres=aGetdisplayMode()
  aChangeDisplayMode(800,600,16,0)
end

And put the first frame script:

on exitFrame
  go to movie "mymovie"
end

  --changing back to original resolution
global
gOldRes
on
exitMovie
  aChangeDisplayMode(gOldres[1],gOldres[2],gOldres[3],0)

end

Or set the rect property of the stage after the resolution has changed.

on changeRes
  gerr = achangeDisplayMode(800,600,16, 0)
  if gerr = "DISP_CHANGE_SUCCESSFUL" then
    (the stage).rect = [0,0,800,600]
  end if
end

I provide free support trough my web site' s notice board : freextras.freeweb.hu or freextras.sw.hu and freextras 's listserv:
Subscribe to freextras@primlista.hu .

ADisplay Xtra (c) FreeXtras, András Kenéz 2001.

Trademarks XtraBuilder (c)1999 Magic Modules.