Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash








Here's The Final Product


Folks,

This is my first cartoon animation ever made.

Thank you all for helping me out and answering my never ending questions. Welcome any feedback on the movie or the site.


www.jonwee.com/tutorials/elvis/




KirupaForum > Flash > Flash 8 (and earlier) > Flash 5
Posted on: 04-06-2002, 04:48 AM


View Complete Forum Thread with Replies

Sponsored Links:

Final Product Help Needed
Ok I have a .swf for everyone of my areas, plus a .swf for everyone one of my pictures to cut down on the load time. Here is my prob though.

In order for my site to be up I have to upload the .html and the .swfs of everything to my server. Before, I had only one .html but how do I get just one when I have over 10 .swfs with all my areas and such? If I publish each one I get a .html for each one but I need to compile them into one large .html, is there anyway to do this??

View Replies !    View Related
Smoothing The Final Product
I have created my .swf, but it seems to be a little jerky. It feels a bit like an old movie where someone accidentally hit the projector. How would I stop this from happening? Am I saving it at too low of a resolution? Is the framerate too fast?

View Replies !    View Related
How Can I Crop An Image With Out Having White Space In The Final Product
I am trying to create a crop component or Class so that I could use a live video feed to create an ID Card Picture application.

For example> I have a live video feed(Camera) with a rectangle shape on top of the video feed, so that the user can drag the rectangle around the live video and select what he would want to be in the preview window.

The problem is this: The rectangle tool creates a white space around the top and left side of the preview window(which is a bitmap). In other words the rectangle is only acting as a mask of the orginal video.

For example> Original video/camera feed has width:320 and height:240. I then use the draw method with a rectangle element as a paramenter. The rectangle has coodinates of (x:20,y:20,width:50,height:50). So yeah that seemed to work fine. But actually it only creates a masked image of the original video. In other words 0 to 20 pixels at the top of the preview bitmap is white an the 0 to 20th pixel on the left side of the priview windows is also white......So I essentially just created a masked image. What I actually want the draw tool to do is to have the rectangle area be a cropping tool. The final bitmap would have a width and height of 50. I could then stretch out the bitmap and have it appeared to of zoomed the image.

What is up with the whitespace?
===============================
AS3 code reference
var myRectangle:Rectangle= new Rectangle(30,30,150,150)
// render the player as a bitmapdata
myBitmapSource.draw ( myVideo,null,null,null,myRectangle,false );
=======================================I am also starting to investigate the transform methods, maybe I need to transform the original feed somehow. I aslo saw a read only property named PixelBounds?

Any help would be appreciated:

Doug Lubey of Louisiana (DougLubey.com)

View Replies !    View Related
[F8] My Dumb Question: Final Product Doesn't Match The Test
Pretty much a total noob here. I've built a basic e-card that runs a minute with photos and text fading in and out. I'll be sending an email with a text link to my flash creation. Because the IT department here won't let me embed my swf in a webpage (don't ask) I uploaded the swf to the server and am linking directly to it. When I click the URL for it, it opens fine in my browser. However, while the photos look fine when I test in Flash, they look pixillated in the browser. I'm thinking it's because the size of my browser window doesn't match my stage? but, I'm a noob, what do I know? Is there an easy solution to this? Help!

View Replies !    View Related
Need To Create A Product Catalog Website With 3d Views Of Product
I'm developing a website that is a product catalog for a jewely company.

I need to be able to create interactive 3D views of the products. For example, let's take a ring or bracelet.

The customer wants the end users to be able to view the ring or bracelet in 3d by taking the mouse and moving the ring or bracelet around.

How is this possible?

I would imagine that I would need to create it with 3D max or something and then import into flash.

Could it be done solely in flash?

Thanks.

View Replies !    View Related
Dot Product, Please Help Me
Hi I've been working on this game engine for about 2 months and have been stuck 75% of that time on a collision between the player and a 45 degree slope.

I'll try and explain my engine best as possible:


PHP Code:




Mouse.hide();_global.dday = 0;_global.angCol = 0;///Helpfulif(_global.dday == 1){    hit = 1;}else{    hit = 0;}moveP = 1;mouseDist = 12;//Gravitygrav = 1;///Speed Variablesspeed_x = 0;speed_y = 0;///Acc Variablesacc_x = 1;acc_y = 1;///Dec Variablesdec_x = 0.95;dec_y = 0.95;//Size VariablesRadius = _root.player._width/2;//User Code_root.player.onEnterFrame = function() {    //Location Shortcut    _global.player_y = _root.player._y;    _global.player_x = _root.player._x;    //Trace Boxes    _root.box1 = playerFin;    _root.Xbox = Math.round(speed_x);    _root.Ybox = Math.round(speed_y);    ///Move Player    _root.player._y += speed_y;    _root.player._x += speed_x;    //Gravity    speed_y += grav;    //Friction/Air Resistance    speed_y *= dec_y;    speed_x *= dec_x;    ///Shortcut Variables    Xm = _root._xmouse;    Ym = _root._ymouse;    Xp = _root.player._x;    Yp = _root.player._y;    Adj = Xm-Xp;    Opp = -1*(Ym-Yp);    Ang = Math.atan2(Opp, Adj);    Fin = Math.round(Ang/Math.PI*180);    playerRadins = Math.atan2 (speed_y, speed_x);    playerAng = Math.round(playerRadins * 180 / Math.PI);    playerFin = playerAng;    //Custom Cursor    _root.cursor._x = Xm;    _root.cursor._y = Ym;    //Boundries Collisions    if (_root.player._y>=400) {        Yinvert(Yinvert);    }    if (_root.player._y<=0) {        Yinvert(Yinvert);    }    if (_root.player._x>=750) {        Xinvert(Xinvert);    }    if (_root.player._x<=0) {        Xinvert(Xinvert);    }    //The Lenght of the Hyp between the mouse and player     //Hyp = Math.sqrt(((player.y - mouseY) * (player.y - mouseY)) + ((player.x - mouseX) * (player.x - mouseX)));};function trigHit(trigHit) {    if(_global.dday == 1){        hit = 1;    }}function untrigHit(untrigHit) {    if(_global.dday == 1){        hit = 0;    }}//Horizontal Collisionfunction Xinvert(Xinvert) {    speed_x -= (speed_x*2);}//Vertical Collisionfunction Yinvert(Yinvert) {    speed_y -= (speed_y*2);    untrigHit(untrigHit);}//Dot Product Collision, NEEDED HERE!function Zinvert(Zinvert) {    }//This Launches the ball in the direction onMouseDown = function () {    if (hit == 0) {        speed_y = (_root._ymouse-_root.player._y)/mouseDist;        speed_x = (_root._xmouse-_root.player._x)/mouseDist;        trigHit(trigHit);    }};







The SWF

I want to know what I have to do to the players x_speed and y_speed after the collision with the 45 degree slope I know it involves dot product I've done alot of research into it, but no luck.

Research Links:
2D Physics Tutorial
TONYPA: Bounce
Math World: Dot Product

THE .FLA: http://www.filefreak.com/pfiles/70453/SpaceHopper.fla

PLEASE DON'T STEAL MY WORK!
PLEASE CAN SOME ONE HELP ME I'VE BEEN STUCK ON THIS PROBLEM FOR A MONTH NOW!

View Replies !    View Related
Which Product Do I Need?
I really want to learnto make animations with my computer.
Unfortunately I currently know very little of the jargon involved and the many products availiable make my head spin.
Which one should I buy?
I dont want to spend more then I have too but I also dont want something that wont let me do what I want too.
Thanks
daniel

View Replies !    View Related
Which Product To Be Used
HI
I have so much interest to implement a website using flash but i don't know which adobe software is used to implement that. could you please help me in that.

View Replies !    View Related
Which Product To Use?
Hi,
I'm new to Flash, could someone suggest what product is more suitable for my needs. Basically I'm looking at creating a live streaming app, some sort of video conference where two clients would talk to each other using webcams and microphones, video and audio would be streamed through a server. Which product would I need for something like this: streaming server or interactive server?
Thanks.

View Replies !    View Related
Dot Product
Hi I've been working on this game engine for about 2 months and have been stuck 75% of that time on a collision between the player and a 45 degree slope.

I'll try and explain my engine best as possible:


PHP Code:



Mouse.hide();_global.dday = 0;_global.angCol = 0;///Helpfulif(_global.dday == 1){    hit = 1;}else{    hit = 0;}moveP = 1;mouseDist = 12;//Gravitygrav = 1;///Speed Variablesspeed_x = 0;speed_y = 0;///Acc Variablesacc_x = 1;acc_y = 1;///Dec Variablesdec_x = 0.95;dec_y = 0.95;//Size VariablesRadius = _root.player._width/2;//User Code_root.player.onEnterFrame = function() {    //Location Shortcut    _global.player_y = _root.player._y;    _global.player_x = _root.player._x;    //Trace Boxes    _root.box1 = playerFin;    _root.Xbox = Math.round(speed_x);    _root.Ybox = Math.round(speed_y);    ///Move Player    _root.player._y += speed_y;    _root.player._x += speed_x;    //Gravity    speed_y += grav;    //Friction/Air Resistance    speed_y *= dec_y;    speed_x *= dec_x;    ///Shortcut Variables    Xm = _root._xmouse;    Ym = _root._ymouse;    Xp = _root.player._x;    Yp = _root.player._y;    Adj = Xm-Xp;    Opp = -1*(Ym-Yp);    Ang = Math.atan2(Opp, Adj);    Fin = Math.round(Ang/Math.PI*180);    playerRadins = Math.atan2 (speed_y, speed_x);    playerAng = Math.round(playerRadins * 180 / Math.PI);    playerFin = playerAng;    //Custom Cursor    _root.cursor._x = Xm;    _root.cursor._y = Ym;    //Boundries Collisions    if (_root.player._y>=400) {        Yinvert(Yinvert);    }    if (_root.player._y<=0) {        Yinvert(Yinvert);    }    if (_root.player._x>=750) {        Xinvert(Xinvert);    }    if (_root.player._x<=0) {        Xinvert(Xinvert);    }    //The Lenght of the Hyp between the mouse and player     //Hyp = Math.sqrt(((player.y - mouseY) * (player.y - mouseY)) + ((player.x - mouseX) * (player.x - mouseX)));};function trigHit(trigHit) {    if(_global.dday == 1){        hit = 1;    }}function untrigHit(untrigHit) {    if(_global.dday == 1){        hit = 0;    }}//Horizontal Collisionfunction Xinvert(Xinvert) {    speed_x -= (speed_x*2);}//Vertical Collisionfunction Yinvert(Yinvert) {    speed_y -= (speed_y*2);    untrigHit(untrigHit);}//Dot Product Collision, NEEDED HERE!function Zinvert(Zinvert) {    }//This Launches the ball in the direction onMouseDown = function () {    if (hit == 0) {        speed_y = (_root._ymouse-_root.player._y)/mouseDist;        speed_x = (_root._xmouse-_root.player._x)/mouseDist;        trigHit(trigHit);    }}; 




The SWF

I want to know what I have to do to the players x_speed and y_speed after the collision with the 45 degree slope I know it involves dot product I've done alot of research into it, but no luck.

Research Links:
2D Physics Tutorial
TONYPA: Bounce
Math World: Dot Product


PLEASE CAN SOME ONE HELP ME I'VE BEEN STUCK ON THIS PROBLEM FOR A MONTH NOW!

THE .FLA: http://www.filefreak.com/pfiles/70453/SpaceHopper.fla

PLEASE DON'T STEAL MY WORK!

View Replies !    View Related
Product Viewer
Hi i looked on this site

http://www.audio.philips.com/streamium/highlights.asp

and there is 2 arrows that let you rotate the mp3 player thing.

How is this done as i would like to do the same thing but the product would be a T-Shirt.

i have seen a blurry speed test thing on sites like this

http://www.audio.philips.com/streamium/mci200.asp

you will see it on the start when the word flys of the screen how is this done? some one told me that it is a photoshop blur and a tween?

Thanks

Kendals

View Replies !    View Related
System.Product();
Now comes System.product(); - The undocumented feature.
Put the following code into a Flash MX movie and generate the SWF.

var foo = new System.Product("bar");
foo.download();

you will get a message saying: "To install this service you must install Macromedia Flash Central. Would you like to install it now?". When I click "yes". It says "Couldn't write the application to the hard disk. Please verify the hard disk is available and try again".

Done? O.k. now the next step. If you are using Windows 2000. Check the Application Data Folder. C:Documents and SettingspavanApplication DataMacromediaFlash Playerwww.macromedia.cominar

Guess what happened??? Macromedia Flash is looking for bar.exe to launch!! i.e. if bar.exe was present in the folder it would launch it.

Now try the next example:

Create a directory under Application DataMacromediaFlash Playerwww.macromedia.comin
otepad i.e. name it as notepad and place notepad.exe in this folder. Notepad.exe is present in win32 folder. Now write the following code…

var x = new System.Product("notepad");
trace(x.IsInstalled());
trace(x.Launch());

Embed this swf in a browser and launch it… What happened?? It opened the notepad.exe…. Now isn’t that interesting?

The sample files are attached. I haven’t been able to take this any further. What does Macromedia want to do? Allow users to download exe’s from any site, download them and install them and run them? What is Flash Central? There are various questions unanswered! Any body making a breakthrough would be a welcome.

View Replies !    View Related
Product Announcements
If it is not the place to post it,please let me know!

We recently released the upgraded version of FlashKeeper which is a flash tool kit that help flashers to manage many flash files with the following main features:

View and browse flash files;
Capture flash files from website;
Download classification and management;
Flash format converter (exe2swf, swf2exe) in bath;
Create flash screen saver with batch of flash files;
Findand search flash files in local computer;
FlashKeeper player.

For details, please visit our website:
Http://www.flashkeeper.com

We will appreciate any of your comments about it.

View Replies !    View Related
360 Product View
I know how to do just the basic and move around comfortably in FlashMX. And I think I'm ready for intermediate level. I always wonder how someone can produce a 360 degree view of a specific product for flash. For example, http://www.garmin.com/products/iQue3600/# then click on 360 product view. I like the click and drag of the graphics and rotate it left or right. Does anyone know if there is an example tutorial or an .fla file that I can get my hand on for some self taught? I'm not sure what word to search flaskit for to see if on the post someone may already asked this question.

View Replies !    View Related
VR Product Spin
Smashing Ideas did this cool VR Product Spin for a camera. Mouse driven 360 spin-- They also did it in Flash 3 for user specs. They mention doing it with actionscript and draggable clips in Flash 5 but I cant find any tutorials anywhere. Ive seen this all over the place on consumer sites but cant find any tutorials. Anyone know of any?

View Replies !    View Related
Product Turning
does anybody know the best way to do a product turning 360 in flash. the product will be a car rim. And do you know the code for the mouse to move left or right depeding where the users mouse is

View Replies !    View Related
Product Scroller
Hi. I'm seeking a FLA example similar to this:

http://www.richcontentrotator.com/de...tScroller.aspx

But I wish an example with buttons. With these buttons the user will not wait for the rotation of all the products, and it will forward or backward the products positioning (if he click in the buttons of course).

Does anybody know an example?

Thank You!

View Replies !    View Related
Product Customizer
A potential client wants a Flash application that will allow users to see what her product looks like in different fabrics. This would be similar but not as extensive as the personal paint viewer on http://benjaminmoore.com . Price would need to be calculated and once they've decided what they want, they can add to cart and pass the info to a store shopping cart. I think I know how it can be done but I've never tried anything this complicated. How many hours would it take for average Flash designer to build it?

View Replies !    View Related
Product Recommends?
Okay... I'm a VERY new website developer (you've heard that a million times before, right? LOL) What I'm looking for is products that you'd recommend for a novice to get started building Flash elements for a website (i.e. an intro page). Thanks a million!

JugglingJunior

View Replies !    View Related
Product Chooser
Hey there,

I want to make a flash movie that guides visitors of my website thrue series of questions, and at the end of those questions the user get's a product that matches to the anwsers of those questions. It woudn't be hard to make this, but the problem now is that the next question a user gets depents on the anwser of a previous question A simplefied example: http://www.pinnaclesys.com/images/fl...eID=6&Family=0

Only my product chooser will be much much more complexer, with a lot more possible questions.

Grtz
Joost

View Replies !    View Related
360 Product Views
I know 360 panoramic views have been discussed here extensively and I have found a few threads on 360 product shots. Here is an example of what I want:
http://syndicate.tentoe.com/Syndicat...oe=MKP1S5-3333

The 360 view would be single plane just like this example and I would be shooting/editing the product shots in studio (still photots). I need to know if anyone has a good solution for making the flash file efficient enough to use for several hundred products. Here is another good example I have found:
http://www.tgw.com/customer/category...?subcatid=5975

In the above example, TGW uses this on several products, just as I want to do. I am looking for and efficient and cost effective way to do this. If anyone has experience doing this I would appreciate feedback.
Thanks!

View Replies !    View Related
Product Advisor?
does anyone have any links to a cool product advisor using flash? i am working on a project where based on what the user uses their computer for, they will be recommended certain software.

View Replies !    View Related
3D Product Rotation
Hi though I have been using Flash for awhile I would consider myself very much a newbie.

Anyway my question is how was this made:

http://www.wdmybook.com/MB3D.asp?drive=1u

I am assuming it is just a sequence of 3D renders imported into Flash, then controlled to rotate?

Is there an example of how this is done? I have no problem rendering but need to know how to code the movie in Flash.

View Replies !    View Related
How Did They Do This? Product Rotation
Does anyone have a good link (or .FLA file) to a tutorial on how to do this?
I really need the help.
Thanks,
J

http://homepage.mac.com/hallvalla/rotation/

View Replies !    View Related
[F8] Help With Xml Product Catalouge
Hi

I made a flash image gallery but I want to make it into a full products catalouge with a shopping basket, order form and the worx. The content is dynamicaly loaded from an xml file but how can I get the info from the xml file to an order form when cliked on in the flash movie?

View Replies !    View Related
Product Menu
I am trying to create a product menu very similar to:

http://eu.levi.com/en_GB/levis_colle...#fitguide/guys

I have found a lot of rotating menus but I need one that mimics the above link.
Each item will be different widths so I am probably going to find it hard to space them evenly.


Any source, examples, help would be greatly appreciated.

View Replies !    View Related
360 Product Tour
Hi,
could anyone tell me where to get tutorials or source files of 360 object rotation to use for product tour (viewing angles of products)?

I found this in flashkit and try to use it for my purpose but it seem there is script error when I opened it in mx and 8.
I try to place my own pictures on the frames and somehow it look pixelated. Could anyone help?
Thanks alot.

View Replies !    View Related
AS 2.0 - End Of Product Cycle?
I recently read an online post which left me with the impression that ActionScript 3.0 is not only more powerful, but easier to use than AS 1 or AS 2.0.

This has me wondering, will AS 2.0 be obsolete within the next year or two [I am still using Studio 8]?

View Replies !    View Related
Product Customizer.
I want to create a canopy configurator using Flash. The specs include:

- Visual configuration of canopy frame, top color, and accessories

- Drag and drop logo placement

- Printable full color comp of configuration


If anyone would like to help me that would be awesome. This is for myself, im not getting paid to make this, nor am i planning to sell it. I am a reseller of canopies and i want my users to be able to customize a canopy.

Any ideas to start?

P.S - I got Flash experience, i can build full flash sites, not much program making.

View Replies !    View Related
Xml Product Display
i am looking at creating a product viewer using XML to store data, flash to view it.
i need 6 products displayed on stage and onClick the image will grow big and the other 5 products will move to the right side one after each other.

a similar example: http://examples.adobe.com/flex2/inpr...flexstore.html

When you click products up to nav > then click on product and the others move to side. this is my goal.

View Replies !    View Related
Product Migration
I've just acquired a new desk top computer. I installed Studio 8 on my notebook last year. How do I move it to the desk top? Do I need to uninstall it from my notebook? I occasionally use the notebook for design work and for client location explanation and demonstration so it would be nice to have it on both.

View Replies !    View Related
The CS3 Product Cube
Hello!

I am so fascinated by the flating product cube wound on http://www.adobe.com/creativelicense/ which slightly turns as you hover over a product, and the product highlights as well.

How on earth can I reach this effect in Flash, for it is flash, isn't it? It can't be a movie exported from a 3D application with every single scenario divided into single frames on the timeline, can it?

View Replies !    View Related
Needs Help Understanding The Product
Is Flash Media Server 2 an actual server that you buy and install on your computer to host your flash files? I'm really confused in that the server comes packed as a piece of software~ My understanding was that servers are bought over some vender that provides internet space through their hosting machines....

Please help me understand how Flash Media Server 2 is used, not it's features, but the way to deploy it. Thanks.

View Replies !    View Related
Product Gallery
What I am trying to do is similar to http://www.kirupa.com/developer/flash5/frames.htm but what I want Flash to do is:
When clicking a button in Flash. Flash will open a three framed htm document and also tell what will be placed in each of the three frames. Each button will need to use the same three framed htm document but place different info in each of the three frames. I am using MX if it matters

Basically what I am trying to is a product gallery. When you click on a small version of the product in the main flash site, I want it to open a new window. That new window will display in the top frame the title/ name of the product. The middle frame will be a larger image. The bottom frame will be an image of all the available colors and a description of the product. I hope that helps you understand what I am trying to accomplish.

View Replies !    View Related
360 Product Display
hi,

whats the easiest way to create a user controllable 360 degree product display.....like this one http://www.creative.com/products/product.asp?category=210&subcategory=211
click the 360 button

thanks!

View Replies !    View Related
Product Configurator
Hi,

I have to make a productconfigurator for a client, something like a car configurator you see on their sites.

Is there anyone with experience in this area? Wich is the best approach?
Put every possibility in a database? ...?

It has to as dynamic as possible.


Anyone? Thx! Pete

View Replies !    View Related
Product Wishlist
Dear All,

Need help creating an wishlist in flash using AS.

(example: http://www.lechateau.com/Home.aspx) // collections page

I have a thumbnail menu that loads images of products through XML, when a user clicks on a thumbnail it opens a page with the details of that product....in the detail page a want the user to be able to add the product to a wishlist, they can choose up to a maximum of 6 products to view in the wishlist..

How can i work around this?
Please anyone

thanks in advance to all
Jonty

View Replies !    View Related
Product Menu Help
Hi, I'm working on a flash productgallery that gets it's
productdata from a database.

It works like this:
- first choose a category, it'll open a scrollable productmenu.
- the productmenu get its data from the database, it shows
information like: name, country, img & price.

Up until here it works fine.
But were I'm struggling is the part when you choose a product
in the productmenu, it won't display the productdata(img, title, price, description etc.) of the database in the product_info mc.

If someone could take a look at the workfiles for me that'll be great!
(relevant code is to be found in the products layer > menu_general mc)

http://www.pikzel.nl/product_nav.zip

You can see an example here:

http://www.pikzel.nl/product_nav/

I'm struggling with this for a while now (http://www.kirupa.com/forum/showthread.php?t=268644) .
I hope somebody could point me in the right direction with this.

Thank you!

Baeshin.

View Replies !    View Related
Product Viewer
i am looking at creating a product viewer using XML to store data, flash to view it.
i need 6 products displayed on stage and onClick the image will grow big and the other 5 products will move to the right side one after each other.

below is the image of what i am trying to achieve.

View Replies !    View Related
Product Menu
Once again I turn to Kirupa, hopefully to help me like every other time

I am trying to create a product menu very similar to:

http://eu.levi.com/en_GB/levis_colle...#fitguide/guys

I have found a lot of rotating menus but I need one that mimics the above link.
Each item will be different widths so I am probably going to find it hard to space them evenly.


Any source, examples, help would be greatly appreciated.

View Replies !    View Related
Product Gallery
What I am trying to do is similar to http://www.kirupa.com/developer/flash5/frames.htm but what I want Flash to do is:
When clicking a button in Flash. Flash will open a three framed htm document and also tell what will be placed in each of the three frames. Each button will need to use the same three framed htm document but place different info in each of the three frames. I am using MX if it matters

Basically what I am trying to is a product gallery. When you click on a small version of the product in the main flash site, I want it to open a new window. That new window will display in the top frame the title/ name of the product. The middle frame will be a larger image. The bottom frame will be an image of all the available colors and a description of the product. I hope that helps you understand what I am trying to accomplish.

View Replies !    View Related
360 Product Rotation
Hi,

I know there are posts regarding this, but nothing in the last year. I am wondering if anyone knows about the latest techniques for creating 360 product views? A really nice example I have seen is at the site below, simple but effective. Know of any flash tutorials for this?

http://www.photo-mojo.co.uk/Template...ID=91&DoLogin=

Thanks!

Steve

View Replies !    View Related
Is Flash The Right Product For Me?
I have a set of PowerPoint slides and quiz questions I need to publish both on the web and on CDROM. It will need to be able to handle some video clips, as well as send user names and quiz scores to a database on a server (database platform undetermined yet.)

I've never used Flash, or created any e-Learning applications (I'm a database developer by trade.) I do know html code, and I've used FrontPage.

I THINK I want to use Flash, but I'm having a hard time determining if it will meet my needs. For instance, it doesn't look like I can make use of my PowerPoint slides. Macromedia Breeze sounds easy, but it's WAY too expensive.

Can you offer me some advice?

View Replies !    View Related
360° Product Spin
Hi, I have a 3d model that I want to rotate. I'd like it to mimic t-mobiles spinning phones.

I like the click and drag for the rotation.

Thanks if you have any ideas.

Check out the Product demos The Razr has 360
360

View Replies !    View Related
3d Product Visualization
Hey Folks,

Listen, I need to build some 3d flash visualization movies where a user can rotate a 3D furniture product, change colors, etc. The most common method I see out there right now is to build a product rotation animation in a 3d modeling program (like 3d Studio Max) and then use something like a dragable slider bar in flash to play the movie clip forward and backward, thus creating the effect of a manipulatable 3d rotation. Make sense so far?

Now, one limit of this technique is that a user cannot "tilt" an object forward or backward - only left and right as they drag a slider bar in either direction. My question, therefore, is this:

Does anyone know a technique or Flash plugin that will let me have true , controlable 3D rotation (left, right, and tilt) with Flash?

Any and all comments are appreciated!

View Replies !    View Related
AS - Product Customization - How They Do That ?
Hello from my countryside village,

my first post here but long time reader.

I am looking for flash product customization that allow the user to customize a product such as clothing (type of clothing, color, sleeve color, collar type, image upload ... ).

can anyone point me in the right direction? A book or a tutorial.

(Or maybe a script or a program insteed).

chofa
http://www.ultrashock.com/forums/ima...ilies/wink.gif

View Replies !    View Related
Which Macromedia Product To Buy?
There is a flash application that I want to develop for my website. When the flash file loads in someone's browser, I need it to access and grab data from a server so that the flash application knows what to display.

What Macromedia product makes server access possible? Can this be done with Flash Basic for $400 or do I have to spend $700 for Flash Professional? http://www.macromedia.com/software/flash/basic/

Thanks!
David

View Replies !    View Related
Final Cut Pro >> Flv
Hai,


Im exporting clips of an project i've done in FCP to flv.

But I only get sound and an still frame.. no moving picture...

someone ?

please help


cheers

View Replies !    View Related
360 Degree Product Rotation
Hello.

I have figured out how to do a 360 degree VR for a panoramic image.

My question is suppose i want to show a product (eg. a cellphone) which will rotate 360 degree with the help of the mouse in the left and right direction...how do i go about doing this?

Does it involve Video work?



Thank you very much.

View Replies !    View Related
Looking For Flash Product Demos
I am working on a flash product demo and I am looking for some inspiration and trends. Does anyone know of any links to good flash demos? I really appreciate any info. Thanks in advance.

/zach

View Replies !    View Related
Product/image Display
I need an intresting way to display images. I need to have a neat system with photos, and details of the same photos, for a product the company is trying to sell. I want to stay away from the basic like 25 box, thumbnail, you click, and the close ups come up that way. check out www.paperdenim.com and www.joesjeans.com I like how their galley sections work. Anyone have any ideas, or can help me in the correct direction of producing a similar effect.

Let me know.


-G.Guru.

View Replies !    View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved