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




Looking For Flash 3d Tutorial.



I am looking for a flash 3d complete tutorial. Preferably a video one. I have found a few written but none is quite complete and as for video tutorials I didn't found a single one.Isn't there any flash 3d video tutorials out there? Anyway, please leave a link if you know a good tutorial, video or written.



FlashKit > Flash Help > Flash Newbies
Posted on: 05-12-2007, 12:01 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Tutorial For Making A Flash Tutorial
I would like to find a tutorial on how to make a Flash Tutorial like this one or something similar.

Any help would be greatly appreciated!

Where Is Flash Tutorial - Book Macromedia Flash MX Professional 2004 Unleashed
I just bought the above book and I can't locate the tutorial files. Does anyone have a link?

Thanks,
Paolo

To The Tutorial Writing Staff: XML Portfolio Tutorial
Hi guys!

I'm a basic actionscript user which knows the basics of xml and actionscript. I've been seaching for a tutorial for a long time now how to make a portfolio which is dynamic and loads info from an external .xml file.

Since i couldn't find any tutorial like this i've tryed to make my own script out from this xml file:


Code:
<portfolio thumburl="thumbs/" imgurl="images/">
<project hdline="my first project" client="none" date="2007-01-02" category="website" weburl="http://website.com">
<image url="image1.jpg"/>
<image url="image2.jpg"/>
<image url="image3.jpg"/>
<description><![CDATA[This describes my first project]]></description>
</project>
</portfolio>
I have hade in mind that you should see a bunch of thumbnails first in a table format (like 6 cols and 3 rows) on each page, then you should be able to select page with next and prev buttons. When you press on a thumnail a box with the bigger image shuld pop-up and you should be able to read the other information in the xml file (such as client, date etc etc).

I've tryed to make this but it's to advanced. And my version is very buggy, aswell.

Here is what i've done sofar:
www.vmgcomputers.com/xml/portfolio3.swf

I don't know if this helps but here is a "multiple loader" i found:
http://www.johnnyslack.com/content/d...der_jslack.zip


I think there are many guys who are looking for a tutorial about this so please consider to make one, all professionals out there!

Action Scripting In Flash 8 Using A Flash Mx 2004 Tutorial
I did lesson 5 out of the tutorial book, Macromedia Flash MX 2004 Action Script : Training from the Source, developing the TV remote work with functions. (note I am using Flash 8 not Flash MX2004). My code is written line for line exactly the way the book instructs, yet when I test the script it does not work.

I opened the completed exercise, television3.fla,cut and pasted the action script in frame one f my version and, viola, it works.

Now one would think that it was human error, however I cut and pasted both versions of the script into notepad, printed both versions and compared the two version on a light box. They are line to line duplications.

So, why does my typed in version NOT work???

I'm totally baffled. Does anyone else have a clue?

Loading Techniques: Flash 5 & Flash MX Tutorial Question
Hello,
I am trying to dynamically load sound into my movie, but my problem is that when i follow this tutorial the sound doesn't play, here is a link to the tutorial:
http://www.kirupa.com/developer/mx/loading.htm
Now I don't understand what goes in the URL section of the code. Is this a place for a target path like in HTML or a place for a linkage ID name. If it is a place for the linkage ID, when I set the properties to export for AS and set in export in the first frame my preloader doesn't preload until after the sound is already loaded. I hope that wasn't too confusing. And I hope someone can help. Thanks in advance.

drumrby

Flash 8 Tutorial - How To Create A Flash Contact Form?
Does anyone know how to create a flash contact form in flash 8, using compenents,etc...?

Best regards,

Froez

Scrollbar Using Static Text...Flash CS2 (the Tutorial Used Is For Flash 8)
Hi Everyone,

I have viewed numerous tutorials and all of them work...kind of. I say kind of because none of them will work correctly. I am getting extremely frustrated and really don't know what steps to take next. One tutorial was exactly what I was looking for: a scroll bar that includes a slider AND arrows on the top and bottom. Even though I start the scroller at the top, when I put in the actionScript, it starts the scroller in the center. And though it will scroll my text, since it starts in the center, it doesn't show all of the text. Also, when I get to the bottle of the slider, the scroller continues past the bottom arrow then stops. When I try to move it back to the top, it skips most of the text so it can return back to the center. The ActionScript I have been working with mostly; I placed below. If you know of a better way to make this work, please let me know. Thank you so much!


http://www.kirupa.com/developer/flash8/scrollbar3.htm
ActionScript:
scrolling = function () { var scrollHeight:Number = scrollTrack._height; var contentHeight:Number = contentMain._height; var scrollFaceHeight:Number = scrollFace._height; var maskHeight:Number = maskedView._height; var initPosition:Number = scrollFace._y=scrollTrack._y; var initContentPos:Number = contentMain._y; var finalContentPos:Number = maskHeight-contentHeight+initContentPos; var left:Number = scrollTrack._x; var top:Number = scrollTrack._y; var right:Number = scrollTrack._x; var bottom:Number = scrollTrack._height-scrollFaceHeight+scrollTrack._y; var dy:Number = 0; var speed:Number = 10; var moveVal:Number = (contentHeight-maskHeight)/(scrollHeight-scrollFaceHeight); scrollFace.onPress = function() { var currPos:Number = this._y; startDrag(this, false, left, top, right, bottom); this.onMouseMove = function() { dy = Math.abs(initPosition-this._y); contentMain._y = Math.round(dy*-1*moveVal+initContentPos);};}; scrollFace.onMouseUp = function() { stopDrag(); delete this.onMouseMove;}; btnUp.onPress = function() { this.onEnterFrame = function() { if (contentMain._y+speed<maskedView._y) { if (scrollFace._y<=top) { scrollFace._y = top;} else { scrollFace._y -= speed/moveVal;} contentMain._y += speed;} else { scrollFace._y = top; contentMain._y = maskedView._y; delete this.onEnterFrame;}};}; btnUp.onDragOut = function() { delete this.onEnterFrame;}; btnUp.onRollOut = function() { delete this.onEnterFrame;}; btnDown.onPress = function() { this.onEnterFrame = function() { if (contentMain._y-speed>finalContentPos) { if (scrollFace._y>=bottom) { scrollFace._y = bottom;} else { scrollFace._y += speed/moveVal;} contentMain._y -= speed;} else { scrollFace._y = bottom; contentMain._y = finalContentPos; delete this.onEnterFrame;}};}; btnDown.onRelease = function() { delete this.onEnterFrame;}; btnDown.onDragOut = function() { delete this.onEnterFrame;}; if (contentHeight<maskHeight) { scrollFace._visible = false; btnUp.enabled = false; btnDown.enabled = false;} else { scrollFace._visible = true; btnUp.enabled = true; btnDown.enabled = true;}}; scrolling();

Having Problems Doing The Full Flash Site Tutorial In Flash 5
I'm at the point where I'm trying to put code in the buttons using a movie I created.

Here's the follwing code:

on (release) {
_root.contents.loadmovie
("mymoviename.swf");
}

I have a blank MC with the instance name "Contents"

Problem:
When I press the button I get an error and also its pointing to the wrong folder for the movie.

It worked perfectly when I had the Flash MX trial but it's not working now that I'm using my Flash 5

Loading Techniques: Flash 5 & Flash MX Tutorial Question
Hello,
I am trying to dynamically load sound into my movie, but my problem is that when i follow this tutorial the sound doesn't play, here is a link to the tutorial:
http://www.kirupa.com/developer/mx/loading.htm
Now I don't understand what goes in the URL section of the code. Is this a place for a target path like in HTML or a place for a linkage ID name. If it is a place for the linkage ID, when I set the properties to export for AS and set in export in the first frame my preloader doesn't preload until after the sound is already loaded. I hope that wasn't too confusing. And I hope someone can help. Thanks in advance.

drumrby

[Flash][Tutorial Needed] How To Record Sound In Flash?
Hey guys/girls!

I want to make a new project! At the moment I play a lot on my gituar, someone said that I should make a website where I can "show" my songs etc.

But here is the problem : How do I do that!

I've been searching on google and found that it is possible to make a Flash App that can record/play sound, but I cant find any tutorial about it (or some explanation).

I also need some explanation about "Flash Communication Server", is that something like a "Apache" server but then for sound?

Help With Flash 5 Tutorial...
Is there any way I can do this with flash 4?

http://www.flashkit.com/tutorials/Sp...39/index.shtml

Thanks!

Flash Nav Bar Tutorial.. :( :( ---
Hi,

I am trying to do the
http://robouk.mchost.com/tuts/tutor...torial=smartnav
tutorial, and can't seem to figure out a couple things.. First I can't widen and shorten my text like I can in photoshop, so I'm trying to use images, with the modified text already on it with rolovers, instead of text like the tutorial shows. I am also trying to place the code where it goes to the right button when the mouse goes over it, I am having a very difficult time getting it to work, and would love some help if anyone could offer it.

I've attached my .fla file so far, so you can see what I've completed as of yet. I'm a total newb, so any detailed help you can give me would be greatly appreciated.

BTW, I am trying to do the third 'smart nav' bar in the tutorial. I'm also using flashmx

THANKS!


ATTACHMENT : http://burstband.net/sofar.fla

Flash Tutorial
I would like to if anyone knows where to find a flash tutorial on ecards on flash. I would like to know how to send clips via email. If anyone know how I can do this or if there is a tutorial or something I look at, please let me know.

Thanks

Flash & XML Tutorial
Hi,

I've been searching for a good XML/Flash tutorial for an 'Encarta' style database for household electronic objects I'm creating, without any luck. I've got a pretty good handle on Flash and Actionscript but I'm new to XML. Any suggestions?

Thanks in advance!

Flash Tutorial Help Please
I dont get the tutorial about Layering in Special Effects for the Visualizing, How do you do that? I use FLASH MX
Flash Kit - Tutorials - Special Effects - Visualizing

Best Flash MX Tutorial?
Hey Folx,

I'm still a little knew to Flash, well, REALLY new. I wanted to know if there was any tutorial that can help me out. Of course there are hundereds out there, but are there any reccommendations on the best ones? Thanks.

-Edgar

Flash Tutorial
Hello All

I want to ask you guys, if you know the good tutorial for flash. Since I am new to flash I need to practice. I found alot but they don't explain things. I want something like step by step tutorial.

Gracia.
aj

Very New To Flash... Looking For A Tutorial
I'm trying to build a portfolio page.

Basically what I want it to do is have a a grid or line of images each would have a signature border/filigree.

When the mouse is over an image I want a separate image to appear at the bottom of the screen with the same filigree.

Below is a rough sketch of what would happen:


[] [] [] [] [] [] [] <----- row of images w/ borders
_____
[_____] <--- mouse over image w/ border

The upper row of images would be choices.
The mouse over image would be a description of the above chosen image.

Hope that's not too confusing.

I've been told this is a fairly straightforward thing in actionscripting. I'm not computer literate but I also don't have tons of hours to research the code.

So, I'm pleading for help. Is there a tutorial or sample out there I could look at?

ASP To Flash Tutorial
Hi everone

I have a basic ASP knowledge and a basic flash knowledge
I have surfed many forums looking for some help

I have a access database 1 table 4 fields
I have sorted the asp page which produces variables ie
&NAME0=John Smith&LOCATION0=England&RATED0=*****&WEBSITE0=www. domain.com&NAME1=John Smith&LOCATION1=England&RATED1=*****&WEBSITE1=www. domain.com etc

All I need now is to learn the flash bit
Im looking for a table with multipal rows, with a V slide bar "its that simple"

If someone could either point me in the right direction or even show me an example fla
I would really really appreciate it I have found a few that deal with PHP but not ASP

Thanks Ston

Need Flash Mx Tutorial
Can somone give me a website that has a full tutorial of flash mx?

Flash Tutorial Help
Hey everbody,

I was wondering if anybody knows of a flash login Tutorial where a user can login with username and password, and it will take them to a new part of the flash timeline, as well as bring up some more navigation.

If I could somehow get a "forgot password" method going aswell. Where the user would be emailed their password, this I would not expect executed in flash. html, or php I assume.

Any leads would be great on this, as I am super new to this login experience in flash, working with a username and a password together.

Thanx so much for taking the time to help me out.

- Lowell

Help With Flash Tutorial
I'm using and modifying this Flash tutoral:

Zoom In Map

1. I'm trying to remove the "bounce" effect that happens when the map is zoomed.

Can anyone help me with this? I just can't find where it is.

Also
2. I'd like to change the Flash so that you need to click on the arrow instead of hover over the arrow. I thought it would be as simple as changing:

Code:
on (rollOver) {
gotoAndPlay(2);
}
on (rollOut, dragOver) {
gotoAndStop(1);
}
to


Code:
on (press) {
gotoAndPlay(2);
}
on (rollOut, dragOver) {
gotoAndStop(1);
}

But I'm getting an error when I change that.

3. Lastly I'd like to reverse the direction of the arrows. Right now the left arrow moves the drawing/map left. I'd like to move it to the right. (This is based on user feedback that claims that this is counter-intuitive. I disagree, but I'd like to prove them wrong).

Thanks, much!
Dan

Looking For Flash 3d Tutorial
I am looking for a flash 3d complete tutorial. Preferably a video one. I have found a few written but none is quite complete and as for video tutorials I didn't found a single one.Isn't there any flash 3d video tutorials out there? Anyway, please leave a link if you know a good tutorial, video or written. (not necessarally free. I am willing to pay for a good tutorial).

Tutorial For Flash And PHP
Where can I find a simple tutorial to use php from flash ?
thanks

Flash & PHP Tutorial
I've been looking thru all the tutorials, and they are all great.

I've messed around with PHP and Flash and things have worked out well in my limited experiences. I'm using the following code:


ActionScript Code:
//=================================
//  INIT
//=================================
path = "http://www.geft-online.org/" //declare path to php files
lvOut = new LoadVars();            //create lv object

//=================================
//  BTN CODE
//=================================
btnlogin.onRelease = function(){


        //assign user-input value to lv property called years
        lvOut.username = username.text;
        lvOut.password = password.text;
        //send to a blank window
        lvOut.send(path + "flashlogintest.php","_blank");
};
I'm trying to pass variables to PHP. I have this included in a movie clip, in which I have included in a larger movie. When I publish Preview I get an error, that basically states both of my INIT statements and the btnlogin.onRelease statement need to be included in an "on" handler.

I've tried putting something like "_root.mc_login.onLoad" in this clip also, but it does not appear to work. If anyone has any help, it would be greatly appreciated. If I'm not clear on what I'm trying to do, please ask, I'll be glad to work along with you. I'm pretty much a newbie in over their head just trying to help a student organization I advise at a university. I appreciate the help I've found on this board so far.

Flash And Css Tutorial Only For MX 04?
Followed this tutorial to include css styles for dynamic text but it's not working for flash MX- not sure if it's because I'm doing something wrong or if it's only for MX 04 ?
http://www.actionscript.org/tutorial...sh/index.shtml
Is there a tutorial for flash MX?

Flash Ads Tutorial
I would like to create an ad system like the one used on http://www.cnet.com/ which has the numbers + the Back + Next + Pause button. Does anyone know of a good tutorial on how to do this?

Flash Tutorial
Hi!

I'm new here, I would like to ask what website should I go for a good basic tutorial on Flash 8? I'm interested in basic flash, action script and flash media server.

Hope you could help me.

Thanks

Xml-flash Tutorial Please
Hello, I just tried this tutorial:

http://www.kirupa.com/developer/mx2004/xml_slideshow.htm

I managed to complete it successfully in each of two versions. (successful when tested from the original fla file.... yet when testing from the .swf file which is also the case from an html page it get a message that I have to change settings and the movie won't work.. that takes me to a page on adobe here:

http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04a.html

this made absolutely no sense to me.. Global Settings Panel, in flash.. in a browser...

does any one know of a flash xml tutorial that actually works?

Please advise... many thanks

Betsy

Can This Tutorial Be Used In Flash MX?
I read this how to make blinking flash menu in this thread;
http://pub40.ezboard.com/fkirupafrm9...icID=220.topic

I wonder can I also apply these steps to create the menu in FLash MX? thanx

Flash Tutorial
hi does anyone know any tutorials which tlls u how to make those tabs pages in flash?

Using Flash & PHP Tutorial
I've gone through the "using Flash and PHP" tutorial, and so far, everything's ok...however, I do have some questions, if anyone could help.

I'm new to PHP....but have a developer handy...that is strong with it...however, he knows very little about Flash.

At any rate...I'm doing a site for a local TV Station..and they want News Headlines to load dynamically....daily...via PHP.
When following the tutorial, using a dynamic text box....converted to a movie clip, I'm having problems with scrolling text.
In other words, if the content is larger than the box...how can I handle that?

the scroller componet just is not working.

Also, orginally, the page that loads...is "highlights" that should be hyper links....that reference another PHP page...with the "full news story".
<font> settings and such just aint working.....

I hope I'm making sense....any help or suggestions would be greatly appreaciated.

XML, Flash Mx Tutorial
Hi

New to the forum.

Can anyone help me on the xml in Flash Mx?

I have sucessfully complete xml tutorial in Flash, Menu_dropdown.fla, ring any bells for people who have complete it???

What i want to achieve is when you click on the main node, another external flash movie is to appear, in the same flash file and not to load another internet explore window.

Any help?

Thanks

Helpme8

How To Do This In Flash MX (Need Tutorial Or Ref)
Dear Friends,
I came across this swf and quite impressed by it. I would like to know how the effects in this can be achieved...
http://img469.imageshack.us/my.php?image=10gx.swf

1. Movement near COMPANY NAME
2. Random Bubbles
3. PC Cabinet Shining and Lines scrolling
4. Some small white spots zipping along a path.
etc etc

Detailed tutorial in this regard or reference will be of great help.

Thaks
Limmil

Flash MX Tutorial........
Hello There,

Where from i will get a Flash Mx tutorail in PDF formate.
So it will more helpfull to me read as like book instead of html file formate.

Help With Flash Tutorial
Hello,
I started one flash class but ended up leaving school, migraines, computers, no good. I'm trying to learn more of flash on my own while taking my own breaks from staring at the screen, ANYWAY, I found tutorials on this site and i'm trying to build a site for my friend. I want to use the sliding pages menu and the tutorials are helping me to learn more about flash at the same time. I got through all of it fine then it asked me to copy and paste code that isn't working. Maybe I'm doing something wrong. I'm not sure. I right clicked on the keyframe then I clicked actions and then I pasted in this code. I'd REALLY appreciate your help.

Thank you,
Holly

var currentPosition:Number = contentHold.content1._x;
var startFlag:Boolean = false;
menuSlide = function (input:MovieClip) {
if (startFlag == false) {

startFlag = true;

var finalDestination:Number = input._x;
var distanceMoved:Number = 0;
var distanceToMove:Number = Math.abs(finalDestination-currentPosition);
var finalSpeed:Number = .3;
var currentSpeed:Number = 0;
var dir:Number = 1;

if (currentPosition<=finalDestination) {
dir = -1;
} else if (currentPosition>finalDestination) {
dir = 1;
}

this.onEnterFrame = function() {
currentSpeed = Math.round((distanceToMove-distanceMoved+1)*finalSpeed);
distanceMoved += currentSpeed;
contentHold._x += dir*currentSpeed;
if (Math.abs(distanceMoved-distanceToMove)<=1) {
contentHold._x = maskMovie._x-currentPosition+dir*distanceToMove;
currentPosition = input._x;
startFlag = false;
delete this.onEnterFrame;
}
};
}
};
b1.onRelease = function() {
menuSlide(contentHold.content1);
};
b2.onRelease = function() {
menuSlide(contentHold.content2);
};
b3.onRelease = function() {
menuSlide(contentHold.content3);
};
b4.onRelease = function() {
menuSlide(contentHold.content4);
};
b5.onRelease = function() {
menuSlide(contentHold.content5);
};


I keep getting this when I test the movie:

**Error** Scene=Scene 1, layer=action, frame=1:Line 5: Syntax error.


**Error** Scene=Scene 1, layer=action, frame=1:Line 7: Syntax error.


**Error** Scene=Scene 1, layer=action, frame=1:Line 14: Syntax error.


Total ActionScript Errors: 3 Reported Errors: 3

Flash 8 Tutorial
I made a video tutorial using camtasia. It goes over the basics of character movement.
(i used captions because i didnt have a mic)

http://youtube.com/watch?v=gdJjLemuU8o

Flash 8 Or 9 Tutorial
Hello Everybody, I don't know if anbybody can help me to find a good tutorial. I want to do the same that is in this link http://www.nagrags.co.uk/designonlin...5ac6b054b86d0e to my client website well the only thing I need is when the visitor type and choose the text attributes, how the text appears in the dynamic field. The color is already done.

Please any help or how can I search, I guess there's variables involve.

Thank you in advande.
Vanaz

Flash Tutorial
hi does anyone know any tutorials which tlls u how to make those tabs pages in flash?

My 1st Tutorial : Flash MX
Hi,

Flash MX. Part I. Getting Started: Making Nice Masking Effect and learning basic Flash procedures.

In this step-by-step tutorial, you will learn how to to work with layers, frames and keyframes, use radial gradient fill and alpha settings, use copy of the background and line tool to create precise mask, use guide layer in combination with mask layer.
http://www.bestcatalog.net/flash_part1_1.htm



Flash MX. Part II. Making Nice Glowing Effect and learning basic Flash techniques and ActionScript.

In this tutorial, you will learn how to work with rulers and guides, use oval tool to create effects for different parts of the image, adjust vector curves, use shape tween with radial gradient fills, create motion tween in combination with advanced color style for movie clips, use instance name and arrays to randomize the animation. You'll be amazed how fast you learn Flash MX!

http://www.bestcatalog.net/tutorial_...sh_part2_1.htm


Any comments are welcome!


Best of luck,
Dobby

Flash Tutorial
im a newbie and i really want to learn flash animations..can you give me a site that has a step by step tutorial on beginners? as in,im really a beginner in flash...please i need help..thanks

Flash Tutorial
hello flash guru's anyone knows how to make a water ripple, cool like this one? anyone knows a tutorial site in flash?

heres the site with ripple effect
http://www.cwtozone.com/

Flash Tutorial
Does anyone know of a good flash tutorial where I can teach myself Flash?

Any help would be appreciated

Want Flash Tutorial
i want to learn flash so where can i get a flash tutorial.

Flash Tutorial
I was wondering if anyone knew of any simple online Flash tutorials? Or tutorials other than the ones that come with the program itself.

?

- Lyss

Whats The Fix For The ';' Expected In Flash Mx For A Flash 4 Tutorial
Hey im doing http://www.flashkit.com/tutorials/3D...89/index.shtml that tutorial and it was done in flash 4 and now as im trying to flatten out the syntax errors im getting

Scene=Scene 1, Layer=actions, Frame=1: Line 1: ';' expected
Set Variable: "totalpoints" = "8"

Scene=Scene 1, Layer=actions, Frame=2: Line 1: ';' expected
Set Property ("/baseline", X Position); = "1000"

Scene=Scene 1, Layer=actions, Frame=2: Line 3: ';' expected
Set Variable: "n" = "1"

Scene=Scene 1, Layer=actions, Frame=5: Line 1: ';' expected
Set Variable: "normalz" = depth * depth

Scene=Scene 1, Layer=actions, Frame=6: Line 1: ';' expected
Set Variable: "n" = "1";

Scene=Scene 1, Layer=actions, Frame=7: Line 1: ';' expected
Set variable: "n"; = "1"

Scene=Scene 1, Layer=actions, Frame=7: Line 2: ';' expected
Loop While (n<=totalpoints)

Scene=Scene 1, Layer=actions, Frame=7: Line 3: ';' expected
Set Variable: "tmp" = - (sin * eval("x"&n)) + ( cos * eval("z"&n))

Scene=Scene 1, Layer=actions, Frame=8: Line 1: ';' expected
Set Variable: "n" = "1"

Scene=Scene 1, Layer=actions, Frame=9: Line 1: ';' expected
Set Variable: "zoom" = zoom + zm

Scene=Scene 1, Layer=actions, Frame=10: Line 1: ';' expected
Set Variable: "pt1" = eval("pt1"&n)

It keeps expecting my ';' but everywhere i've tried to place a ; it has done nothing, i am also doing it in flash mx so im assuming its done diffrently now can any1 PLZ help me im extremely frustrated.

Flash In A Flash Tutorial - John Schuman
Hi all

I am new to flash, I have been working through the 'Flash in a Flash' tutorials. I am in part 2, I have created the victor_vector animation and I am trying to import it into another flash file with the static background. When I import it it comes in with a white background. On the tutorial its transparent. Please help what am I doing wrong. I have repeated the process many times and followed the tutorial to the letter.

Many thanks

Rob

Flash MX, Flash Full Site Tutorial
hello everyone,

This is my first day here at Kirupa.
And i've noticed that in the Flash MX tutorials there's a cool one calls "flash full site", and I wanted to know if this tutorials can be used on Flash MX 2004 ?

Have a great day,

Tomer.

Kirupa Flash And Php Tutorial>>does It Work In Flash 8?
hi guys! good day. i've been doing my research and been working on my mail contact form for a client's website, but the thing is, there are so many tutorials and source files available, and i'm not sure which ones are working FOR FLASH 8. i've been searching the net for contact forms that work with flash 8, but most are only for flash mx i think.

anyway.. my question is: have you guys ever tried the kirupa flash-php contact form tutorial on flash 8? i've tried this on phpnet.us and bravenet.com, i haven't received any emails. so i suspect that it's the server's mistake. i am currently using orgfree.com, because the php mail is enabled automatically on all their servers. soo.... any of you tried using the flash-php contact form tute of kirupa? here's the link:

http://www.kirupa.com/developer/acti..._php_email.htm

please enlighten me on this. i've been searching the forums for quite sometime now. hehe. anyone? or are there any of you who's willing to give me source files for flash 8 contact form? thanks in advance.

Greg

Copyright © 2005-08 www.BigResource.com, All rights reserved