FORUM

CurveMenu CS AS3

Home / Forum / Components Discussions / CurveMenu CS AS3

  • Would it be possible to add Reflections to the menu.
    You know this very used and common effect you see everywhere.
    If it is possible to buy it with reflection i’ll buy it right away.


    Regards
    jimmy
    Mirrormandk


    #  /  posted on Feb 15, 2009
  • The feature requested is not support in current version. We will advise if it can add in the future update.


    #  /  posted on Feb 16, 2009
  • Hey,


    Your menu has a great touch.
    A couple of questions before possible purchase:
    Is there any limit for the items in the menu?
    Would it be possible to put two curve menus with different radius for same center point?


    #  /  posted on Mar 04, 2009
  • You can load jpg, png and swf for the items.


    Since the menu item is load dynamically, it support unlimited item virtually.


    Yes, You can put 2 menu in one page.


    #  /  posted on Mar 05, 2009
  • i like the menu.
    one question, does it have an option for autoplay? setting a q of seconds of delay?
    is it possible?
    tnx!


    #  /  posted on Mar 09, 2009
  • Hi,


    The menu havn’t autoplay internally. But, it can be add by just a few line of code.


    We have example for doing this.


    #  /  posted on Mar 10, 2009
  • Hello,


    Is it possible to open the curvemenu?s selections in another IFRAME inside the page? (use a link “_target” option).


    Can you provide a kind of “instructions manual” so I can check everything I can do with the component?


    Thanks in advance


    Carlos


    #  /  posted on Apr 08, 2009
  • So you will provide us with examples how to have slideshow feature and how to change the timer for this?


    Best file of it’s kind I have found on the net….great work!


    #  /  posted on Apr 08, 2009
  • Yes, we can provide example.


    #  /  posted on Apr 09, 2009
  • >>Carlos


    You can ref to the document and tutorials.


    Doc
    http://www.digicrafts.com.hk/components/doc-curve-menu-cs


    Tutorials
    http://www.digicrafts.com.hk/components/tutorials/curve_menu_cs


    #  /  posted on Apr 09, 2009
  • We have purchased this product and know that it can load swf files. However we are unable to since in both cs3 and cs4 you are given an error when trying to load a swf from an xml file that has the swf file name within the image tag. There is no example or mention of how to do this anywhere in the documentation.


    #  /  posted on Apr 22, 2009
  • Also when using the other format for the xml


    <item path = “item.swf” width = “617” height = “353” type = “videofile”>
    <title>Item Title</title>
    <description>Item description</description>
    <link>link</link>
    <linktarget>link</linktarget>
    </item>


    there is a <video> tag that you can use but how to use it there is no documentation. Also where I put “videofile” as the type… there is no documentation that lists what type names can go in this field.


    as this sits you receive an error that


    Error: The source is not supported. source = item.swf


    I have tried “video” for the type as well as “swf” “swffile” and such.


    #  /  posted on Apr 23, 2009
  • if you remove the type= property you get the error


    ArgumentError: Error #2015: Invalid BitmapData. at flash.display::BitmapData$iinit() at com.digicrafts.utils.image::ResourceLoader/::processCache() at com.digicrafts.utils.image::ResourceLoader/::handleCacheComplete()


    I like your work but you need more documentation.


    #  /  posted on Apr 23, 2009
  • Hi,


    The correct syntax is


    <item path = "item.swf" width = "617" height = "353" type = "moviefile">
    <title>Item Title</title>
    <description>Item description</description>
    <link>link</link>
    <linktarget>link</linktarget>
    </item>


    Hope this can help.



    #  /  posted on Apr 23, 2009
  • that returns the error


    ArgumentError: Error #2015: Invalid BitmapData. at flash.display::BitmapData$iinit() at com.digicrafts.utils.image::ResourceLoader/::processCache() at com.digicrafts.utils.image::ResourceLoader/::handleCacheComplete()



    #  /  posted on Apr 23, 2009
  • also if you were wanting to load an flv in the item what would you use?


    The closest I have come is


    <item path = “item5.png” width = “617” height = “353” type = “bitmapfile”>
    <title>Item Title</title>
    <description>Item description</description>
    <link>link</link>
    <linktarget>link</linktarget>
    <video>“item.flv”</video>
    </item>


    which runs but in the output of the debugger it gives the error


    VideoError: 1000: Unable to make connection to server or to find FLV on server at fl.video::VideoPlayer/stop() at com.digicrafts.controls::CurveMenu/stopVideo() at com.digicrafts.controls::CurveMenu/com.digicrafts.controls:CurveMenu::activate() at com.digicrafts.controls::CurveMenu/com.digicrafts.controls:CurveMenu::moveToItem() at com.digicrafts.controls::CurveMenu/::handleMouseAction()


    #  /  posted on Apr 23, 2009
  • Could you send your xml/images to our support email? In order we can help.


    fcsupport at digicrafts dot com dot hk


    #  /  posted on Apr 23, 2009
  • Thank you so much for your excellent customer service. You helped me solve my problem in an efficient manner. Many times over thank you and I would recommend your company to others. I will definitely deal with your company again in the future when the need arises.


    #  /  posted on Apr 23, 2009
  • Hi Digicrafts,


    Great file. Is it possible to have a ‘tooltip caption’ on mouse over of the images? Cheers.


    #  /  posted on May 27, 2009
  • >>wilyylie


    Since the curve menu didn’t support tooltip internally. You may need addition AS to have tooltips.


    The curvemenu have a mouse over event for each item.


    You can use the script like below to add a tooltips.


    addEventListener(ItemEvent.MOUSE_OVER,handleMouseEvent);
    function handleMouseEvent(e:ItemEvent)
    { var caption:String = e.item.title; // ADD a tooltips movieclip … ......
    }


    #  /  posted on May 28, 2009
  • Hi digicrafts,


    I have just purchased this and so far it’s great.


    I am using this to display my dvds and would like to display 2 sets of text (dvd titles & dvd synopsis) currently it only appears to utilize 1 text field (title) is it possible to adjust for 2?


    I see below some xml with <description>description</description> is this what I need?


    thanks in advance


    #  /  posted on Jun 29, 2009
  • >>dayboy001


    You can follow the guide here to add extra text.


    http://digicrafts.com.hk/components/add-custom-caption-or-description-to-the-components/


    #  /  posted on Jun 30, 2009
  • I would like to buy your component, but i want to know wheather it has a vertical version first.


    Thanks


    #  /  posted on Jul 06, 2009
  • >>rabramowsky


    Hi, Sorry. We have contact you by email recently. Hope you may not received the email.


    For you quick answer. If you use it with YouTube video, no xml is needed. Since the xml will generated by YouTube Server.


    If you want to use with your own image/video, you can follow the tutorial below.


    http://support.digicrafts.com.hk/tutorials/create-custom-xml-playlist-for-video-player/


    You can find more tutorial here.


    http://support.digicrafts.com.hk/tutorials/tag/curvemenuvideo/


    #  /  posted on Jun 05, 2010
  • I just installed this and tried to set up links to webpages
    I purchased this because it is fully customizable. How do I set up links?
    #  /  posted on Jul 22, 2010
  • Hi. I just purchased your extension and I could not manage to change the parameters as easy as the preview here: http://www.flashcomponents.net/component/flash_curve_menu_cs_as3/preview/2499.html

    I use Curve Menu 1.6.0 and even if I change the values in Component Inspector, the values change to defaults without changing the menu


    #  /  posted on Aug 29, 2010
  • sdvd?v???


    #  /  posted on Aug 29, 2010
  • hi... just a few quick questions before purchasing this AWESOME menu...:O)

    1...its my understanding that i can just edit/create an xml file that can update the menu...

    2...links can be targeted either to a 'new page'...or in the case of a frame set up, a 'frame'...

    3... can links be set up to target a div/id on the page itself? aka trying to avoid page reloads here...

    hugs as always n' looking forward to your reply.../me...

    ps...happy longgggggg labour day weekend to you too...:O)


    #  /  posted on Sep 04, 2010
  • justapatrick We have reply your message yesterday. Hope the mail may trap by spam filter.

    1...its my understanding that i can just edit/create an xml file that can update the menu...

    The image and link is driven by the xml. So, you can just edit the xml and load different images. Other setting, you can control via component inspector or actionscript

    2...links can be targeted either to a 'new page'...or in the case of a frame set up, a 'frame'...

    Links can be a url with page target and config via xml. If you need to target frame inside the flash, you need to add actionscript.

    3... can links be set up to target a div/id on the page itself? aka trying to avoid page reloads here.

    You can combine with javscript to do that if on div.

    e.g. You can run javascript by adding the script in xml

    javascript:xxx_function()

    Hope this info can help.


    #  /  posted on Sep 06, 2010
  • hi digi... just a quick note to say thank YOU!!! n' gone to purchase it...:O)


    #  /  posted on Sep 06, 2010