Hi Michael,

Here is URL for my project I am just doing small project with sphere.
You can download with svn

http://subversion.assembla.com/svn/away3dlite_loader/

Thanks in advance for your help.



On Jul 21, 6:17 pm, Michael Iv <[email protected]> wrote:
> Man, as I told you, send me your app.I will run it at the weekend .I am
> really stuffed during the week.
> Regards.
> Michael
>
>
>
>
>
> On Wed, Jul 21, 2010 at 6:25 PM, Ali <[email protected]> wrote:
> > Hi Michael,
>
> > I am trying to solve this problem and did few experiments. I am not
> > sure but it looks like its bug in flex SDK. I had tried same code 3.5
> > that works with flash player 9 but looks like flash player 10 or Flex
> > SDK have some problem. Please help me what should I do ?
>
> > On Jul 20, 5:33 pm, Michael Iv <[email protected]> wrote:
> > > To tell you the truth , I need to run this app on my PC in order to debug
> > > and see what is wrong.I don't have time right now.Do you use Flash
> > Builder
> > > for dev? In Debug Window you can see what is the problem usually.If you
> > have
> > > this problem till the end of the week ,then post me the source code and I
> > > will take a look.Or may be someone else here would help.
>
> > > On Tue, Jul 20, 2010 at 5:41 PM, Ali <[email protected]> wrote:
> > > > It downloads the file but didn't display or play it
>
> > > > On Jul 20, 4:39 pm, Ali <[email protected]> wrote:
> > > > > you are right Michael. But I am having problem with away3dlite swf
> > > > > file. I am not able to load it. Below is link that loads simple swf
> > > > > file and other is that loads away3dlite swf file. I don't know what I
> > > > > am doing wrong. Code is same as above just changed the file name.
>
> > > > > Loader for Simple SWFhttp://riyasatali.com/site/aw/swfLoader.html
>
> > > > > Same Loader for Away3d SWF doesn't workhttp://
> > > > riyasatali.com/site/aw/swfLoader1.html
>
> > > > > Away3dSWF Linkhttp://riyasatali.com/site/aw/startPage.html
>
> > > > > There must be something that I am missing please help. Thanks
>
> > > > > On Jul 20, 12:44 pm, Michael Iv <[email protected]> wrote:
>
> > > > > > SWF loading is the same as it is in every flash app. Eventually we
> > are
> > > > in
> > > > > > Flash don't we ? ;)
>
> > > > > > Tried to look here?
> > > >http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/d.
> > ..
>
> > > > > > On Tue, Jul 20, 2010 at 1:29 PM, Ali <[email protected]> wrote:
> > > > > > > Sorry dude but I thought may be there is any other way in
> > away3dlite
> > > > > > > to load it's swf files.
>
> > > > > > > On Jul 20, 12:23 pm, Michael Iv <[email protected]> wrote:
> > > > > > > > Man , this is Away3D oriented playground. For General AS3 you
> > can
> > > > inquire
> > > > > > > in
> > > > > > > > the billions of  other blogs and forums . :)
>
> > > > > > > > On Tue, Jul 20, 2010 at 1:18 PM, Ali <[email protected]>
> > wrote:
> > > > > > > > > Hi gurus,
>
> > > > > > > > > I need help. I am trying to create loader class for loading
> > my
> > > > > > > > > external swf files. This Class worked good for images but it
> > > > doesn't
> > > > > > > > > load swf. However it download the swf but doesn't display on
> > > > stage.
>
> > > > > > > > > Bellow is code for the class
>
> > > > > > > > > //*****************************************************//
>
> > > > > > > > > package
> > > > > > > > > {
>
> > > > > > > > >        import flash.display.Loader;
> > > > > > > > >        import flash.display.MovieClip;
> > > > > > > > >        import flash.display.Sprite;
> > > > > > > > >        import flash.display.Stage;
> > > > > > > > >        import flash.display.StageAlign;
> > > > > > > > >        import flash.display.StageScaleMode;
> > > > > > > > >        import flash.events.Event;
> > > > > > > > >        import flash.events.ProgressEvent;
> > > > > > > > >        import flash.events.TimerEvent;
> > > > > > > > >        import flash.net.URLRequest;
> > > > > > > > >        import flash.utils.Timer;
>
> > > > > > > > >        import org.osmf.display.ScaleMode;
>
> > > > > > > > >        [SWF(backgroundColor="#000000",frameRate=30)]
> > > > > > > > >        public class swfLoader extends Sprite
> > > > > > > > >        {
> > > > > > > > >                //public var swfURL:String=null;
> > > > > > > > >                private var square:Sprite;
> > > > > > > > >                private var tmr:Timer;
> > > > > > > > >                private var mLoader:Loader;
> > > > > > > > >                public function swfLoader()
> > > > > > > > >                {
>
> > > > > > > > >                        stage.align=StageAlign.TOP_LEFT;
>
> >  stage.scaleMode=StageScaleMode.NO_SCALE;
> > > > > > > > >                        square = new Sprite();
>
> > > > > > > > >                        mLoader = new Loader();
> > > > > > > > >                        var mRequest:URLRequest = new
> > > > > > > > > URLRequest("assets/test.swf");
> > > > > > > > >                        //var mRequest:URLRequest = new
> > > > > > > > > URLRequest("assets/bg.jpg"); //
> > > > > > > > > This is working
>
> > > > > > > > >  mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,
> > > > > > > > > onCompleteHandler);
>
> > > >  mLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,
> > > > > > > > > onProgressHandler);
> > > > > > > > >                        mLoader.load(mRequest);
>
> > > > > > > > >                        addChild(square);
>
> > > > > > > > >                }
> > > > > > > > >                private function
> > > > onCompleteHandler(loadEvent:Event):void
> > > > > > > > >                {
>
> > > > > > > > >                        addChild(mLoader);
>
> > > > > > > > >                }
> > > > > > > > >                private function
> > > > > > > > > onProgressHandler(mProgress:ProgressEvent):void
> > > > > > > > >                {
> > > > > > > > >                        var percent:Number =
> > > > > > > > > mProgress.bytesLoaded/mProgress.bytesTotal;
> > > > > > > > >                        drawProgress(percent);
> > > > > > > > >                }
>
> > > > > > > > >                public function drawProgress(prg:Number):void{
>
> > > >  square.graphics.beginFill(0x00FFF);
>
> > > > > > > > >  square.graphics.drawRect(0,0,stage.stageWidth*(prg/100),10);
> > > > > > > > >                                square.graphics.endFill();
> > > > > > > > >                                square.x =
> > > > > > > > > stage.stageWidth/2-square.width/2;
> > > > > > > > >                                square.y =
> > stage.stageHeight-10
>
> > > > > > > > >                }
> > > > > > > > >        }
> > > > > > > > > }
>
> > > > > > > > > //*****************************************************//
>
> > > > > > > > > Please tell me what I am doing wrong.
>
> > > > > > > > > Riyasat
>
> > > > > > > > --
> > > > > > > > Michael Ivanov ,Programmer
> > > > > > > > Neurotech Solutions Ltd.
> > > > > > > > Flex|Air
>
> > |3D|Unity|www.neurotechresearch.comhttp://blog.alladvanced.nethttp://
> > > > > > >www.meetup.com/GO3D-Games-Opensource-3D/
> > > > > > > > Tel:054-4962254
> > > > > > > > [email protected]
> > > > > > > > [email protected]
>
> > > > > > --
> > > > > > Michael Ivanov ,Programmer
> > > > > > Neurotech Solutions Ltd.
> > > > > > Flex|Air
>
> > |3D|Unity|www.neurotechresearch.comhttp://blog.alladvanced.nethttp://www.meetup...
> > > > > > Tel:054-4962254
> > > > > > [email protected]
> > > > > > [email protected]
>
> > > --
> > > Michael Ivanov ,Programmer
> > > Neurotech Solutions Ltd.
> > > Flex|Air
> > |3D|Unity|www.neurotechresearch.comhttp://blog.alladvanced.nethttp://
> >www.meetup.com/GO3D-Games-Opensource-3D/
> > > Tel:054-4962254
> > > [email protected]
> > > [email protected]
>
> --
> Michael Ivanov ,Programmer
> Neurotech Solutions Ltd.
> Flex|Air 
> |3D|Unity|www.neurotechresearch.comhttp://blog.alladvanced.nethttp://www.meetup.com/GO3D-Games-Opensource-3D/
> Tel:054-4962254
> [email protected]
> [email protected]

Reply via email to