FORUM

X-Treme Dock Menu XML AS2

Home / Forum / Components Discussions / X-Treme Dock Menu XML AS2

  • New tags have been added for the new component X-Treme Dock Menu XML
    #  /  posted on Apr 17, 2010
  • NEW


    Check X-Treme Dock Menu AS3 !


    #  /  posted on May 07, 2010
  • Hi… I would like to use the Dock as a button navigation set with a link to different Scenes within a single flash movie… Is this possible??? I realise I will have to copy the Doc into every scene…


    Thanks
    John


    #  /  posted on May 14, 2010
  • Hi,

    I don’t see why it wouldn’t be possible, but you need to write a new function to handle the scene changes and use it with asfunction.

    For example:

     function sceneChange(SceneNo:String){switch(SceneNo){
    case "1": _root.gotoAndPlay("Scene1Frame1Label"); break;
    case "2": _root.gotoAndPlay("Scene2Frame1Label"); break;
    default: break;
    }
    }
    

    You need to define label names to the first frames in each scene to avoid problems (from what I’ve read on the issue).
    Then you need to modify the link attributes like: link=“asfunction:sceneChange,1” and target=”_self”.

    You need to experiment a little to see where exactly you need to define the sceneChange function, but I’m guessing it needs to be on the _root level on the timeline.

    Alternatively, you can directly modify the function that deals with the mouse click event and not use asfunction.

    Best regards,
    FlashTuning Support


    #  /  posted on May 14, 2010
  • Hi.. I need to put a goto scene page on my Flash project…
    This means that each Thumb images will need a link to goto a scene within the same Flash Movie…


    Can this be done with your Dock??? and if so, how….


    If it can I will buy it…


    Destiny



    #  /  posted on May 16, 2010
  • opps.. sorry…. I did not see that my husband already ask you…


    We are both trying to get it to work…


    Destiny Matheson


    #  /  posted on May 16, 2010
  • I’ve sent you a pm.


    If you have further questions please email us.


    Best regards,
    FlashTuning Support


    #  /  posted on May 16, 2010
  • I also am trying to use asfunction in a link to trigger a movie clip loading in an AS2.0 project. VERY frustrated right now because I still can’t get this to call my function.


    i have


    <media type="image" src="images/image1.jpg" link="asfunction:myGetMovie, firstmovie" target="_self"/> 
    


    in my dock-contents.xml


    I put my function

     #js
    function myGetMovie(myMovieName:String){
    	trace("function fired");
    	_global.myMovieIndex = myMovieName;
    	loadMovie ("WORK.swf", _root.myStage);
    }
    

    in the 2nd frame of the dockmenu timeline. So far I haven’t even been able to get the trace output to appear.


    This seems very simple, what are we doing wrong?


    Still haven’t been able to get it to work.


    #  /  posted on May 17, 2010
  • hi.. I now buy it… but how do I make it go vertical.. ??


    Opps… I forgot to ask before I buy…


    Thank you


    Destiny Matheson


    #  /  posted on May 17, 2010
  • Username :jjoshuaa… Please email me.. Perhaps we can work it out together… I don’t want to keep posting help here…
    destinyprophotographer@hotmail.com
    Thank you….
    Destiny Matheson


    #  /  posted on May 17, 2010
  • I’ve sent emails/pms to both of you.


    Please reply here if you didn’t get them.


    Best regards,
    FlashTuning Support


    #  /  posted on May 17, 2010
  • Hey FT, I sent you an e-mail! Really hope I can get that modified FLA as soon as possible! Very excited to implement this on my site.

    Best,

    -j


    #  /  posted on May 17, 2010
  • ****IMPORTANT MESSAGE*****
    Here is my rating on the wonderful product from FT….
    Before sales support —————— :):):):):):)
    After sales support———————- :):):):):):)
    Technical support ———————— :):):):):):)
    Documentation —————————- :):):):):):)
    Operational quality of product ——:):):):):):)


    Overall everything ————————- :):):):):):):):):):)


    Thank you for making my dream web page a reality!!


    Destiny Matheson….;)



    #  /  posted on May 19, 2010
  • sorry.. STARS not show.. but there were lots and lots of them….


    Destiny


    #  /  posted on May 19, 2010
  • Hi .
    got the same problem that happened to joshua, i just cant get the asfunction to work throught the xml file.


    Please advice.


    Thanks!


    #  /  posted on May 20, 2010
  • I’ve sent you a pm. Reply here if you didn’t get it.


    Best regards,
    FlashTuning Support


    #  /  posted on May 20, 2010
  • HI,


    I bought the extreme Dock Menue XML.


    My problem. I need the tooltip always vivisble, not only on Mouseover. Is that possible. Can anybody give me a small hint to implement in AS.


    Thanks
    Jens


    #  /  posted on Jun 07, 2010
  • Hi,

    I’ve replied to your question at our website and sent you a pm to notify you.

    Best regards,
    FlashTuning Support


    #  /  posted on Jun 07, 2010
  • Hi,

    I want use images with only 35 pixels height, Width remain at 100.

    what is the best method to use images closer

    Thank's for reply


    #  /  posted on Sep 08, 2010
  • Hi,

    To get the images closer you need to modify the spacing attribute inside the item tag from the contents xml file.

    Best regards,

    FlashTuning Support


    #  /  posted on Sep 08, 2010
  • Thank's

    It's not a problem of spacing...

    I would like to use rectangular images 100 x 35 and not square images

    Is it possible ?

    Because my Rectangular images are distorted square-shaped. How to avoid this ?

    Best regards,


    #  /  posted on Sep 10, 2010
  • Hi again,

    itemMinHeight/itemMaxHeight itemMinWidth/itemMaxWidth in the settings xml file are the properties that control the image size.

    Be sure not to override these using the minHeight/maxHeight minWidth/maxWidth in the content file (the content xml properties should have higher priority).

    If you still have problems, send me a private message with a link and I'll have a look.

    Best regards,

    FlashTuning Support


    #  /  posted on Sep 10, 2010
  • I am looking in the dock-comments xml file. ive tried to alter the max hieght and width below. It alters the first image size and the rest are the same size.


    #  /  posted on Sep 16, 2010
  • The content file properties only affect the image corresponding to the menuItem tag (each image can have different width/height). To modify the properties of every image you need to modify item(Min/Max)(Width/Height) inside the settings xml file (they should be right at the top of the file).

    Also, keep in mind that the content file properties have higher priority than the settings ones, so you need to remove them from the content file or you will have images that behave differently than the rest.

    Best regards,

    FlashTuning Support


    #  /  posted on Sep 16, 2010
  • I want to be able to stop the images moving when the mouse is not in contact with the image. Also to stop the images enlarging when the mouse is not in contact and then moving to the left or ritht of the stage.

    How can i achieve this please


    #  /  posted on Sep 27, 2010
  • I have altered the max width and hieght in the xml file. How can i stop the menu from moving left to right .

    I dont mind the menu moving on rollover left or right. I dont want the menu to move left to right when the mouse is not in contact with an image


    #  /  posted on Sep 27, 2010
  • Hi,

    Have you tried setting the autoPlayType to "0" inside the settings xml file or are you referring to some other issue?

    If it is something else, can you send me a link in a private message?

    Best regards,

    FlashTuning Support


    #  /  posted on Sep 28, 2010
  • = NEW =

    X-Treme Banner Rotator !


    #  /  posted on Oct 13, 2010
  • Can you help us write the code for this FTDock Menu we recently bought from you? It is currently using url link for the xml. We want the menu links to be a gotoAndPlay function to specific frame labels on the movie and set the xml for easy updating as well. We want this dock menu to be movie-frame based, not url based.


    #  /  posted on Nov 09, 2010
  • Hi,

    Check question number 20 and also 21,19 and other useful questions from the FAQ area on our site at www.FlashTuning.net

    Flashtuning


    #  /  posted on Nov 09, 2010