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




Any Expert To Help On Form Done In Flash



i have done a form in flash and trying to send it without using any cgi or asp. cause i dont know how to config. cgi or asp or php. so i have to use this

it works, but all the subject in the email goes in only one line: name=rrrrremail=dddd....and on and on

how do i make the comment goes to another line?
the script i used are:

"mailto:name@name.com.sg?subject=feedback"+"&body= "+"name="+name+"last="+last+"email="+email+"feedba ck="+Feedback



FlashKit > Flash Help > Flash ActionScript
Posted on: 07-22-2001, 08:20 AM


View Complete Forum Thread with Replies

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

Creating A .pdf From A Flash Form? : Need Expert Help
The user needs a flash form for Orders/Enquiries, (1) where the customer would enter in the details and a pdf is created from this information. (2) Then this pdf would need to be automatically emailed to the user who can then print out manually and view the details.

The email side of things (Phase 2), i'l be ok on, however phase 1; does anyone have any idea how to go about?
Flex?php?

other notes: pdf has set fields where the variables are coming in from Flash.

Expert Help Needed - Form Validation
I've this script (source Flashkit) which has got three text fields, Email, Name & Website. the script checks for the validation of the above three fields.
well, it works fine with email & name, but validating the web address seems to have some help needed from you guys. the code is below,
the name of the text fields are
for Email: email
for Name: id
for Website: web

i hope, there is enough sense in the script. please help me out. for any other further clarification, you all can let me know.

ravi.tandon@learningmate.com

// Script prepared by Answer Studios / ToUnite.com
// Version 1.1 (Feb. 1, 2001

// Logic:
// 8 steps: Preset elements, 6 error checks, write error (if appicable)

// --- Presets
count1 = 0;
count = 0;
Err = 0;

// #1 Check for invalid characters
// Create an arroay of invalid characters
invChars = new Array(" ","#","$","%","!","^","~","'","*","(",")",",","<", ">","/","\");
// Loop through Array and see if there are any matches, if yes then throw and error.
for(i=0; i<invChars.length; i++) {
if (email.indexOf( invChars[i]) >= 0) {
Err = 1;
}

}
invalidChars = new Array(" ","#","$","%","!","^","~","'","*","(",")",",","<", ">","/","\","@");

for(a=0; a<invalidChars.length; a++) {
for(j=0; j<invalidChars.length; j++) {
if (web.indexOf( invChars[j]) >= 0) {
if (id.indexOf( invChars[a]) >= 0) {
Err = 7;
}
}
}
}


/*if (Err == 0) {
for ( n=0; n < web.length; n++ ) {
if (web.charAt(n) == ".") {
count1 = count1 + 1;
}
}
if ( count1 != 1 ) {
Err = 8;
/
}*/
// #3) For Web Address validation.
if ( Err == 0 ) {
splitweb = web.split(".");
webName = splitweb[0];
webDom = splitweb[1];
if ( webName != "www" ) {
Err = 9;
}
if (webDom.indexOf(".") < 0) {
Err = 10;
}
splitDoms = webDom.split(".");
if ( splitDoms[0].length < 2 ) {
Err = 11;
}
if ( splitDoms[1].length < 2 ) {
Err = 12;
}
}



// #2 If passed previous error step >>> Check the @ symbol (1 instance of the symbol)
if (Err == 0) {
// Loop by character through the email string for the @ symbol, count the number of instances
for ( i=0; i < email.length; i++ ) {
if (email.charAt(i) == "@") {
count = count + 1;
}
}
// If there is not 1 instance (0 or more than 1) then throw an error.
if ( count != 1 ) {
Err = 2;
}
}


// Split the email string by the @ sign, forming the name portion and the domain portion.
if ( Err == 0 ) {
splitEmail = email.split("@");
emailName = splitEmail[0];
emailDom = splitEmail[1];

// #3 Verify minimum characters in name portion (minimum of 1), if not throw an error.
if ( emailName.length < 1 ) {
Err = 3;
}

// #4 Verify there is a . (dot) in the domain portion
if (emailDom.indexOf(".") < 0) {
Err = 4;
} else {

// #5 Verify a minimum of 2 characters before the dot, if not throw an error.
// First split the domain portion by the . (dot)
splitDom = emailDom.split(".");
if ( splitDom[0].length < 2 ) {
Err = 5;
}

// #6 Verify a minimum of 2 characters after the dot, if not throw an error.
if ( splitDom[1].length < 2 ) {
Err = 6;
}
}
}

// Associate the Err number into the message array for displaying results on the screen.
ErrMess = ["Passed","Invalid character found.","Problem with the @ symbol.","Problem with the email name.","Missing the dot for the domain name.","Problem with the domain name.","Problem with the domain name extension (.com).", "Invalid username", "Invalid web address","Err9","Err10","Err11","Err12"];
valid = ErrMess[Err];

Contact Form Expert Advice Needed
need expert advice:
I have a client who needs an upgraded contact form (in the picture below):
I was able to make a simple flash/php contact us form from kirupa.com that works just fine(name, email, message). I can't figure it out, and there are absolutely no tutorials online on making a form either then a simple form.... plain HTML form like that would work too, so if you know of any tutorial or you could give some advice, please do...
thank you all!
-am
-its driving me nutts....

Expert Help: Copy Form Data To Text File On Disk
I've got a problem for which I have to decide which software I have to use to solve it...

The situation is the following:

I'm trying to make a little executable program in which users can fill out different forms. This data (i.e. name, address, age) must be saved in a text file on a disk.

The program is also supposed to run from that disk, so it must be a program without the need of plug-ins or external .dll-s

Can this be done in flash?
Is it possible to write an ActionScript which gathers data and writes it to a textfile on a disk?

Mostly people suggest using MS Access or Delphi, but Access requires an installation of that program to run and Delphi requires knowledge I don't have...

Can anyone help me with this problem?

Expert Dummie Needs Expert Help
Thanks for having a look.
I'm trying to load a swf in a MC as soon as the frame is entered
what should my onclipevent be?

g.onMouseMove = function() {
loadMovie("255ser","broke1");
}

::: Flash+CFM Expert: Help :::
I need help on how to display the updated value on a database. I've observed that it does not display the updated value of database when you don't clear the cache of IE. Any trick that can be used to solve the problem?

Expert On Flash? Try This
Maybe it's impossible, but maybe not, and all that I want to know is to insert a VBScript in flash

<BODY ONLOAD=VBScript:IMessenger.InstantMessage("oscar:i sai@hotmail.com")>
<OBJECT classid=clsid:B69003B3-C55E-4B48-836C-BC5946FC3B28
codeType=application/x-oleobject id=IMessenger width=0 height=0></OBJECT>


That script, it only opens a Messenger Window

Thaks

Flash & XML Expert - I'm Willing To Pay $15 For Your Help.
Hey everyone. I'm looking for a Flash and XML expert (who really has a deep understanding of both areas). I'm willing to pay $15 bucks through paypal for any person who could succesfully answer my questions personally.

Specialty - Preferably flash games. Possibly someone who has created one? ...

Note: I'm not asking that anyone make me anything, ...I'm only looking for someone who could hopefully help me find the answers I'm looking for.

If you're interested, contact me asap at loyno@aol.com

I also communicate very quickly through AOL IM (SN: Loyno). If you have AIM and would be willing to use it, that would be greatly appreciated. My SN is of course Loyno, however, please notify me to arrange a time to meet as I'm frequently busy.

All posts and questions regarding this post are more than welcome. Again, you can post any questions here or e-mail them to me personally.

Flash Expert Please Help
:confused;
I am trying to build a flash banner with animations built in separate movie clips in order that the main timeline (scene 1/parent movie) wont have too many frames and will look more organized and easier to control. However, they don't seem to work when I want one movie clip to play after another. For example, i want mc 1 (movie clip 1) to play its animation followed by mc 2. Therefore, on the main timeline, I placed mc 1 in frame 1 on layer named mc 1 and mc 2 in frame 2 on layer named mc 2. When I tested the movie, the animation started to flicker/blink. So I tried adding the following scripts: stop (); in frame 1 of layer mc2 with mc 2 remaining on frame 2 and _root.mc2.play (); in frame 2 of layer mc 1with mc 1 remaining in frame 1. None of these methods worked. The only way that seems to work is placing both movie clips in the same frames (frame 1 and 2) but then the animation isn't going to play one after another. What do you suggest in order to achieve this or should I just not use movie clips and place all animations in one movie clip or create the whole animation in the same timeline. Please help!SOS Happy New Year!

Flash Expert Please HELP
:confused;
I am trying to build a flash banner with animations built in separate movie clips in order that the main timeline (scene 1/parent movie) wont have too many frames and will look more organized and easier to control. However, they don't seem to work when I want one movie clip to play after another. For example, i want mc 1 (movie clip 1) to play its animation followed by mc 2. Therefore, on the main timeline, I placed mc 1 in frame 1 on layer named mc 1 and mc 2 in frame 2 on layer named mc 2. When I tested the movie, the animation started to flicker/blink. So I tried adding the following scripts: stop (); in frame 1 of layer mc2 with mc 2 remaining on frame 2 and _root.mc2.play (); in frame 2 of layer mc 1with mc 1 remaining in frame 1. None of these methods worked. The only way that seems to work is placing both movie clips in the same frames (frame 1 and 2) but then the animation isn't going to play one after another. What do you suggest in order to achieve this or should I just not use movie clips and place all animations in one movie clip or create the whole animation in the same timeline. Please help!SOS Happy New Year!

Flash Expert?
Hey can a flash expert hit me on msn sometime?
Not tryin to advertise or take anyone, just tryin to get some flash questions answered.. perhaps even hire your services..

Please let me know, I have a few sites that would benefit ... and I need just general direction.

jab@leximedia.net <- msn

Need An Expert With Flash
Hey There!

I'm trying to create a flash object that has a photo, then when you place the mouse over it, it plays a audio file.
I just started playing around with Adobe Flash CS3 Pro.

Can Anyone Help Me Out Here?





























Edited: 11/15/2007 at 03:09:04 PM by Steven-9088

Flash Expert?
I'm looking to hire some flash experts to create the same kind of toys that you see on www.freeflashtoys.com

If you're capable of doing similar work, please contact me.

Flash/AS Expert Needed
Hey,

I need some help, obviously...

I have a drag and drop window, and I am trying to put a scroll pane thing inside it, one I downloaded from here. It's not a scroll pane component, it's a scroll made out of masks and such. I keep getting this error when I try to put it inside the drag and drop window.


Code:
Target not found: Target="_root.controlmove" Base="_level0.window.instance19.bar"
And I duno what is wrong, I can't figure it out.. It all works fine except when I use the scroll bar. (the scroll window I downloaded is made to look like windows, the arrows and bar inside that resizes depending on how much content you have inside)

Any ideas, if someone would wana help me out I could send them the fla and perhaps they could look inside to see whats wrong with it... If anyone would be so kind.
If not and you can tell me whats wrong on here it would be a great help too.
ICQ: 46549062
MSN: ibbanging@hotmail.com
Yahoo IM: ibbanging (ibbanging@yahoo.com) Duno which one you use to add people.

Those are the easiest ways I can think of to get in touch with me, alough I don't check the E-mail addys within those, so messages would be best.

This is the last thing I need to get my site up and running, I hope.

Ian

Easy, I'm Not A Flash Expert :)
I created 4 swf's in flashtyper, and wanted to know if I can run them 1 after another when I go into Flash? I have Flash 5 and MX so whatever is easiest, please help? Thanx

Flash + Javascript Expert Help Please
I have a project where I have a bunch of logos that are partners to our company that will be displayed in a kiosk fashion. They want the logos to be able to be clicked and have their respective websites come up in a browser. Obviously thats easy. But the complicated part is that once that browser is launched, they want it to close itself if the mouse is not moved after so many seconds. Is this possible?

Any help or pointers would be of much help.

Thanks

My Flash Preloader (expert)
Alright.. For the past, 20 minutes, I have been working on a pretty good preloader..

Here it is..

http://www.geocities.com/nmgwebsite/loader.html

do you think I have a chance of it getting put onto the website if I send it in? I don't want to make a tutorial (A poorly made tutorial is worse than breaking your leg, and I dont want to cause that for others), but I want it to go in the movies section..

Please rate it.. Thanks!

Flash <b>expert</b> Needed
ok, i need a way in flash to draw arrows like in microsoft word's autoshapes, like you click once to start the arrow, then it follows around your cursor until you click again and the arrow ends, then it needs to be made into a movie clip so i can put an action on it for when its clicked on again...i hope some real pro can help me out here

Need Expert Flash User Help
Thank for the interest in my post.

I would like to start out by saying that in am a beginner at flash.
For this reason you may think I’m foolish for trying to do such a complex project. I 100 and 10 % understand that, however any help you can give my will be greatly appreciated.

Here is what I need help with; I would like to use flash MX 2004 to crate a web page that display’s a rotating car. On the same page as this car will be a form with different attributes such as decal type and color, car color and so on. The tricky part is I want the different attributes selected in the flash form to display on the rotating flash car. Would I need a database to hold different decal images? How would I go about achieving is I general? I do not expect to learn how to do this over night. If you could even give me a push in the right direction I would be very grateful. Thank you for your time.

Need Expert Flash User Help
Thank for the interest in my post.

I would like to start out by saying that in am a beginner at flash.
For this reason you may think I’m foolish for trying to do such a complex project. I 100 and 10 % understand that, however any help you can give my will be greatly appreciated.

Here is what I need help with; I would like to use flash MX 2004 to crate a web page that display’s a rotating car. On the same page as this car will be a form with different attributes such as decal type and color, car color and so on. The tricky part is I want the different attributes selected in the flash form to display on the rotating flash car. Would I need a database to hold different decal images? How would I go about achieving is I general? I do not expect to learn how to do this over night. If you could even give me a push in the right direction I would be very grateful. Thank you for your time.

Need Expert Flash User Help
This is what I would like to achieve: when a person clicks on a scrollable menu different decal types are shown such as animal, racing and so on. Once a decal type is selected from the menu, that decal is shown on the three views of the car: left side, right side and hood.

I was told that I should use “List Box” to link the menu to the different decal types. Also I should use the same “List box” to link the decal images to their corresponding view of the car. (tutorial @ http://www.kirupa.com/developer/mx/listbox.htm) It was also recommended that I use Alpha to index the different decals images instead of a database.

Is using Alpha to index the different decals a good idea? If so do you know of any good Alpha tutorials? What about using the “List box” component?

I am having a heck of a time trying to tie it all to gather. Any help you can give is most appreciated!

Need Expert Flash User Help
This is what I would like to achieve: when a person clicks on a scrollable menu different decal types are shown such as animal, racing and so on. Once a decal type is selected from the menu, that decal is shown on the three views of the car: left side, right side and hood.

I was told that I should use “List Box” to link the menu to the different decal types. Also I should use the same “List box” to link the decal images to their corresponding view of the car. (tutorial @ http://www.kirupa.com/developer/mx/listbox.htm) It was also recommended that I use Alpha to index the different decals images instead of a database.

Is using Alpha to index the different decals a good idea? If so do you know of any good Alpha tutorials? What about using the “List box” component?

As far as the actionscript go’s how complicated do you think this could get?

I am having a heck of a time trying to tie it all to gather. Any help you can give is most appreciated!

Opacity Bug - Need FLASH Expert Help
Hello

on my site:
Planet Lucid there is a slight image of a box that is still visible even though its opacity is set to zero. [bottom right..surrounding buttons]

The symbol itself (the one thats mession up)is masking the layer of buttons below it. I really want to get rid of this distracting result...would anyone care to pick apart the .fla file - its really tiny and not complicated..

Thanks in advance - Please help if you can!

BArmty

I Need Some Expert Flash Advice...
I need some advice...

Here's the thing... I've been learning flash for over a year now... and I'm still learning of course... no where near calling myself intermediate... or advanced... but I know my way around actionscript... whatever...

Well here's the thing... I just made my first "paid" website... it isn't all up yet, and it definatley isn't the greatest website, but this is what the guy wanted... and this is the limit of what I could do... so heres the address... http://www.jandjmachineproducts.com ... well... i'm not sure if you noticed when visiting it, but I didn't take into account the screen resolution.

I created the website in 1280 by 1024... and after I was done I read a lot of Flash designers say it is best to use 1024 by 768 (because the majority of computer users use this resolution)

Well, The guy I created the website for, he still uses AOL (sorry for any AOL users) and called his computer an IBM compatible (which my friend and I took as the equivalent of a Commodore 64 haha) so therefore I believe he uses 800 X 600.

When the guy visited my friend's work, he mentioned how the website looked better on my friends computer than it did on his... which made us really think he uses 800 by 600, and I'm pretty sure he doesn't even know what screen resolution is...

Well, Long story short... The advice I need is this...

"What should I do in the situation... should I remake the website in 800 by 600 to please his needs? should I re-make it in 1024 by 768 to please most people's needs... or should I make it look the best by using the screen resolution of my choice...???"

and on top of that... If I should re-make them... is their any easy way to go about telling a computer which resolution .swf to load? I know there is a JAVA redirect or something... but I read that that redirect doesnt look all that great... and loads pretty weird sometimes...

I already tried to Publish the swf with Match Movie set to 100%... but it just doesnt look good when the resolution is shrunk...

This is driving my insane... Is this the price for making total flash websites (i dislike HTML... more like hate HTML), or is this the price for being a web designer period?

Thanks for any response... I will take all the advice I can get...

- Mikey

Looking For Flash Intro Expert - *Look*
Hello,

My name is Evan Denis and I'm the owner of Evan Interactive ... As you can see, my site is fully developed and uses a small amount of flash in the top header.... I'm looking for a flash expert that can design flash intros that have a minimum of this quality:

Flash Sample 1
Flash Sample 2

I'm looking for someone that can make me a flash intro that is as good as the intros above. The problem is that I'm now out of funding. I have a hard time believing anyone would want to make me a flash intro for free. However I'm willing to design someone a free website or something of that nature in exchange for a flash intro.

I need one designed fairly soon and done within a week tops. If anyone were up for the task then I would love to hear from you. I really appreciate it. Thanks!

Regards,

-- Evan Denis
-- Evan Interactive
-- evan@evan-interactive.com
-- http://www.evan-interactive.com

:: Flash Expert Needed ::
hi experts,

My problem is when the green square is dragged, I need the red circle to stay centred over the red cross and the text box to display the red circle's _x & _y coordinates in relation to the green square.

you can see my problem here:
http://www.dado-gs.net/dragcenter.zip

I have attached the fla file. waiting for your answers...........

:: FLASH Expert Needed ::
hi experts,

My problem is when the green square is dragged, I need the red circle to stay centred over the red cross and the text box to display the red circle's _x & _y coordinates in relation to the green square.

you can see my problem here:
http://www.dado-gs.net/dragcenter.zip

I have attached the fla file. waiting for your answers...........
__________________
regards
chochweets

Flash And XML Expert - Will Pay $15 For Your Knowledge
Hey everyone. I'm looking for a Flash and XML expert (who really has a deep understanding of both areas). I'm willing to pay $15 bucks through paypal for any person who could succesfully answer my questions personally.

Specialty - Preferably flash games. Possibly someone who has created one? ...

Note: I'm not asking that anyone make me anything, ...I'm only looking for someone who could hopefully help me find the answers I'm looking for.

If you're interested, contact me asap at loyno@aol.com

I also communicate very quickly through AOL IM (SN: Loyno). If you have AIM and would be willing to use it, that would be greatly appreciated. My SN is of course Loyno, however, please notify me to arrange a time to meet as I'm frequently busy.

All posts and questions regarding this post are more than welcome. Again, you can post any questions here or e-mail them to me personally.

Need Flash Expert For Updates
I need to find someone to help with website updates in Flash. We have a client website built in Flash MX and need help updating their opportunities page. Please let me know if you would be interested in this quick update. Thank you!

Need A Flash Animator Expert
Greetings,

For a large flash animation project I'd like to contact Flash Animators.
If anyone could point me to a list of the best flash animators, it would be much appreciated.
Thanks in advance!

Help, Need Expert Flash User Help
This is what I would like to achieve: when a person clicks on a scrollable menu different decal types are shown such as animal, racing and so on. Once a decal type is selected from the menu, that decal is shown on the three views of the car: left side, right side and hood.



I was told that I should use “List Box” to link the menu to the different decal types. Also I should use the same “List box” to link the decal images to their corresponding view of the car. (tutorial @ http://www.kirupa.com/developer/mx/listbox.htm) It was also recommended that I use Alpha to index the different decals images instead of a database.



Is using Alpha to index the different decals a good idea? If so do you know of any good Alpha tutorials? What about using the “List box” component?



I am having a heck of a time trying to tie it all to gather. Any help you can give is most appreciated!

Flash Expert Needed
can anyone help me im making this thing so when you click somwhere on the screen the person moves there and avoids objects is there a way

thanks


Flash Monkey

Need Some Expert Help On Flash Template...Please
Now i'm having a script problem on my working flash template file. I'm really appreciate if some flash "expert" can help me to find the solution, thanks in advance. Here're the fla file. Inside the 4 seperate movie, i suppose to set 4 different url link on each, but the problem is when i debug & press either 1 of the link/movie (using onClipEvent/On Release), it popup all the 4 url? Do anyone have any clue about this?

on (rollOver)
{
a = this._name.substr(1, 1);
if (_root.p != a)
{
gotoAndPlay(2);
} // end if
}
on (releaseOutside, rollOut)
{
a = this._name.substr(1, 1);
if (_root.p != a)
{
gotoAndPlay(19);
} // end if
}
on (release)
{
a = this._name.substr(1, 1);
if (_root.p != a && !_root.playing)
{
_parent["b" + _root.p].gotoAndPlay(19);
_root.p = a;
_root.play();
} // end if
}

Looking For Some Expert Flash Video Help
I am a noob trying to get my flash file converted over to a looping, DVD video clip that will play on a wide screen TV at our local pub. I have no idea how to. I also have these questions....
1. I made it 1020x720.... should it actually be.... 1280x720?
2. I've downloaded several demos of SWF to DVD conversion softwares, yet none seem to provide the graphics quality once converted. What software is best?
3. What format is best to convert to for the best graphics? .AVI, .MOV, .WMV, .MP3?
3. What's Bitrate do when converting? I assume higher is better?

Hope someone here can at least provide me a few expert pointers on how to best get my flash file to widescreen TV with the best quality without spending hundreds on additional software. Oh, and I am using Flash8 if that matters.

Thanks for any help!!!
KZ

Help, Need Expert Flash User Help
This is what I would like to achieve: when a person clicks on a scrollable menu different decal types are shown such as animal, racing and so on. Once a decal type is selected from the menu, that decal is shown on the three views of the car: left side, right side and hood.



I was told that I should use “List Box” to link the menu to the different decal types. Also I should use the same “List box” to link the decal images to their corresponding view of the car. (tutorial @ http://www.kirupa.com/developer/mx/listbox.htm) It was also recommended that I use Alpha to index the different decals images instead of a database.



Is using Alpha to index the different decals a good idea? If so do you know of any good Alpha tutorials? What about using the “List box” component?



I am having a heck of a time trying to tie it all to gather. Any help you can give is most appreciated!

Flash Expert Needed....
Hi guys,

Thought some of you flash people would be interested in talking to this guy. He emailed me looking for someone to help him on a project, and I don't know enough about doing flash to be of any use to him.

So, I figured I'd pass this along so somebody could maybe make a buck, or two helping this guy with his project.

Here's the email he senty me...

Quote:




Hi there Rockrz.

I hope you don't mind me writing to you via The Laughingbird Software forum. I'm emailing all the members of the forum.

I have a quick question.

I'm in need of a Flash animation expert for a new project I'm working on. If you know of anybody that you could put me in touch with, I'd be interested in speaking with them.

I need a Flash Cartoonist. Somebody who knows Flash inside and out, and who loves cartooning!

have them email me: marc1@thelogocreator.com
If they have any sample animations, perhaps you can ask them to have some handy.

Thanks for your time!
Hope all is well.

- Marc

Marc "Laughingbird" Sylvester
Creator of The Logo Creator software

Question For A Flash Expert
what is the difference between a professional flash/AS developer and and an average one? What criteria does the professional developer have, why does those stand out?

Expert Flash Help Would Be Great
Hi - ive asked this quesion before waith no luck so i thought i would word it differently

Im trying to create a swooshing effect by using a curved vector line

basically i would like the line to fade in from one end an fade out from the same end.

Imagine like a shooting star with a trail effect.

Ive seen this done before but attached to a mouse cursor position but how can i do it along a specified curved path

I Need A Flash Expert To Talk To...
hello my name is clint and have been doing flash for about 3 monts (im a nubie) and i need some that has AIM to help me...

please some out there help me out.

my AIM me cm3pyro

thanks, Clint

Expert Help In Resizing A Flash Movie.
I’m importing jpg files in my Flash Film. I have set the size of my Film to w=100% and h=100%. When the movie is loaded in the Explore, it will resize. At that point my jpg files lose there quality. Dose anyone have another way to resize the move to the client window.

Thanks
Carl

Flash Background -expert Help Needed
Hi

Here's my situation: I have a Flash movie with a certain FSCOMMAND that uses the "exec" and calls a batch file, which then opens a file/folder. I'd like to have that flash movie (SWF) as my computer desktop/background. However... it seems that the FS COMMAND "exec" only works when i open the SWF file from the Flash standalone player, and when i open it through a browser or HTML file it doesn't work.

Is there any way to get the FS COMMAND "exec" to work in a HTML file?

What i want to do is have the SWF as a background, so when i click a button it opens "C:" and when i click another button it opens a file etc.

i can make it open a file when i click a button through the batch file (like i explained in the first paragraph) but i don't know how to make it a computer background yet. does anyone know? can someone help me please?
Thanks
~Lorenzo

Efficiency Expert Needed For Flash 5 AS
I need a countdown display to show the days,hours,minutes,seconds remaining until the new year. I threw this together to see if was a workable concept. It works, but time accuracy over the long run is questionable at this point. That is not a huge issue as I hope somebody has something better to do than sit and watch this.

Really, I need help finding a more efficient way to calculate this than my "creative math".

In a nutshell, I have this


Code:

Frame 1:
then = new Date();

then.setFullYear(2003,0,1);
then.setHours(0);
then.setMinutes(0);
then.setSeconds(0);

targ = then.getTime();


Frame 2: (No snickering allowed, but constructive criticism welcome)
now = new Date();

targo = now.getTime();
diff = targ - targo;

dayRemain = ((((diff/1000)/60)/60)/24);
dayRemain -=1;

trash = new String();
trash = dayRemain.toString();

hack = new Array();
hack = trash.split(".");

days = hack[0];
hours = "." + hack[1];

hours = Number(hours);
hours = hours*24;
hourhack = new Array();
hourFigure = hours.toString();
hourhack = hourFigure.split(".");

hours = hourhack[0];

minutes = "." + hourhack[1];
minutes = Number(minutes);
minutes = minutes * 60;

minFigure = new String();
minFigure = minutes.toString();
minhack = new Array();
minhack = minFigure.split(".");

minutes = minhack[0];

seconds = "." + minhack[1];
seconds = Number(seconds);
seconds = Math.round(seconds * 60);

if (seconds == 60){
seconds = 59
}
if (seconds < 10){
seconds = "0" + seconds;
}

results = days + " Days " + hours + " Hrs " + minutes + " min " +seconds + " sec";

Frame 3:
gotoAndPlay(2);

Looking For Expert Flash Designers $$ Involved
I need some flash made for a up and coming custom computer company. You need to be able to make some buttons and a banner type flash that constantly runs on the top of the page with voice overs. Anyone that can do this, please email me at flanube@flanube.com or you can get me on AIM with xblbob. Whoever is interested we can discuss the price further after you have contacted me. Please dont say you want to do it throught the forum though because i most likeley wont check back here for awhile. Thanks alot.

Please Help Flash Expert Needed ASAP
I need help with this in the next day please.

I have done an intro animation for a website I'm doing but am having trouble finishing it off and would really appreciate it if someone could donate some time.
Here is an MX and Flash 5 version of the animation:
http://oppressa.freeservers.com/intro.zip (MX Version)
http://oppressa.freeservers.com/introver5.zip (Flash 5 Version)

What I need to happen towards the end of the animation is the scaffolding to somehow disappear and then the rotating logo to rotate continually from then on.

Can anyone help me please?

[F8] I Need A Flash Expert Than Can Do A Product Zoom....
Hey, everyone, hope I'm posting this in the right area.

I need to do a product zoom and I can't find what I want in
what I've seen in Flash so far. This is what I want it to do:

http://www.rampage.com/page/items.de...8.itemid.10959

I understand that this is using Ajax and not flash, but there's
gotta be a way to do it. By the way, I don't want any buttons
or gradual zoom-ins. I just want to mouse over for a zoomed
image, just like you see in the above URL.

If you can do it, email me. Paying job, of course.

Thanks so much.

Steve
venicegolfer@hotmail.com

Flash Action Script Expert... Need Your Help... Pls
I'm asking for someone that is willing to help us to our action scripting for our project which is a SIMULATOR. I really dont know how start it. And I'm having a hard time to find some references to web....

question for now:
1. how to input word? user's input <<< what kind of commands or action script should I put?

2. how to make an output regarding to input? <<< what kind of commands or action script should I put?

3. Is there any script that will call for this certain script? if there is, what kind of commands or action script should I put?

4. Is there a way that ms access and flash can be integrated?

that's all for now.... anyway if you dont mind add me to yahoo messenger... my Yahoo ID: nuller007.... attach a message pls.... just need your help badly.

thanks....

Flash Rookie Posing As An Expert
Hello all,

I am in way over my head. I downloaded a full flash templete to base my web page on thinking it would be easy to modify. First mistake? Thinking. After countless hours with Studio 8 I have figured out how to make all the necessary changes except an image gallery. I have searched for hours on the net to try to figure out how to make free gallery codes work but my ignorance in this issue is causing great stress. And I do not see a topic in these forums that answers the below question for me very well.

Here's what I'd like, can someone tell me how hard it is to do? I have a webpage that has tabs. One tab is "gallery". When you select it there are three rows of buttons with pictures on them setting you up for the next page. When you click on one of these buttons I have it set up so an identical page appears but with an empty space where the buttons from the "gallery" page were. Here is where I want the thumbnails to appear and when you click on the thumb a larger pic shows below. What I am hoping is that this can be done just by coding to find a folder with pictures and sizing and loading itself. Please tell me there is a way to code this so I just have to add or delete pictures from/to a file folder. And I need it to work for diferent folders of photos.

Please forgive my "rookiness" in this issue. I can't believe there isn't something all ready in these forums that will help me, or online. But I am having a heck of a time finding it. Once I know the keys to writing the code and the proper place to set it up I can do the rest.

Thanks in advance to all in forum land.

musicman68095

Is There An Expert Here Who Knows How To Load CSS Into XML Data In Flash?
I have read the great Tut here from Kirupa
http://www.kirupa.com/developer/mx2004/css.htm
However it ony applies to applying CSS to static text and not to XML data into flash.
I have scoured through the forums to see that I am not the only one looking for an answer to apply CSS to XML data outputted to Flash. I get the same result as others have had here who have posted about the same question and yet no one has given them a solution.

FLASH GODS would you be so kind as to help?

Thank you!

Need Advice From Flash, Php Xml, Mysql Expert
okay i've got a friend who is a commercial real estate agent. he's wanting a website with a property listing. this would include some type of dashboard/user interface where he can add/delete listings and fill in the details, upload a photo, etc.

I've built a flash file that reads from simple xml file and will build a listing and populate an mc with all the listings..etc.

what i'm wondering is a.) should I continue trying to build this with XML/flash/PHP or should I look at MYSQL instead

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