How do I create an interactive rotating model in Flash from a 3D model created in Maya?

Hi,
I have never used Flash before!
I have created a 3D model in Autodesk Maya and I would like to use it to create something a user can interact with i.e. rotate it or zoom in and out using a mouse. I have been told that if I create a 360 degrees rotation animation in Maya and render it into JPEGs I can then import them into Flash. The next part is where I need help! Is there a way of doing this?
Many thanks.

Whatever interaction you want to involve will dictate what you need to do internally to make the movieclip react to interaction.  Being that you have never used Flash before, you need to learn how to implement event listeners, for either or both the mouse and the keyboard. 
Your best bet at finding some help with learning about event listeners would probably be to search Google using terms like "AS3 MouseEvent tutorial".
As far as exporting goes, what you are most likely to end up doing is to publish an swf.  As far as my experience goes, Flash automatically sets up your Publish Settings to create an swf and an html page to display it in ( including whatever supporting javascript files are needed).  If you wish to tailor the Publish Settings to produce other outputs, or want to change aspects of the defaults, then you need to acxcess the PublishSettings in the same File options where you find the Import command.  The Publish command is also located there.

Similar Messages

  • Creating a interactive product demo in flash?

    Hi All,
    I have to create a interactive produc demo for one of the product, I have created every thing except the product rotation feature, I mean end user can rotate the product in 360 degrees as per the their wish using mouse. I have all sides of images of the product, but I don't know how to create the interaction, Please any one help me on the this.
    Thanks in advance
    Thanks and Regards
    Santhosh Kumar Mallepaddy

    I think you don't need a 3D model for this. I wasn't able to get the "model" to rotate where you could see either the top or the bottom "end on." Therefore, all you really need is the images going around the object in one dimension. In the case shown in the demo, this means all around the horizontal axis of the phone.
    Once you have that, you would adjust the playhead in a mc containing those images, in order, based on the left and right motion of the mouse. You'd rotate the entire MC based on where the mouse is relative to the center.
    Hope this helps!

  • How do you create an interactive floor plan in flash using AS2?

    I am attempting to make an interactive floor plan.  I am sure that I have done it wrong, I am new to flash.  So far I have outlined the rooms that I want to make "hot spots", turned them into buttons. Then I selected all the buttons and turned it into a movie clip called "mcbtns".  I then turned it into a movie clip again, named it "mcbtninside"; this is where I house all of my buttons which have instance names "btn1" thru "btn11".
    The images that corrospond with the rooms of floor plan are housed in a movie clip named "mcPhotos".  On the timeline the photos are place at 10 frame increments, and the Action Script time line above them has frame names "img1" thru "img11", which corrospond with the photos every 10 frames.  Frame 1 on the AS line has the code stop();
    Now back to Scene 1...
    Scene 1 frame 1 on the Action Script line I have in the following script:
    mcPhotos._visible = false;
    this.mcbtns.onRollOver = function() {
         mcPhotos._visible = true;
    this.mcbtns.onRollOut = function() {
         mcPhotos._visible = false;
    stop();
    In frame 1 on the Action Script line within "mcbtninside" I have the following script:
    var frameNum:Number;
    function photoChange(){
         _root.photos.gotoAndPlay("img" + frameNum);
    btn1.onRollOver = function(){
         frameNum = 1;
         photoChange():
    btn2.onRollOver = function(){
         frameNum = 2;
         photoChange():
    The code continues thru btn11.
    So I am sure that I have gone wrong in many places.  If someone could lead me in the right direction I would greatly appreciate it.

    Take all the interactive code off the mcbtns movieclip, and even get rid of that clip if it serves no other purpose than to collect all the rooms.  Assign the code to make the photos appear / disappear to all of the rooms... (what's shown below assumes mcbtns went away and the rooms are on the same timeline as the photos mc)
    btn1.onRollOver = function(){
         frameNum = 1;
         photoChange():
         mcPhotos._visible = true;
    btn2.onRollOver = function(){
         frameNum = 2;
         photoChange():
         mcPhotos._visible = true;
    btn1.onRollOut = btn2.onRollOut = function(){
         mcPhotos._visible = false;
    If you keep the mcbtns movieclip, then your button code would have to use a _parent reference to target the mcPhotos... _parent,mcPhotos.visible = etc... actually, I'm not sure where things lie in that aspect, so hopefully you can figure out the correct targeting

  • How can i make an interactive page book in Flash?

    I would like to know how to make an interactive sort of book
    in flash sorta similar to the one
    here and i want to
    turn it into a website, would anyone have any ideas at all of how i
    would go about this, all information would be helpful.
    Or Similar to this one
    http://www.templatemonster.com/flash-templates/12695.html
    Thanks In Advance
    Raph

    Raphael Essoo-Snowdon wrote:
    > anyone? know how to edit it PLEASE :D
    >
    > thank you in advance
    Open the library CTRL L and look for folder call
    "PageElements"
    You will find there movie clips call page1 page2 page3 page4
    etc...
    Every page is a movie clips so whatever you import from PS
    will
    need to be converted to movie clip. Name it page"number"
    according
    to your order and do not forget to give it LINKAGE name.
    To linkage clip you need to right click it while in library,
    go to
    LINKAGE than check the box EXPORT FOR ACTION SCRIPT and type
    the
    page name same as the library name (example) "page88"
    Now, on timeline you have layer call ACTIONS and on 5th frame
    of that
    layer is the place where you add pages using action script
    once all
    the library stuff is in order. You will find there :
    addPage("start");
    addPage("page1");
    addPage("page2");
    addPage("page3");
    addPage("page4");
    addPage("page5");
    Just add as much as you need.... Pretty much it
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    Happy New Year
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • How to set a particular node selected in a JTree from within the model

    I have an adapter class that provides communication between my JTree and data model. My adapter class implements TreeModel, TreeExpansionListener, TreeSelectionListener and a listener for changes to my data model.
    My data model keeps reference to the currently selected node. It is working quite nicely when I select a tree node with the mouse (the data model is updated accordingly with the node selected), however my problem occurs trying to go the other way (set the selected node in my data model and have it reflected in the tree).
    I know that my selection in the tree is changing correctly as when the selection changes it fires off an event to update the attributes window associated with the currently selected node. I just can't get the node to become highlighted.
    Any ideas would be most welcome.
    Thanks,
    Beck.

    Does your model really have to keep track of the selected item or can the two views (the JTree and the attributes window) not be coupled together in the user interface instead?
    Failing that, you could always consider implementing TreeSelectionModel as well and calling JTree.setSelectionModel since you're keeping track of the tree selection for it already. This is quite a bit of work though.
    If that's too much trouble then if you can work out the TreePath for the node that's been programmatically selected through your model then you could use JTree.getSelectionModel().setSelectionPath. Have a look at tree.getSelectionModel().setSelectedPath(new TreePath(selectedObject)).
    This approach is a bit warped, though, since it implies that your model knows about the view and therefore couples them together.

  • How Can I disable page scrolling when creating an interactive PDF using InDesign?

    I'm attempting to create an interactive PDF portfolio with links from the homepage to gallery pages and projects etc, but it seems useless if I can't stop the PDF pages from scrolling? Can anyone help?
    I have InDesign CS5.5 and Adobe Acrobat Pro.
    Thanks,
    Elizabeth

    scrolling through the pages
    There is nothing you can do to prevent a viewer from navigating on their own through a PDF. One method would be to have the PDF open in Full Screen mode, this hides the navigation tab. But a viewer can use their arrow keys to go page to page, ignoring the links within the PDF. And the viewer can hit the esc key to go back to normal view. Another option would be to use a swf export, indstead of pdf, but seriously depends on how you plan to distribute this portfolio.

  • How do I stop pages from scrolling when i'm creating an interactive PDF?

    I'm attempting to create an interactive PDF portfolio with links from the homepage to gallery pages and projects etc, but it seems useless if I can't stop the PDF pages from scrolling? Can anyone help?
    I have InDesign CS5.5 and Adobe Acrobat Pro.
    Thanks,
    Elizabeth

    I had the same problem with an interactive PDF I created out of InDesign CS5.5. Not sure if what I found will work for a PDF portfolio but here is what I did.
    After creating my document and exporting it as an interactive PDF I opened it in Acrobat X. I went to file/properties and opened the dialogue box. I then clicked on the "initial view" tab and checked the "hide toolbars" and "hide window controls" clicked okay, closed the dialogue box and re-saved the PDF.
    The next time I launched it you could not mouse click to navigate the pages anymore, you had to use the interface I had created. The only caveat is that the keyboard arrows and the mouse scroll wheel still work but if you click anywhere on the page other than my buttons the pages now stay put.
    Hope this works for you,
    Phil

  • How to create an interactive 3D model? Which software should we need to do that?

    How to create an interactive 3D model? Which software should we need to do that?

    you can crate 3d models in any number of graphics programs.  swift3d is especially designed to use with flash.
    i'm not sure what kind of interaction you want but that would probably be coded in flash.

  • I have a Mac and Acrobat Pro, how do I create an interactive PDF file?

    I have  a Mac and Acrobat Pro, how do I create an interactive PDF File?

    Hi 528!!,
    Here's some information about adding multimedia to your PDF files: Acrobat Help | Multimedia and 3D models
    Please let us know how it goes!
    Best,
    Sara

  • From SharePoint2013 list item data how to create Google Interactive Chart?

    HI All,
    From SharePoint2013 list item data how to create Google Interactive Chart?
    Thanks in advance!

    Hi,
    To push data from list items to Google Chart, we can use JavaScript Client Object Model or REST API to retrieve the data needed.
    Here are two links about using JavaScript Client Object Model to access list items:
    http://msdn.microsoft.com/en-us/library/office/hh185006(v=office.14).aspx
    http://msdn.microsoft.com/en-us/library/office/hh185007(v=office.14).aspx
    From the links from the official site of the Google Chart, we can find out the method to populate data into Chart:
    https://developers.google.com/chart/interactive/docs/quick_start
    https://developers.google.com/chart/interactive/docs/examples#gauge_example
    Best regards
    Patrick Liang
    TechNet Community Support

  • How do I create an interactive PDF file with variable data

    We would like to basically do a 'mail merge' of our list of customers with an interactive PDF file (including videos, menus, etc - not just form fill out and web links) to create a single PDF file that contains multiple mail pieces ... one for each customer ... with each mail piece being customized for that customer.  Customizations would include different greetings (Dear Bob, Dear Dana, etc), as well as different charts based on data unique to the customer, different photographs, etc.
    I've seen that InDesign and Acrobat Professional can be used to create an interactive PDF (such as from http://tv.adobe.com/watch/ask-the-adobe-ones/14-calling-rufus-about-interactive-pdf-making).  However I don't understand how I can insert data from a database, csv file, excel file etc into the PDF file so that each page, or each set of pages, within the PDF can be customized.
    Can anyone point me to a tool to use for this?
    Thanks,
    Bob Kendall

    For that kind of volume and unattended operation, you want InDesign Server – which is the server/high volume edition of INDD.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Thu, 3 Nov 2011 06:58:07 -0700
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: How do I create an interactive PDF file with variable data
    Re: How do I create an interactive PDF file with variable data
    created by Ti26E31DSxxx<http://forums.adobe.com/people/Ti26E31DSxxx> in PDF Language and Specifications - View the full discussion<http://forums.adobe.com/message/4005459#4005459

  • How can I create a interactive image on ibook author, just like the temperatures map on the "life on earth" book?

    I need a create an interactive image at the ibook author app, but I don´t know how, I saw the interactve image in the "life on earth" book, from the apple store, in an temperature map
    apreciate that someone could help me, please

    Doesn't work w/iBA books & iBooks 2, sorry.

  • How to use Flash to create an interactive diagram

    Hi all.
    I am an extreme newbie. I would like to create an interactive diagram and somebody said I should use Flash to do it.
    The idea is to create an organisational chart (like the ones you can produce in MS Word 2010). Each position will have its own box or button. When a user clicks on that box or button, a Word document or internet link will be activated and take the user to this other resource.
    Is it possible to do this in Flash?
    The reason why I am choosing Flash is because I would like to make alot of these diagrams and they have to go into Moodle. Apparently Flash is the only program I should use to import the diagram into Moodle.
    Can anybody please help me with some advice on how to do this?
    Thanks
    Sharyn

    For the diagram end of things... start by creating the diagram in Flash.  Whatever you intend to use as clickable items, create them as movieclip symbols so that you will be able to assign instance names to them.  You assign instance names by selecting the object on the stage and entering a unique name in the Properties panel where it says <Instance Name>.  That name will be used in the code you will use to create the clicking/linking functionality.
    The the linking end of things, start simple... create a diagram that has just one item to click and get that one item working.  What you learn from that can be applied to the larger version.  The same as stated in the first paragraph applies.  The only additional info you need is creating the actual code.  To help with that you need to decide which version of Actionscript you will be using, which might depend on which version of Flash you are using.  AS3 is the most recent version of Actionscript, and it first came into being back with Flash CS3.
    The first thing you need to do to make a movieclip useful code-wise is to assign it a unique instance name.  So you drag a copy of it out to the stage from the library, and while it's still selected, you enter that unique instance name for it in the Properties panel... let's say you name it "btn1"
    In AS3, to make a movieclip work with code, you need to add an event listener and event handler function for it.  You might need to add a few (for different events, like rollover, rollout, clicking it, but for now we'll just say you want to be able to click it to get a web page to open.  In the timeline that holds that button, in a separate actions layer that you create, in a frame numbered the same as where that button exists, you would add the event listener:
    btn1.addEventListener(MouseEvent.CLICK, btn1Click);
    The name of the unique function for processing the clicking of that button is specified at the end of the event listener assignment, so now you just have to write that function out:
    function btn1Click(evt:MouseEvent):void {
       var url:String = "http://www.awebsite.com/awebpage.html";
       var req:URLRequest = new URLRequest(url);
       navigateToURL(req);

  • How do I create/host interactive articles with embedded video for use in browsers?

    I'm seeking a little guidance -
    How do I create/host interactive articles with embedded video for use in browsers?
    The aim is to bring together video, design, images and writing in one place. A little like Born Presents, but very accessible and user friendly.
    I'm happy using InDesign but want to create interactive articles / magazines that have embeded video files as required. I've been looking at .SWF files but I've come unstuck.
    I want people to view the articles via a blog, ideally with them opening in a lightbox style viewer. It's not intended for tablet viewing and people should be able to view and interact with the files with little effort on their part.
    I think I know how to create these files within InDesign, but I'm not so hot on web design and I'm not sure how to host these online. Does this start coming into the realms of Flash?
    If anyone could point in the right direction I'd really appreciate it - Thank you in advance.

    PDF is one thing. Folios for DPS is another. There is a little bit of
    overlap but not much.
    The interactivity in the folio overlays panel is for DPS only.

  • How do I create an interactive e-portfolio?

    I'm a marketer/writer/journalist and need to create an interactive e-portfolio that I can burn to CD/DVD, infact have the flexibility to use in many different formats. I'd like it to have different sections for the different categories of work that I cover. So for instance, one element could be the ads that I've produced, another could be web copy I've created with say a screenshot linking through to the actual site, and another could be the articles I've written broken down by industry sector. Can anyone help? What software would provide the flexibility to do this?

    Use a multi state object. Depending upon how many point of interest you want on that map it can get pretty involved.

Maybe you are looking for

  • Region map creation causes system crash

    Hello, I am new to power map (in 32 bit excel/offfice 2013 professional plus). I have tried to create a region map and get this blue screen error "pc ran into a problem -something something something - it went to fast, but i did see "system_service_e

  • HP Deskjet 3050 All-in-One Printer series - J6

    HP Deskjet 3050 All-in-One Printer series - J6? what a load 0f rubbish,only one place for this the bin! Purchased less than a year ago countless problems with wireless reinstaled more times than I can think and now paper jams so off to the bin, never

  • 1 machine but do production of sevral products at a same time

    Dear Experts Good Evening My client have 1 machine but that machine can produce sevral products at a same time each product have different material code. Know i want to know how to 1) Define a routing of material as 1 machine can produce 500 material

  • Calendar alerts open contact

    I am sure this question exists but I could find the answer using the terms I was searching with. When I receive a calendar alert on my lock screen and choose to view it I am sent to the contact who sent the event in my contacts list. Should it not ta

  • Safari Safe Browsing Data on Iphone 5

    I have just purchased a new I5 and when syncing it gets to 'stage 6 of 6' and says 'Downloading safari safe browsing data' and its been on for at least 5 hours - why and is it necessary, can I stop it doing this?