+ Reply to Thread
Results 1 to 9 of 9

Header

This is a discussion on Header within the FlepStudio utilities forums, part of the Flash English category; Hi all, I'm back from holidays. I provide a free Flash header : Source file:...

  1. #1
    Administrator Living At The FlepStudio! Flep is on a distinguished road
    Join Date
    Jul 2007
    Posts
    5,762
    Rep Power
    11

    Header

    Hi all,

    I'm back from holidays.


    I provide a free Flash header:









    Source file:

    Attached Files

  2. #2
    Junior Member Settled In alan247 is on a distinguished road
    Join Date
    May 2008
    Posts
    6
    Rep Power
    0

    Re: Header

    Very nice. Hope you had a good time :-)

  3. #3
    Junior Member Settled In gandhidk is on a distinguished road
    Join Date
    Jun 2008
    Posts
    4
    Rep Power
    0

    Smile Re: Header

    HI Flep,

    I have been seeing your stuff for a long time. I am a newbie and I have seen that you have been using loadingXML.as , main.as and xml file to run the flash.

    I just entered into web hosting and I need your help to give me a short summary on how to set up all these files on server. I am not sure where to upload loadigXML.as and main.as files.

    Hope to hear from you.

    Thanks in advance

  4. #4
    CSS.FlepStudio.org Moving My Stuff To The FlepStudio Onsitus is on a distinguished road Onsitus's Avatar
    Join Date
    Jul 2007
    Posts
    1,436
    Rep Power
    7

    Re: Header

    Hi,

    the file .as are only needed to create the swf, once published, they do not need to be uploaded....the xml file instead, yes, following the path used in the .as file.

  5. #5
    Junior Member Settled In gandhidk is on a distinguished road
    Join Date
    Jun 2008
    Posts
    4
    Rep Power
    0

    Re: Header

    Quote Originally Posted by Onsitus View Post
    Hi,

    the file .as are only needed to create the swf, once published, they do not need to be uploaded....the xml file instead, yes, following the path used in the .as file.

    Hi,

    Thanks a lot. That was very clear.

    I made changes to .as and xml file. Then I opened each of.as files and .fla file and published all of them into same main.swf. And at the end I only uploaded .swf file and xml file on the server and that really worked.

    Thanks a lot.

  6. #6
    CSS.FlepStudio.org Moving My Stuff To The FlepStudio Onsitus is on a distinguished road Onsitus's Avatar
    Join Date
    Jul 2007
    Posts
    1,436
    Rep Power
    7

    Re: Header

    Right...

  7. #7
    Junior Member Settled In arya is on a distinguished road
    Join Date
    Aug 2008
    Posts
    2
    Rep Power
    0

    Re: Header

    sorry for being newbie but what command do i enter to make the sound repeat?

  8. #8
    Administrator Living At The FlepStudio! Flep is on a distinguished road
    Join Date
    Jul 2007
    Posts
    5,762
    Rep Power
    11

    Re: Header

    Quote Originally Posted by arya View Post
    sorry for being newbie but what command do i enter to make the sound repeat?
    Hi,
    try this :
    Code:
    var holder_mc:MovieClip=new MovieClip();
    var angle:Number=0;
    var stars:Array=new Array();
    var isPlaying:Boolean=true;
    var sound:Sound;
    var channel:SoundChannel;
    var soundPosition:Number;
    var track:String="http://www.flepstudio.org/music/DJ_Killian-Night_Light.mp3";
    
    play_mc.gotoAndStop(2);
    addChild(holder_mc);
    swapChildren(city_mc,holder_mc);
    radius_mc.addEventListener(Event.ENTER_FRAME,rotate);
    
    createStars();
    loadSound();
    
    function rotate(evt:Event):void
    {
    	var sine:Number=Math.sin(angle)*100;
    	angle++;
    	evt.target.rotation+=1;
    }
    
    function createStars():void
    {
    	for(var i:int=0;i<300;i++)
    	{
    		var clip:MovieClip=new MovieClip();
    		clip.graphics.beginFill(0xFFFFFF,1);
    		clip.graphics.drawCircle(Math.random()*stage.stageWidth,Math.random()*stage.stageHeight,Math.random());
    		clip.alpha=Math.random();
    		holder_mc.addChild(clip);
    		stars.push(clip);
    	}
    	
    	var timer:Timer=new Timer(100,0);
    	timer.addEventListener(TimerEvent.TIMER,goStars);
    	timer.start();
    }
    
    function goStars(evt:TimerEvent):void
    {
    	for(var i:int=0;i
    

  9. #9
    Junior Member Settled In arya is on a distinguished road
    Join Date
    Aug 2008
    Posts
    2
    Rep Power
    0

    Re: Header

    I think some of the code got cut off in the quote? thank you by the way... you provide a great resource for aspiring flashers!

+ Reply to Thread

Similar Threads

  1. Header di Natale
    By Flep in forum Utilità di FlepStudio
    Replies: 7
    Last Post: 04-10-10, 05:55
  2. Xmas header
    By Flep in forum FlepStudio utilities
    Replies: 8
    Last Post: 18-08-10, 03:06
  3. Header con pausa ed xml
    By xkill in forum Flash Italiano
    Replies: 1
    Last Post: 21-04-10, 16:02
  4. Header
    By Flep in forum Utilità di FlepStudio
    Replies: 3
    Last Post: 16-03-09, 18:22
  5. Header rotante 2
    By woody in forum AIUTO utilità free
    Replies: 2
    Last Post: 19-09-08, 11:48

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts