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




Actionscript Doesn't Seem To Be Where Flash Says It Is



I've encountered an odd problem, and I really hope it's simple and I'm only having a hard time because I'm pretty new to Flash.

I've purchased a web template, and I'm in the process of editing it. When I was testing, I noticed a "trace" was coming up when a certain page was called. I went to that symbol and searched all within it and all the symbols within it, and could not find a "trace" anywhere.

I finally gave up, went to "Edit -> Find/Replace", typed in "trace" and it came back with the result of "symbol 'blah' -> layer 'layer 1' -> frame 'frame 1' "

When I clicked on the result, the code came up in the Actions window, but when I actually went to Blah->layer 1->frame 1, I cannot access the code. I can only access it when I do a search.

What in the world is going on? I just don't get it. It says it's on that layer, in that frame... why can I not access it?



FlashKit > Flash Help > Flash Newbies
Posted on: 10-17-2006, 12:21 PM


View Complete Forum Thread with Replies

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

Flash 5 Actionscript Doesn't Work
I'm working on a project with a friend of mine who is using Flash 5 and I'm using MX.

We are creating a clock that uses a new Date function.

Here is the line of code that's causing the trouble:

shiftchange = new Date(2003, 9, 01, 09, 0, 0);

It works fine on his but not on mine. I get an output error;

Symbol=clockclip, Layer=Layer 1, Frame=1: Line 3: ')' or ',' expected shiftchange = new Date(2003, 9, 01, 09, 0, 0);

When I save and output in Flash 5 it still doesn't work.

Does MX change things once you open them?

Any suggestions?

Why Doesn't This Actionscript Work In Flash 5?
This actionscript works fine when exported as Flash 6 but doesn't work exported as 5....anyone see why?

onEnterFrame = function() {
currentScore=(questionsCorrect/questionsAttempted) *100;
if (isNan(currentScore)) {
currentScore=0;
}
if (currentScoreDisplayed<currentScore) {
currentScoreDisplayed++;
}
if (currentScoreDisplayed>currentScore) {
currentScoreDisplayed--;
}
if (currentScoreDisplayed>9) {
percentClip._x=388.3;
}
if (currentScoreDisplayed>99) {
percentClip._x=408.3;
}
if (currentScore<20) {
currentRank="<b>Go Ride a<br>10-Speed</b>";
}
if (currentScore>19) {
currentRank="<b>Rookie<br>Rider</b>";
}
if (currentScore>39) {
currentRank="<b>Been Around<br>the Block</b>";
}
if (currentScore>59) {
currentRank="<b>Open Road<br>Vet</b>";
}
if (currentScore>79) {
currentRank="<b>Leader of<br>the Pack</b>";
}
if (currentScore>99) {
currentRank="<b>HOG<br>Legend</b>";
}
};

Thanks!

[Flash 8] Dynamic Text Field Doesn't Return Value Calculated In ActionScript
Hello,

I am having trouble getting my dynamic text field to populate based on a countdown ActionScript. My dynamic text field's attribute name is time_txt and is set to Dynamic Text in the Properties panel. Here is my code:


Code:
this.onEnterframe = function() {

//Gets current date, year, and time
var today:Date = new Date ();
var currentYear = today.getFullYear();
var currentTime = today.getTime();

//Denotes target date that we are counting down to
var targetDate:Date = new Date (2008,06,12);
var targetTime = targetDate.getTime();

//Calculates the actual time left between the current date and target date
var timeLeft = targetTime - currentTime;

//Converst milliseconds into seconds, minutes, hours, and days
var sec = Math.floor(timeleft/1000);
var min = Math.floor(sec/60);
var hrs = Math.floor(min/60);
var days = Math.floor(hrs/24);

//Stores remainders of seconds so 130 seconds doesn't look like 2 minutes, 130 seconds, but rather 2 minutes 10 seconds
//Converts sec to a string
//Accounts for sec values under 10 so that 5 reads 05
sec = string(sec % 60);
if (sec.length < 2) {
sec = "0" + sec;
}

//Stores remainders of minutes so 130 seconds doesn't look like 2 hours, 130 minutes, but rather 2 hours 10 minutes
//Converts min to a string
//Accounts for min values under 10 so that 5 reads 05
min = string(min % 60);
if (min.length < 2) {
min = "0" + min;
}

//Stores remainders of hours so 25 hours doesn't look like 1 day, 25 hours, but rather 1 day 1 hour
//Converts hrs to a string
//Accounts for hrs values under 10 so that 5 reads 05
hrs = string(hrs % 24);
if (hrs.length < 2) {
hrs = "0" + hrs;
}

//Converts days into a string
days = string(days);

//String together days, hours, minutes, seconds
var counter:String = days + ":" + hrs + ":" + min + ":" + sec;

//Update dynamic text field
time_txt.text = counter;

}
Any ideas?

Thanks!

[Flash 8] Old Actionscript Doesn't Work In Flash... Help Please
Hello,
I have found a old flash file with endles scrolling gallery. I want to use this and edit it in flash 8 but it doesn't work. So I hope that someone can help me out on this.
When i want to test the movie an error massage apears saying:


Quote:




**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 8: Syntax error.
setProperty "a" add i,_x,mx;
**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 9: Syntax error.
set "a" add Number(i) add ":t1", i;
**Error** Scene=Scene 1, layer=Layer 1, frame=2:Line 7: ')' or ',' expected
mx = getProperty("a" add i, _x);
**Error** Scene=Scene 1, layer=Layer 1, frame=2:Line 8: ')' or ',' expected
setProperty ("a" add i, _x, mx-15);
**Error** Scene=Scene 1, layer=Layer 1, frame=2:Line 14: Unexpected '}' encountered
}
Total ActionScript Errors: 5 Reported Errors: 5




Here's the action script (It's has 3 frames in the root):
Frame 1:

Code:

mx = getProperty("a1",_x);
mw = getProperty("a1",_width);
itemnr = 5;
for(i=15; i<=itemnr; i++)
{
mx = (mx + mw) + 15;
setProperty "a" add i,_x,mx;
set "a" add Number(i) add ":t1", i;
}
frame 2:

Code:

a1.onRelease = function() {
mc = _root.a1._x
if (mc>0 and mc<210)
{
for (i=1; i<=itemnr; i++)
{
mx = getProperty("a" add i, _x);
setProperty ("a" add i, _x, mx-15);

}

}
}
if (mc>220 and mc<400)
{
for (i=1; i<=itemnr; i++)
{
mx = getProperty("a" add i, _x);
setProperty ("a" add i, _x, mx-15);
}
}
frame 3:

Code:

gotoAndPlay (2);
I hope that someone here can help me out...

Greetz

Actionscript Doesn´t Play
Ok, I haven´t done anything in flash for a few months. Just started a new project and *bang* I hit the wall. Just a simple thing and it drives me crazy because I can´t figure out, why.

Imagine two keyframes without names. The first displays a big "1", the second a big "2". The second has the following script assigned:

trace ("2");
gotoAndPlay (1);


But the script doesn´t work. No output from trace, no jump to the first frame. The small "a", indicating a script in frame 2 appears, though. Anyway what´s wrong? I know I´ll kick my ass if I read your reply because it has to be something simple...

Thanks, Hendrik

Why Doesn't This Actionscript Work?
Yesterday I made a post about random things happening when I try to switch between frames. I have taken it down to basics now:

I have 35 frames I have this code in frame 1:


Code:
stop();
gotoAndStop(5);


but will it stop on frame 5? Course it won't!

Any help gratefully recieved, thanks once again..

Beast

Actionscript Doesn't Load
Hi; I'm really getting mad.

I have a movie which has some buttons who load images within another movie; I have two of them. One works good both online and offline; the other doesn't load any pictures online (but it loads 'em offline!)! Though, I just modified the former (just stripped it from some frames, which didn't got any working function; it was just frills removed) in order to build the latter!

WHY this happens? :-(

Please have a look!

I really don't know what happens. The owner is beating me for this movie doesn't work, and I don't know how to resolve this problem. I'm in a real problem. Please help!

First Frame Of Actionscript Doesn't Run...
Hi, thanks for looking. I'm trying this in Flash 6.0 and don't want to upgrade.

Here's my goal: I'm trying to animate some eyes to recorded dialog. So, being a newbie, I figure why not create a movie with functions for each direction the eyes can look. up(), down(), etc.

Then in a layer with blank keyframes, I can tell the eyes where to point, even if they are moving in a tween.

_root.eyes.front();
_root.moreEyes.left();

HOWEVER, the problem is this: In the *first* frame the eyes exist, I call the functions, but the direction of the eyes doesn't change. If I repeat the call in the *next* frame, the eyes update where they are looking. The only problem is there is one frame where the eyes are wrong.

The debugger will stop if I breakpoint the function call. The problem is that the display isn't updating.

I tried putting an updateAfterEvent(); call below my actionscript, but that doesn't help.

Any suggestions?

You can find my .fla here: URL

Thanks,

Mike

Beginner Doesn't Get This Actionscript Concept
Hi Folks,

I am attempting to learn the basics(very basic!) of flash programming and global variables.
Here's the scenario:
*********************************************

Frame one contains this actionscript:
var length=0;

Frame two contains this actionscript:
length=length+1;
trace("length in second frame is");
trace(length);
bar._xscale=length;

Frame three contains this actionscript:
length=length+1;
trace("length in third frame is");
trace(length);
bar._xscale=length;
if (length == 100) {
stop()
}
gotoAndPlay(2);
**********************************

Irrelevant of what I am trying to do, in frame three I expected the movie to stop once the global variable "length" reached 100 but this is not the case, the movie continues on.

Now if I make the following in frame 3:
***************************

if (length == 100) {
stop()
}
else{
gotoAndPlay(2);
}
***************************

instead of:
***********************
if (length == 100) {
stop()
}
gotoAndPlay(2);
***********************

all works properly.

Can someone explain to me what I am not understanding in regards to how actionscripting works? Obviously I am missing what seems to be a VERY IMPORTANT concept in actionscripting.

Thanks,
Greg
gpl@maine.rr.com

Actionscript Doesn't Work On Firefox
i have added a game on my site just for fun. it works just fine on ie but the button key codes doesnt work on firefox. can you help me with this problem. heres the code i used on the moving bar.

onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT) and _x>20) {
_x -= 7;
}
if (Key.isDown(Key.RIGHT) and _x<400) {
_x += 7;
}
if (Key.isDown(Key.SPACE)) {
_root.loaderClip.loaderClip_play.playGame = true;
_root.loaderClip.loaderClip_play.restartButton._y = 210;
}
}


you can check out the site its in the playground area at www.genemandesigns.com

Beginner Doesn't Get This Actionscript Concept
Hi Folks,

I am attempting to learn the basics(very basic!) of flash programming and global variables.
Here's the scenario:
*********************************************

Frame one contains this actionscript:
var length=0;

Frame two contains this actionscript:
length=length+1;
trace("length in second frame is");
trace(length);
bar._xscale=length;

Frame three contains this actionscript:
length=length+1;
trace("length in third frame is");
trace(length);
bar._xscale=length;
if (length == 100) {
stop()
}
gotoAndPlay(2);
**********************************

Irrelevant of what I am trying to do, in frame three I expected the movie to stop once the global variable "length" reached 100 but this is not the case, the movie continues on.

Now if I make the following in frame 3:
***************************

if (length == 100) {
stop()
}
else{
gotoAndPlay(2);
}
***************************

instead of:
***********************
if (length == 100) {
stop()
}
gotoAndPlay(2);
***********************

all works properly.

Can someone explain to me what I am not understanding in regards to how actionscripting works? Obviously I am missing what seems to be a VERY IMPORTANT concept in actionscripting.

Thanks,
Greg
gpl@maine.rr.com

This Should Work, But Doesn't... ActionScript Issues
So I'm making this actionscripted thing to look like a cube spinning with externally loaded pictures. I haven't used flash in a little while, so I don't even know if there's an easier way to do this.

The zip I've added is the one that's not working correctly. It's like the movieClip 'holder2' is ignored. Now here's the wierd part..

If you delete frame one and uncomment the array called 'pics' (obviously the array loaded in from the text file pics.txt).. So all you have is one frame with actions and nothing else. Test the movie and it works correctly. What the??

Or even better, move the LoadVars() to the frame leftover after you delete the first frame and it will work, but the first couple images are undefined because the script is executed too quickly, hence the first frame...

What am I missing?

Beginner Doesn't Get This Actionscript Concept
Hi Folks,

I am attempting to learn the basics(very basic!) of flash programming and global variables.
Here's the scenario:
*********************************************

Frame one contains this actionscript:
var length=0;

Frame two contains this actionscript:
length=length+1;
trace("length in second frame is");
trace(length);
bar._xscale=length;

Frame three contains this actionscript:
length=length+1;
trace("length in third frame is");
trace(length);
bar._xscale=length;
if (length == 100) {
stop()
}
gotoAndPlay(2);
**********************************

Irrelevant of what I am trying to do, in frame three I expected the movie to stop once the global variable "length" reached 100 but this is not the case, the movie continues on.

Now if I make the following in frame 3:
***************************

if (length == 100) {
stop()
}
else{
gotoAndPlay(2);
}
***************************

instead of:
***********************
if (length == 100) {
stop()
}
gotoAndPlay(2);
***********************

all works properly.

Can someone explain to me what I am not understanding in regards to how actionscripting works? Obviously I am missing what seems to be a VERY IMPORTANT concept in actionscripting.

Thanks,
Greg
gpl@maine.rr.com

Actionscript Movement Doesn't Work In FP7
This is the first time i've used actionscript based movement like this for almost 2 years. I tried using this in Flash 7 with As2.0 and this no longer works. What happened that makes this no longer work?


ActionScript Code:
onClipEvent (enterFrame) {
 
    speed = 8;
    viscosity = 1.5;
    // take care of our x position
    difference = targetx-_x;
    xvelocity = (xvelocity+(difference)/speed)/viscosity;
    _x += xvelocity;
 
}


thanks.

ActionScript 3 XML Basics Doesn't Load The XML
Hey!
I have tried to follow Lee's ActionScript 3 XML Basics tutorial and everything works like a charm when I test it from within flash; the xml data loads and is displayed. But when I publish the files, upload them to my webserver and try the very same files the page stalls. I look in the activities panel of Safari and it says that the following file can't be found:

http://theflashblog.com/crossdomain.xml

Any explanations why this is?

br,
Thomas

[Actionscript 3] Doesn't Like Root.variables
ok I put this code on the main time line:


Code:

var myVar = "something";



if I make create a movieclip and on the first frame trace(root.myVar) I get this error:

Quote: 1119: Access of possibly undefined property myVar through a reference with static type flash.displayisplayObject.

Why? Even if I use the target tool in flash and choose Absolute it gives me 'root' for my main time line.

How can I get my variable off the main time line with an absolute path?

Preloader Actionscript Doesn't Work On Macintosh?
I recently constructed a one scene Flash site with a 'totalbytes' and 'getbytes' preloader (code below). The swf file plays fine on both platforms (PC-n-Mac). BUT the problem is that the preloader loops when published and played in a Mac Browser. It will not advance to the correct frame when loaded (frame 16). I have read numerous reviews on Java and FS errors on Mac browsers, will the 'getBytesLoaded' work on Mac browsers?

loadedbytes = getBytesLoaded();
totalbytes = getBytesTotal();
loadedkbytes = Math.ceil(loadedbytes/1024);
totalkbytes = Math.ceil(totalbytes/1024);
if (loadedbytes == totalbytes) {
stopAllSounds ();
gotoAndStop (16);
}
frame = int(loadedbytes/(totalbytes/100));
tellTarget (_root.loader) {
gotoAndStop (_root.frame);
}


Does this type of preloader / script work only on a PC browser? or is there something wrong w/ my script?

Note: Both browsers on my mac are current versions.

Thanks in advance for any help--Marcos

Actionscript Doesn't Work When Load Movie
I made an image scroller and it works fine. But then when I load the scoller in a movieclip in another flash file, it doesn't work, the buttons click but nothing happens. It works if I load it in the root level. but when I put the loadmovie actionscript within a movieclip the scroller does not work. Hope this makes sense.

Thanks

Actionscript Doesn't Work On Hosting Server?
It works on my local PC but doesn't work on hosting server.why?

The code is very basic.

I want to pass data to ASP page and also get back data by querystring.

I just use it with a text fie for simple.it works on my local machine but it doesn't work on server.why???

Please help me.

Thanks

Mark

1. Fla fie (actionscript)

submit_btn.onRelease=function(){
//
var var_name:String=name_txt.text;
var var_email:String=email_txt.text;
//
var loader:LoadVars = new LoadVars();
var receiver:LoadVars = new LoadVars();
//
loader.myname=var_name;
loader.myemail=var_email;
//
loader.sendAndLoad("email.txt",receiver,"POST");
//
receiver.onLoad = function() {
//
response_txt.text=receiver.myresult;
//

}

}

2. email.txt

myresult=good

Actionscript Compiler Finds An Error But Doesn't Say So
Hi! I just spent about an hour very frustrated, because suddenly Flash was ignoring 100% of my actionscript. At first I thought I was having a bug like these people, but I soon realised it would still show compiler errors if iI introduced any typos into my script...

Long story short, I discovered my code would still compile if I commented out some of my actionscript, and I tracked it down to a single line: I had accidentally written
var endPt:Point = new Point(curX+=xOff,curY+=yOff);
A silly mistake, I simply wasn't paying attention..

the problem is, neither was the compiler?? I received NO Compiler Error messages, Output window messages, absolutely no feedback from flash at all, just a complete absence of ActionScript in my SWF. It took me a while to realise it was an "invisible" compiler error that was giving me an SWF without actionscript in it. The debugger obviously wouldn't help me either since there was no AS to connect to.

Why was the compiler unable to tell me what line it found a problem on? Why would it not even tell me it had found a problem, just silently running my SWF instead?

Actionscript: If Statement Doesn't Work Correctly?
Hi folks.

I've got a movie clip called 'soundToggle'. It's default position points to 9 (imagine a clock face). On click, it rotates via 12 and points to 3. Here comes the problem. When I click it again, I want it to rotate back to 9 (via 12) but it doesn't.

The first part works fine, but when you click it a second time it does nothing. I've traced the statement and I'm not sure why. Here's the code I use on a frame:


_root.soundToggle.rot = 0;
_root.soundToggle.music=true

_root.soundToggle.onPress = function() {
this.onEnterFrame = function() {
if (this.music)
{
if (this.rot < 180)
{
this.rot= this.rot+4;
this._rotation = this.rot;
}
this.music=false
}
else if (this.rot > 0)
{
this.rot= this.rot-4;
this._rotation = this.rot;
}
this.music = true
}
}


Any help would be much appreciated.

String Replace Via Actionscript, Doesn't Work...
Since there is no built-in string replace function for flash and actionscript, so I did the user defined function to take care of that. The user defined function is what I found from the the google search.


Code:


function strReplace(thisStr,what,byWhat) {
while (thisStr.indexOf(what)>-1) {
var tmp = thisStr.split(what);
thisStr = tmp.join(byWhat);
}
return (thisStr);
}



It was working great until it goes into an infinite loop when the parameters was used in strReplace() function like this...


Code:


test = strReplace(strData,"McDonald","<a href='blah blah'>McDonald</a>");



Then I found that in the function code above which showed that the loop that never reached the end of the string as it would start a new loop again once it is finished. So, I did a different function instead..


Code:


function strReplace(thisStr,what,byWhat){
var counter=0;

while (counter<thisStr.length) {
var startPos = thisStr.indexOf(what, counter);

if (startPos == -1) {
break;
} else {
var before=thisStr.substr(0,startPos)
var after=thisStr.substr(startPos+what.length,thisStr.length)
thisStr=before+byWhat+after
var counter=before.length+replace.length
}
}
return thisStr;
}



So, I tried it again and it still go into an infiinite loop. So, what did I do wrong? Need someone with a fresh eyes to see the codes...

Thanks,
FletchSOD

GotoAndPlay Doesn't Work As Actionscript On Main Timeline?
Hi,
I made this file when you get to the first frame, an Actionscript code tells a mc to play. The code is simple:
_root.my_mc.gotoAndPlay(2);
The thing is, the mc starts, but then stops on the second frame. Why?

But then, when I assign my action to a button, it works...
Please help

Thanks,
Manojo

Music Player Actionscript Doesn't Work With Loadmovie
Hi,
I made a music player a nd it works fine as a swf but when I load this movie into another swf, it doesn't work.
Here is the as that I add to play button;

on (release) {
mysound = new Sound();
mysound.attachSound("music1");
mysound.start(0,1000);
}

I guess something changes when I load it but I have no idea what?

Do you have an idea?

Thanks in advance.

[MX Prof. 2004] Actionscript Doesn`t Work In Movieclip
Hey guys.

If used this fotogallery : http://www.dreamweavercafe.com/cafe/...d=23754&page=2

The only problem is, when i put this fotogallery into my website, or when i load the gallery.swf extern into my website the picture doesn`t show. Everything else works just fine.

I`ve made a .rar file so you guys can see my problem:

http://home.quicknet.nl/qn/prive/j.hoogeboom/foto.rar

I hope someone can help me.

Thx in advance

Actionscript Question: Import .swf, So That The .fla Doesn't Load The .swf Externally
function loadPix(pix){
pixHolder.loadMovie(pix);
}
button_1.onRollOver=function(){
loadPix("movie.swf");
}

seems my flash movie, from this actionscript, is loading the above movie.swf externally, is there a way to import the .swf file into the .fla so that my entire final project is one .swf file and not two?

thanks in advance,

jh.

Why Doesn't ActionScript 3.0 Language And Components Reference Mention Movieclip As Being One Of The Classes
hello;

at http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/index.html why is 'movieclip' not listed in either the 'Top Level' or as a member of 'fl' or 'flash'??

likewise, why isn't 'sprite' listed?

thanks
dsdsdsdsd

One Flash Overlaps A Other Flash Movie Which Doesn't React Anymore?
Hi there,

So i made an expandable banner which overlaps a flash map. But now the flash map doesn't reacts any more for the part that is being overlap by the banner.

see (telecombinatie.nl/zakelijk2.php) and then the right banner?

regards

One Flash Overlaps A Other Flash Movie Which Doesn't React Anymore?
Hi there,

So i made an expandable banner which overlaps a flash map. But now the flash map doesn't reacts any more for the part that is being overlap by the banner.

see (telecombinatie.nl/zakelijk2.php) and then the right banner?

Why Centered Pop-up Window Works In Flash 5 But DOESN'T In Flash 7 ?
Why centered pop-up window works in Flash 5 but DOESN'T in Flash 7 ?
Tutorial for this is here:
www.kirupa.com/developer/mx/centered_popup.htm

If Someone Doesn't Have Flash...
is it possible to code it so that should someone not have flash
capability, a simple image will show up?

thanks very much!!

Hmm Flash Doesn't Allow Loadmovie Via Var?
hey all can you load a movie via a variable?
it doesn't seem to like expressions/ variables in load movie?
anyideas?
thnx
-RUi

Help--Flash Doesn't See My Fonts
I'm sure this is, embarrasingly, an elementary Windows issue but, for some reason, the Flash text tool isn't recognizing the new pixel fonts I loaded into my C:/Windows/Fonts folder unless, for yet some other unknown reason, I preview the fonts in ThumbsPlus (a thumbnail-reading program).

Background: when I download the fonts (.zip files), I unzipped the fonts directly into the Windows/Fonts folder.

Anyone know what I've done wrong?

THANKS!

Flash Doesn't Show On EVERY Pc/mac
Hi,

I recently finished a website http://www.comunicadores.be
There seems to be a problem within the code cause not everyone can see the flash file. Most people can but somehow there seems to be one tiny error that makes it impossible for some people to see the site.
Could this be an object&embed problem.
Please help me asap!

Anthony.

ASPMail And Flash....Ya I Know...I'm The Only One Who Doesn't Get It
Hey all,

Ok, I have been trying and trying, and I can't seen to get this ASP mail thing to work.

In my Flash movie I have 1 Input text box with an instance name of "email" I have a button that is names "Submit" and the code is:

on (release) {
loadVariablesNum("aspmailthing.asp", "0", "POST");
}


Then I have that file named (for some reason ASPMAILTHING.ASP)
with the following code.

<%
Set Mailer = Server.CreateObject("SMTPsvg.Mailer")
Mailer.FromName = "email"
Mailer.FromName = "Contact Form On MMMYEAH"
Mailer.FromAddress= "signup@mmmyeah.com"
Mailer.RemoteHost = "mail.mmmyeah.com"
Mailer.AddRecipient "Erling and Jeff ", "signup@mmmyeah.com"
Mailer.Subject = "Contact Form on MMMYEAH"
strMsgHeader = "Form information follows" & vbCrLf
for each qryItem in Request.Form
strMsgInfo = strMsgInfo & qryItem & " - " & request.Form(qryItem) & vbCrLf
next
strMsgFooter = vbCrLf & "End of form information"
Mailer.BodyText = strMsgHeader & strMsgInfo & strMsgFooter
if Mailer.SendMail then
Response.Write "l"
else
Response.Write "Mail send failure. Error was " & Mailer.Response
end if
%>

That is what I have, and nothing happens. Could someone please look over the code and see where my mistake might be?

Thanks,

Jeff

www.mmmyeah.com

Flash Movie Doesn't Run
I got a problem when I surf a web site from a computer that run XP windows and IE 5.5, some flash movies don't run, but other yes.

I have surfed the same web site from other computers all the movies run well, I don't understand what happend.

Another question, how install automatically flash player in any computer that doesn't have install it.

Could you help me.

Doesn't Work In Flash 7
does anyone know why this returns Nan, when published in flash 7


this.onEnterFrame = function(){
x ++;
x %= 9;
trace(x);
}

thanks you.

Flash Doesn't Show
I made a music player(http://mp7.zapto.org) and when u click the weekly best song a window appears and the flash is suppose to load, but it only worked for very few ppl, and only 1 person could get the song to load, some plz tell me why its not working for everyone. Flash version is not the problem.

Flash Doesn't Update From PHP? O.o
Ok, in flash, I have one simple line:

loadVariables("system/scripts/menu_is.php", "_root");

It works great, PHP prints directly to the variable it's suppost to.
One major problem, which I hope can be fixed somehow. When I change the PHP file to print something else, the FLASH SWF file on the website does NOT update unless I'v closed out the browser and/or opened a new one to the site, or clear all temporary internet files and hit the refresh button on the browser. Those are the ONLY two ways it will update that flash file. Is there some way to fix this or get around it? Please, anyone that can help.

Thanks in advance.

Doesn't Work Outside Of Flash
For some reason when I use the movie in flash it pulls in the XML file and displays it okay, but when I try through the browsers it tells me it cannot locate the XML file. It is a remote XML file.

This is my script:

var sFileName = "http://www.nwfusion.com/rss/howto.xml";

myXML = new XML();
myXML.ignoreWhite = true;
myXML.onLoad = function(success) {
if (success) {
getXML(myXML);
} else {
txtTitle.text = "Data error!";
txtDesc.text = "Cannot locate "+sFileName;
bSkip = true;
}
};
myXML.load(sFileName);

function getXML() {
mNode = new XML();
mNode = myXML.firstChild;
if (mNode.nodeName.toLowerCase() == "rdf:rdf") {
fList = mNode.childNodes;
// Get the child nodes
for (i=0; i<=fList.length; i++) {
if (fList[i].nodeName.toLowerCase() == "item") {
// may need to make some changes to these
elementTitle = fList[i].firstChild.childNodes;
elementDesc = fList[i].firstChild.nextSibling.nextSibling.childNodes;
elementURL = fList[i].firstChild.nextSibling.childNodes;
myArrayTitle[totalItems] = elementTitle;
myArrayDesc[totalItems] = elementDesc;
myArrayURL[totalItems] = elementURL;
totalItems++;
}
}
}
txtDesc.text = "Data Loaded...";
txtTitle.text = myArrayTitle[myItem];
txtTitle.htmlText = "<a href='"+myArrayURL[myItem]+"'>"+txtTitle.text+"</a>";
txtDesc.text = myArrayDesc[myItem];
myItem = 1;
_root = setInterval(moveNews, iDuration);
}

Flash 8 Doesn't Work
Help!

I have a movie/script that works very well when exported in Flash 6, and AS1.0, or even 2.0, but doesn't when I switch over to using Flash 7 or 8.

Any ideas? I've already debugged and checked my code, and Flash reports there to be nothing wrong.

Help!

Safari - It Doesn't Seem To Like Flash
Right this is fast turning into the worst day of my flash based life.

Won't play in Safari - have tested it in modzilla on Mac, Internet (Hate) Explorer on PC, it works fine.

What am I doing wrong, here is a test file, it does the same thing as my movie (it's a little large so I'm only posting it if i get desperate).

The problem apears when externally loaded files (movies into movies, txt files into dynamic text boxes) don't load in.

Some body I know who works with flash said it might be to do with naming structures. But I've stuck to simple names - no dashes or spaces etc.

I just don't know, surfice to say I'm at my wits end.

Any help greatly appricated.

Flash Doesn't Load
Hi I have a hosting website, http://www.exonhost.com and I recently bought a new Template from TemplateMonster. It will load in IE but when on IE 6 if you try to go on a different page it screws up the HTML.

Also it just comes as a blank white box in firefox. However when I open it up on my own computer like from my desktop to firefox it's all right. Any ideas?

[CS3] Flash Animation Doesn't Appear After
I've made a flash animation and inserted it into a table in Dreamweaver. When I preview in the browser the animation appears, but having uploaded the html and swf files to the server the flash animation is no where to be seen. Where am I going wrong?

Help JPG Doesn't Show In Flash
Can't understand, why imported into flash JPG doesn't show in SWF when I upload that SWF to my hosting. It works locally but online the picture looks like a red square, like a red shape, no picture
Please someone tell me what's wrong
Thanks!

Font Doesn't Appear In Flash
Can anyone tell me what to do when you want to use a particular font in Flash (the font being Trajan-pro) but it doesn't show up on your fonts list? I've used the font for my main navigation buttons in Photoshop but of course I can't use them in Flash because they don't appear in the list. I thought the next best step would be to create graphics of the buttons in PS and import them into Flash as gifs (I also tried them as PNG's). They imported ok and looked spot on as symbols until I made them buttons - then they just turned to custard bascially and looked all bitsy. With the gifs the bottom part was cut off when converted to a button. What a nightmare. I'm new to Flash so I'm guessing there's a really easy solution to this. Any help would be greatly appreciated as I need to get the ball rolling on this site. Cheers.

I've attached a file of the nav bar just in case I haven't explained what I mean clearly enough.

Flash In Div Doesn't Show Up
Here is the page in question: http://korbyimagery.net/
The header graphic should be flash (the candle in the logo should flicker and the right hand graphic should be a link). I have the same image only static in the background. If I remove the static image the header is black. Why isn't the flash showing up?

Flash Installs...but Doesn't
I can't see videos on such sites as YouTube, TMZ ect. I just get "You need Flash Player version 8 or higher to view this video".
I download (repeatedly) the latest version. I delete Flash and then reload Flash. Nothing. Same thing.
Even in the Adobe web site, whin I get the "Adobe Flash Player successfully installed" video message, I immediately go to another part of the site, and it tells me that I need Flash to view that content! Urgh! Help!

My Flash Doesn't Work On IE 8
I am a webmaster with an existing flash on http://www.patriciawells.com No changes to the flash in about a year. Works great on IE 7, Firefox, Netscape, Opera, etc....

Downloaded IE 8 Beta 2 this morning and the flash doesn't work.... Displays an x in the box (like a missing pix on an html page).

Called Microsoft and they basically told me take a long walk off a short pier.... So much for them caring about how their beta works....

Any suggestions would be appreciated.

Thanks

JohnJ

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