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




AS 3.0 Enquiry



Hello All! i want to know if ActionScript3.0 with the full functionality of sockets working has been released? If yes please give me the url of the site where i can download it(i dont mean the alpha version but the full version).ThanxKorkor5



KirupaForum > Flash > ActionScript 3.0
Posted on: 04-24-2007, 02:23 PM


View Complete Forum Thread with Replies

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

Enquiry Enquiry Form Tutorials?
Does anybody know of any tutorials for creating enquiry forms, or can suggest the best methods for creating one??

Thanks Flashers!

Var Enquiry
Hi I know its easter sunday...just a quickie. I am moving a background image, with this function:

function via() {
easeType = mx.transitions.easing.Bounce.easeOut;
var begin = -1000;
var end = -200;
var time = 2;
var mc = via_mc;
viaTween = new mx.transitions.Tween(mc, "_x", easeType, begin, end, time, true);
}

well basically I want to change the value of var "begin" & "end" with new var giving the "current" value of my pic. SO i think i really just want a var that measuers the current _x value of pic. thanks

Flash Enquiry
i have deisgned a website for a radio station in html formatt at the moment , so for the first page, index.html i have a 6 second flash introduction filling the screen. i am not good with programming skills but can anyone tell me what action script i can put into the flash introduction so that when it ends it goes straight to the homepage: home.html. beacuase i dont want the user to have to click a enter button on the flash introduction.. can this be done ?

also the radio station features live music (of course). at the moment when users clicks to listen it opens up a windows media player, externally. but my supervisor says that some users may not have the latest codec and some users may be using a macintosch etc. so i have deisgned the media player in flash, is there anyway of having the flash player linked to the live audio stream form the server. dynamically. this way i can bypass all the technicall issues since anyone who uses the internet has to install flash media plugin anyway.

FlashVars Enquiry
would having a . in a Param or Embed tag (as below) cause the 2nd variable not to be passed ?


Code:
<PARAM NAME FlashVars VALUE="sr_url=file.flv&sr_name=dentist">

CDATA Enquiry
Hi

A have an enquiry regarding parsing html formatted text from an xml file.

I know how to do this using CDATA when the text is contained within its own node. However in this case the text is an attribute of a node like this:


Code:
<myNode number="01" title="My Node" text="This is where i want the html formatted text to go.">
Can anyone help me with this? I really dont want to have to alter the xml structure but will if it is the only way.

Thanks

Preloading Enquiry
Hi

Ive looked through many postings on here and still havent got definite answer to my problem.

Im using Flash 8, publish in 8 and as2

I have the same preloading problem, as many on here, that my preloader doesnt arrive on screen until about 80-90% is loaded.

I realise that Im using several components that require exporting in the first frame, and obviously it requires this to load before the preloader will work

What is the definite way around this? Can I export in frame 2 instead? Would I be better having a loading.swf with preloader load the main.swf( I have 30+ movies that will be loaded into the main.swf, these also require a preloader)?

Thanks for any help offered, but would like a definite answer to this for future consideration when building/planning projects, rather than a workaround per se.

Voddie

ActionScript 3.0 Enquiry
hi all,
has there been a release of actionscript 3.0? i.e. the complete working version not the preview that comes with adobe flash9. If it exists can someone give me the url to where i can download it.

thanx
korkor5

Enquiry On Validation
I would like to do an application that has a drop down menu to store a list of text with categories. I used XML to store the list of text. After the user has selected them, Flash will validate the answer user has selected and do a check to determine if the user has chosen the right answer. On top of that, the selection of answer is based on the image, to give them a description.


My enquiry is how do I validate the user's selection and the text that I have stored? Would it be more appropriate to do this using PHP to validate user selection?

Enquiry Form In Flash
HI! im tryin to make an enquiry form for my website.
I have Flash MX, Dreamweaver 4 and Microsoft Access 2000.
Can I make a form with these s/w ?
Can any1 tell me step-by-step method to make a form with following fields ?
Name :_____________
E-mail:_____________
Phone : __(Country Code) __(Area Code) _______(Phone no)
Address: ___________
City: _______
Country: _________
Enquire about: |--------|
`````````````` | Pop |
`````````````` | Down |
`````````````` | Menu |
`````````````` ---------
Remarks:|----------------|
````````| TEXT |
````````| BOX |
````````|________________|
________
``````````````| SUBMIT |
`````````````` --------

I dont have any knowledge of any Programming S/W
Only Basic Flash Actionscript & a lil bit of M Access!

Can any 1 help me !
Please reply asap!

I'll b very THANKFUL to U !

Enquiry Form Problems
Hi, all I am trying to do is a simple enquiry form within flash. I have done these before but it's not working for some reason.

The cgi script appears to be fine to me, and I have set the relevant permissions on it.

Within flash I have three input text boxes, all have been given variable names. On the submit button I have this:

on (release) {
subject = "online enquiry";
recipient = "me@mydomain.co.uk";
}
on (release) {
loadVariablesNum("http://www.mysite.com/cgi-bin/FormMail.pl", 0, "GET");
}

Can anyone see any problems? this is driving me nuts
Cheers

Specific Enquiry To Experts
Hello everyone,

Just to let you know.

I am having some hard time to find a good tutorial website for submitting a flash form to an e-mail address using php. I have learnt a lot and this is what I came up with:

On my submit button, here is the code I am usingn (release) {
if (!Name.length) {

Status= "Please enter a name";

}
else if (!email.length) {
Status= "Please enter an e-mail address";
}

else if (!Request.length) {
Status="Please enter your comments or request";
}
else {
loadVariablesNum ("/php/mail.php?RND="+random(999), 0, "Post");
Status= "Sending Your Form. Please Wait One Moment...";
}
}

On my mail.php document, I have the following (ignore the variables in it as I have removed some on the above to make it shorter).

<?php


$Name = $_Post['Name'];
$Company = $_Post['Company'];
$Phone = $_Post['Phone'];
$Toll = $_Post['Toll'];
$Fax = $_Post['Fax'];
$email = $_Post['email'];
$Website = $_Post['Website'];
$SIC = $_Post['SIC'];
$Request =$_Post['Request'];
$To ="none@none.com";
$headers = "From: " . $_Post['Name'] . " <" . $)_Post['email'] . ">";

$message = "Hi",

" . $_Post[Name] . "has sent you an email message using the flash form from National Business Directory.
Please read below.

" . $_post['Request'];

if(mail($To, $Name, $Company, $Phone, $Toll, $Fax, $email, $Website, $SIC, $Request))

{


echo "Status=Form sent successfully to our Team.&";

}

else


{



echo "Status= Submitting the form failed, please try again.&";



}

?>

For some reasons, it would not go to the e-mail address at all.

Some help at this point would be appreciated. Thanks.

Contact / Enquiry Form, Zip Available, Please Help
I have been trying all day to get my enquiry form to work, im totally stuck and would love someone to help. I have zipped the entire site and the php file; the site is in mx2004 pro here

i thought it was the path to the variables earlier on but i really am lost, ! Please take a look.

the form im talking about is at

beginthinking

Enquiry On Flash Effect
hi there,
i was wondering if anyone knows how to create this flash effect from this website, http://www.uviamalta.com/UVIA.htm . The flash effect which I would like to find out is how I can create that effect where the vector graphics extend to other parts of the page for example the flash intro and also when the user click on the menu . It looks like it was done in one single movie. but i am not sure. can anyone tell me how to do it and any tutorial if anyone know abt . thanks a zillion

Flash Enquiry Form
I have a site that I have practically finished, just need to get an enquiry form functioning... I have tried many tutorials to get it going, and they all seem to not work!!! the site is http://www.delabertauche.com.au/

If anyone can help us out with a form that would be great, looking for any fully tested and working forms, preferably sumthin similar to my form, that'd be great...

Hope someone can help...

Windows Media Player Enquiry
hey!...On clickin' a button in flash cud u make it open an .mp3/.wav file (stored in the same folder as the .swf) in windows media player?

Also, anybody w/ any eXperience in making a simple audio player (i.e. play, stop, slider showing the duration, etc) in Flash, please share some tricks (links to tutorials, etc)

thanx in advance!

New User Enquiry - Moving Text On A Banner Showing
Hi all,

Apologies if this is in the wrong forum, but as a flash new beginner, it seemed like the most appropriate place to post.

I've picked up some of the Training from the Source books and am looking to spend some time with them this weekend but I'm currently in need of a hand trying to replicatean affect I've seen.

Please take a look at this: -

http://www.final-exodus.net/testing/web.swf

I'm led to believe that this sort of thing is fairly easy to do but upon opening Flash, I'm clueless. I've prepared my graphics files and have imported them to their own layer (currently the only one in the fla file). So my foundation is in place.

However, don't have a clue on what to do next. As such,any help is appreciated...

Many thanks,
Steven

Need URGENT Help Re: Required Telephone & Enquiry Type Fields In Contact Form.
Hi all

Thank you in advance. Help needed urgently. I need to complete the contact form I'm working on at work by the end of today if possible. I'm stuck and can not find the solution anywhere.

I need the AS to make users type only numbers in the 'Telephone Field' and users to only have the option of typing 'general' OR 'sales' in the Enquiry Field.

This is what I have currently in the 'Email Field'. I need something similar.

Attached is an image of the contact form I'm working on.


Code:
TextField.prototype.isEmail = function() {
if (this.text.indexOf("@") == -1 || this.text.indexOf(".") == -1) {
return false;
} else {
return true;
}
};
Kindest regards
Ben

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