Jump to content
Search Community

almogdesign

Members
  • Posts

    7
  • Joined

  • Last visited

Contact Methods

Profile Information

  • Location
    Israel / Las Vegas

almogdesign's Achievements

0

Reputation

  1. Hi so, I'm using a loadermax as a preloader its ease, simple and works great. However I need to pass string date to my main swf file and not the preloader what's the best solution for this, can laodermax pass date between swf files? Here is my current code - /* Create the swf loader */ _swfLoader = new SWFLoader("main.swf",{alpha:0,container:this,name:"mainSWF",x:0,y:0,estimatedBytes:3500,scaleMode:"none",crop:true,onProgress:progressHandler,onComplete:_completeHandler, onError:_errorHandler}); _swfLoader.load(true); Thanks, Almog
  2. Hi I have worked with SPP if I'm correct SSP has a number of settings that control its scaling mode cropping. You might want to look into that first. Also can you be more specif on what issues your having? Almog - Almog Design
  3. Hi I'm getting a Stack overflow with LiquidStage it happens when I try to resize the browser Here is the error does anyone have any ideas what might be causing this? Error: Error #1023: Stack overflow occurred. at flash.display::DisplayObject/globalToLocal() at com.greensock.layout::LiquidStage/updateItems() at com.greensock.layout::LiquidStage/update() at com.greensock.layout::LiquidStage/set retroMode() at com.greensock.layout::LiquidStage/attach() at Main/onLiquidStageUpdate() at flash.events::EventDispatcher/dispatchEventFunction() at flash.events::EventDispatcher/dispatchEvent() at com.greensock.layout::LiquidStage/update() at com.greensock.layout::LiquidStage/set retroMode()
  4. Hi everyone, I'm trying to use liquid stage with a custom pin point however it's not working this is what I'm doing var ipadPinPoint:PinPoint = new PinPoint(-850, 250, mainNav.navButtons); ls.attach(ipad, ipadPinPoint); Does anyone have any ideas? Quick overview of my code on stage added - inti ls = new LiquidStage(this.stage,1000,665,1000,665); ls.addEventListener(Event.RESIZE, onLiquidStageUpdate); onLiquidStageUpdate(null); removeEventListener(Event.ADDED_TO_STAGE, init); main liquid stage function private function onLiquidStageUpdate(event:Event):void { //trace("Stage Height = " + stage.stageHeight,"Stage Width = " + stage.stageWidth); var _sw:Number = stage.stageWidth; var _sh:Number = stage.stageHeight; ls.attach(login, ls.CENTER); ls.attach(mainNav, ls.TOP_LEFT); var ipadPinPoint:PinPoint = new PinPoint(-850, 250, mainNav.navButtons); ls.attach(ipad, ipadPinPoint);
×
×
  • Create New...