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




TV Static In Flash?



Does anyone know how to make TV static in flash? And how I can make it fast loading?

Thanks



FlashKit > Flash Help > Flash General Help
Posted on: 06-28-2003, 01:26 PM


View Complete Forum Thread with Replies

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

Flash And Static .gif
Hi all,

I've noticed on many web sites that if a Flash movie doesn't load, a static .gif is loaded instead.

Does anyone know how this is done?

Thanks!

If You Don't Have Flash, You See A Static Graphic
Is it possible that if someone doesn't have Flash installed on their computer, they would instead see a static graphic? If so, how is it done?

Thanks in advance

Static Flash App To Dynamic Help
Anyone looking for work that can help make a Static flash page into a dynamic app controlled through a backend manager?

I could use some help from someone with experience.

Email me. Tks.

Al
digitalctn@hotmail.com

From Flash To A Static Page
Hey Folks:

We need to go live with a site by Friday and the client wants a change that should be easy...but not for me. I have a Flash intro for this client's site. At the end it simply has an Enter Here button and it takes them to the welcome page (static html page). However, the client wants the Flash to end and automatically go to the static HTML page...I'm sorry if this is a stupid question...but I can't think of how to do it

Thanks in advance

Flash And Static Pages
Hello all. I am new to posting so please be nice. I am building a flash site and would like a page or something on how-to link my flash.swf file to a page outside of the flash file (.fla) . Let me explain a bit more... I would like a way for my wife to be able to use Dreamweaver or something and edit a .html file that the flash links to that would then show the page. So, basically when yo goto the website it would show the smal flash at the beginning and some flash page links but the actual content is really just a static .html file. Make sense? Can someone please point me to a how-to page or something?

Flash And Static Frames
supp ppl. new day new problem

ok this is the thingim developing this website called http://www.boogiedownbronx.com and it consist of 2 frames, flash on top and static on bottom. now when i preview it in explorer its fine but when i view it in netscape its all messed up. the targets are going the wrong way and the pages are not behaving properly. now before you tell me toname each cell of the frame, i already did that and i also made a command for it in flash.

any suggestions.
thank you

somdow aka aku/makyu[url]

Can Flash Banners Be Static?
I appreciate this probably seems strange, but i need to convert a bunch of banners from jpg's into static .swf files (ie no animation at all/just single frame) Rather than go into the reasons which would bore anyone stupid, suffice to say i need to do it!

Will these static files be massive in comparison to their jpg equivalents?

Apologies, i have 0 experience with flash

Static Image If Flash Not Available
How do I do all of the following?Insert a flash animation using EOLAS-compliant JavaScript;
The JavaScript must be in an external JS file;
If JavaScript is disabled, a static image is seen instead.

The image (static or Flash) would appear in a div such as:

Code:
<div id="header-image'><img src="/images/header-image.jpg" width="780" height="80" alt=""></div>
Thanks,

Are Static Classes Not Always So Static?
I've had two different problems, that I suspect are related, and they both involve static classes that exhibit not so static behavior (or perhaps too static).

The first problem:
I wanted to create a class that behaved like a Dictionary in .NET, to assist me in dealing with some name/value pair. Here is a simplified version:


Code:
class Dictionary
{
private var _dictionary:Object = new Object();

public function Get(key:String):Object
{
if( _dictionary[key] == undefined) throw new Error(key + " does not exist in dictionary!");
return _dictionary[key];
}

public function Add(key:String, value:Object)
{
_dictionary[key] = value;
}

public function get keys():/*String*/Array
{
var myKeys:/*String*/Array = [];
for(var key:String in _dictionary)
{
myKeys.push(key);
}
return myKeys;
}
}
Okay, it worked well until I created a static class with a static member of type Dictionary.

Something like this:

Code:
class Config
{
private function Config() { /*it's static, don't instantiate!*/ }

private static var _dictionary:Object = new Object();

private static function getFromDictionary(key:String):Object
{
Assert.IsNotNull( _dictionary[key], "'" + key + "' is missing from the config file");
return _dictionary[key];
}

/*
* Config Properties
* to cut down on typos...
*/
public static function get SomeInterestingValue():String
{
return String(getFromDictionary("SomeInterestingValue"));
}
}
Now after creating the Config class (which works fine by itself), every member of type Dictionary in instances of other (non-static) classes is referenced to the static instance in Config.

I mean, anytime I instance a class that has a member of type Dictionary:

Code:
class SomeCoolClass
{
var mything:Dictionary = new Dictionary();
}
The member instance is pointed to the private static member _dictionary in Config! (I hope this seems odd to other people and not just me. )

Okay, now, the problem I really care about:
I have a helper class (let's call it Storyboard) for playing a sequence of Tweens. I can add instances of Tween to an Array and the Storyboard will play each one using the onMotionFinished of the previous Tween.
Well, I realized that sometime I need multiple tweens to occur simultaneously. For example, I need the mc to slide in and fade in at the same time.
I extend Storyboard to accept an array of tweens to start simultaneously. So now Storyboard has an array of an array of tweens. Are you with me still?
Now, eventually I call playStoryboard() and everything plays back nicely and in sequence and I no longer have a large set of nasty methods chained by onMotionFinished callbacks. Well, this only works if I am using different easing equations for each tween (in the simulataneous set).

Example, code (this works as expected):

Code:
var twSlide:Tween = new Tween(clip,"_x",Quint.easeIn,0,100,1,true);
twSlide.start();

var twAlpha:Tween = new Tween(clip,"_alpha",Quint.easeIn,0,100,3,true);
twAlpha.start();
Both tweens start together and the fade takes 3 times longer than the slide. Both are using the same easing equation: Quint.easeIn.

When I add them to my Storyboard, twAlpha behaves as if it had the values from twSlide. If I change either easing equation then, it behaves as expected.

How is this related the Dictionary example? Because the easing functions are static functions, but it appears as if an "instance" of the function is being shared between the tweens.

I suspect everyone will want the full code. I will post it later (I need to remove some client-specific stuff, and I'm in a rush; so I posted hoping this is problem that someone can identify quickly).

Please feel free to ask for clarification on any point.

Autodetect Of Flash Plugin/ Display Of Flash Or Static Image
Hello All,

1) Is it possible to autodetect if someone has a flash plugin installed ?

2) If this is possible, then is it possible to display a static image if the person does not have Flash installed, and to display the Flash movie when the person does have Flash installed ?

I hope that you can help me , also maybe with a code example. This problem drives me bonkers ...

Thanks in advance for any helpfull answer

Greetings

Dave


Convert Flash Into Static HTML
Hi there,

This is the first time I post on this forum so hi to everybody.
I have a a couple of questions I hope you will be able to help me with:
I have just created my flash animation (swf, swi and html files). Now, what I want to do is convert it to create a new static html page, with no animation but keeping the same images, design and layout, which I will use to create the rest of my website in a normal Html editor. Does anybody know how I can do that? Does a software exist or can I use Swish?

Simple Static Table In Flash MX Pro
Help....

Is there a simple way to draw a static table in flash that I can manually fill out with data before I publish it.

I'm putting together a CD in Director with external linked Flash files for each product page. The products all have a technical page and I want to show that in a table in the flash file.

This seems too simple a thing to have been ommited!

Static Image Instead Of Flash Movie
I would like to have a static image display instead of the flash movie if people don't have the flash player installed. I have posted this before and recieved some code, however it's become outdated and I need something that will work with FlashCS3. Thanks!

Static Text Box In Flash CS3 Won't Move
Hi everyone,
I'm having an issue in Flash CS3 with a simple old text box. I have a fairly large file, and I'm working in a movie clip. I have a static text box on the stage, and I have it selected, and I cannot get it to move around. I'm trying to make very small changes to its location (move it up, move it left) but it's totally stuck where it is! Has anyone experienced this issue? I'm using Flash CS3 on a Macbook Pro and I am totally at a loss. I've doublechecked to make sure the layer isn't locked, I've tried cutting the box and then re-pasting, all to no avail.

Any ideas?

Thanks!
Carrie

Static Text In Flash 8 Disappears
Here's a weird one for you. I have a site built in flash 8 with some static
text in there. It's in Verdana, no Kern set on it and is Anti-Aliased for
animation, whilst this appears to work on every test machine and clients
machines we've had reports from 2 users that the Static text doesn't appear
at all. None of the text is sitting under masks or any other object, the
dynamic text appears to be displaying just fine. They've installed the
latest flash version and are running on IE6.
I've searched through google groups and have found a couple of things that
sound similar but it appears that they just changed the text to use the
device fonts. I really don't want to have to do that if I can help it,
especially as this in theory should be working. Anyone else had a problem
like this, is there a bug in Flash for certain configurations?

Thanks
James

How-to Flash With External Static Page? Help
Hello all. I am new to posting so please be nice. I am building a flash site and would like a page or something on how-to link my flash.swf file to a page outside of the flash file (.fla) . Let me explain a bit more... I would like a way for my wife to be able to use Dreamweaver or something and edit a .html file that the flash links to that would then show the page. So, basically when yo goto the website it would show the smal flash at the beginning and some flash page links but the actual content is really just a static .html file. Make sense? Can someone please point me to a how-to page or something?

Linking To Flash From Static Web Pages
How do I link from a static html page back to a point in Flash other than the startup? Flash generates a "home" html page that tells flash to play from the beginning but how to a link to a certain event in the Flash movie?

Regards,

Mike

Drawing Static Images In Flash 8
Hello Community !
Does anyone here know what the steps and tools that are used to draw static images in Flash 8? Once drawn I would like to import them into Dreamweaver 8 nad Illustrator 8. Not to be used as a flah movies of Jif or gif.
Any books you may know about and ofr videos would be great, preferably "books" on the subject.

Thanks
ATj The Flow

Help With Flash Menu In Static Website
Hi,

I'm trying to in corporate a flash menu into a static website. If I could have it my way and some more time I would have the whole website flash, but that isn't possible at this time.

The first hurdle is the home/splash page, it has the menu, header and a graphic. What I'm looking to do is when the user clicks on the menu have it wipe away and then go to the correct page. I have my motion down, I just need help getting it to the right page. I think I need to have action script at the end of the motion that checks to see what button was pressed. I believe that I need to use an elseif statement, but I'm not sure what the condition should be to check which button was pressed. I've tried searching the help but haven't found anything, I'm guessing it's a boolean check of some sort.

The second part of the menu I need help with is, when the menu is on a specific page, having that page marked in the menu, I'm not sure how that can be done, I'm sure a similar way to the first question, but don't know where to start .

Hope I'm not in over my head and thanks for your help,
KG

Anyone Have An Idea On How To Make T.V. Static In Flash?
yeah....anyone know how i could go about this??

Please Anyone Help Me For This Flash Stuff..with Static Design Ex
Home.zip

Here i am attaching the flash file with static design..
Please anyone help me to design dynamically the same animation..
i want to use XML as datasource..

Scrolling STATIC Text In Flash. Can Anyone Help Me?
Does anyone know a tutorial to show me how the scroll STATIC text, not Dynamic text? Please help.

Thanks!

Scrolling STATIC Text In Flash. Can Anyone Help Me?
Does anyone know a tutorial to show me how the scroll STATIC text, not Dynamic text? Please help.

Thanks!

Flash Script - TV Static Effect
This is a dedicated thread for discussing the SitePoint article 'Flash Script - TV Static Effect'

How To Load Static Images When Flash Not Available?
How do you make sure a page is not broken when flash is not installed or has been disabled by an ad blocker?  For example, if you look at this url: http://www.inexpensivedomains.com/support/ and you disable flash in your browser, the entire page is hosed.  I'd like to know how to keep that from happening by loading jpg's or gif's instead.  

Thanks

Detect For Flash, If No Flash, Swap With Static Image
Could anyone help me with this (assumably) easy question? I want to insert a small flash file on an html page to add to its appearance. If a viewer does not have the latest flash plug-in, i don't want a blank spot on the site, but instead a static jpg or gif picture to replace it. Is this difficult to do?

HELP!

Thanks in advance.

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();

Jump From Flash To Static HTML Page
Hi:

Just finished doing a Flash Intro page. Where and What do I do to make the Flash page jump to static HTML page, once the Flash piece has finished playing?

In the last Flash frame, I asked the music to stop, animation to stop and not loop, but then, when I introduce -"Go To URL" action at that last frame and play it in the browser, it does try to jump to the static page but the URL comes up twice in the browser and thus the page is not found.

Please help.

Anuj

How Do I Create A Static Flash/html Site?
I just started
www.gunnersack.comand it's all Flash, but if someone goes to my site and they don't have the flash plugins, how would I redirect them, and how would I be able to make a static website that looks like my flash site? I would think that I could just print screen the website, but in what program could I make the buttons still work, just without moving like with flash?

I would appreciate any...

Regards,

Troyboy

Creating A Static Counter In Flash Mx 2004
I need help making the static counter for a website counting the number of users visiting this site. please help

Scrolling Static Text Question In Flash 8
I have a static scrolling text. But the scroll does not scroll down all the way to the bottom of the text.

It only scrolls midway. I tried "option B" to break the text apart and it lengthens the height of the scroll slightly but not to the bottom of the text body.

Can someone help me please!

Thanks.

hsarbaz

Save Flash Content As Static Image
hi,

i was wondering if there is any way flash pro 8 can save contents in a movie as a image.

for example i have an image box where i can drag image into that box and i also text box below where i can add text.

is there anyway i can save the contents of the picture box and text box as a image jpeg file?

cheers

New To Flash: Best Way To Animate Series Of Static Images?
i'm wondering if someone can help me understand the best way to animate this, and i apologize in advance for this long post:

its basically a photo slideshow, picture some small images with PREVIOUS and NEXT buttons below the photo. when the user clicks the RIGHT i want the current image to 'slide off' the screen and the next image to slide into place.

it seemed easy enough I put each consecutive image on a certain layer in a frame and had them slide left in a tween, and i controlled it by gotoandplay() and stop()

the problem is when the user clicks 'PREVIOUS' I have no idea how to rewind time and play my flash animation in reverse (to have the tween go backwards so the previous image slides back into place), so I'm thinking I probably went about this the wrong way.

can anyone give me their advice for the best solution for this?

ALSO: if possible can someone point me in the direction of how to create a non-linear speed animation, so that the speed of the tween slows down gradually as the new image slides into place, so its more of a gentle animation and not so jarring?

thank you very much in advance

Save Flash Content As Static Image
hi,

i was wondering if there is any way flash pro 8 can save contents in a movie as a image.

for example i have an image box where i can drag image into that box and i also text box below where i can add text and a button.

is there anyway i can save the contents of the picture box and text box as a image jpeg file by clicking on a simple button?

cheers

Flash Player 7 Won't Display Static Text
It sounds like Flash 8 is causing a lot of problems for people with their text. My problem is that machines with version 7 of the Flash plug in won't display static text that I have created (dynamic text shows up fine.) This makes my latest project unusable on most machines -- does anyone have a solution?

Save Flash Content As Static Image
hi,

i was wondering if there is any way flash pro 8 can save contents in a movie as an image.

for example i have an image box where i can drag image into that box and i also text box below where i can add text.

is there anyway i can save the contents of the picture box and text box as a image jpeg file to my hard drive?

i have looked online but getting no joy.
cheers

Flash Static Menu(that Scrolls W/page)
I need help making a flash image static and be able to scroll down with the page
(eg, http://www.dynamicdrive.com/dynamicindex4/logo.htm
http://www.dynamicdrive.com/dynamici...taticmenu3.htm)

You guys are pretty smart and I'm sure you'll be able to help me

Jdogg

Converting Dynamic Flash To Static Flash
I have a lot of dynamic text I display in my flash site that I need to convert to static flash text or even html text if need be (but static flash text would be best). Is there anyway of doing this. Google doesn't seem to search programed text very will if at all so I need to get all this info displayed as static text so google can see it. It would be a huge job to do it all by hand so I was hoping there was a way to automate the process.

thanks for any help on this.

SWF Flash Logo - Can No Flash = Static Image?
I have an swf animation logo for my website.
I also have a static non flash version.

I'd like to find a way to detect if the person
has flash, and if not display the static image.

Obviously cross browser compatiability is
very important.

Any ideas?

Thanks,
Mike

FSCOMMAND On A Static Image To Control A Flash Movie
I have a static image on a page that i want to put a rollOver JavaScript Command on it to do a TellTarget command on the Flash Movie to play an MC within the movie.

You can view what i have here >> http://64.219.4.38/e3 At the top there are the static images that i want to put the rollover command, and at the bottom is the Falsh Movie that i want to control.

Can Anyone help? thanx fellow flashers!

-relmone

Flash Player Not Detected Load Static Graphic
how do load a static graphic (jpeg) if the flash player is not detected? i guess i need to use if/when somewhere . . . . ?

100% Flash Websites - Non-static Browser Title Bars?
hi,

is there a way to change the browser title bar text for 100% flash websites (after clicking to a different page)? (may be good for search engine listings of particular pages). i notice that 100% flash websites (www.fantasy-interactive.com etc) seem to have never-changing title bars.

on the same tangent, is there a way to change the browser title bar text for frame webspites (such as ultrashock) ?

if you know of a solution to either problem above, please post.

thanks!

Setting Up Static Image If Flash Doesn't Play...
This is probably a simple solution.. but I can't seem to find the code for it.

HOW do I code my HTML file to have a static image come up instead of a blank screen if the flash doesn't play????

THANKS!!!

Static Background Image With Flash Movie In Middle
How would I go about setting up a site like this one?

http://www.takingbacksunday.com/whereyouwanttobesite/

I want to have a normal repeating .jpg for the background, with the content centered in the middle.

I'm sure its a very simple answer, but I'm just curious.

[MX] Transparent Flash Movie Over Static HTML Page
Like a Flash ad that I've seen everywhere - how can I:

1) Create a transparent background in MX?
2) Load a flash movie on top of a static HTML page, so when the flash movie has ended, it will disappear off the HTML page?

Need help, very confused!

Flash 8 And Static Text In Movie Clips On Rollover...
Not really a problem, but back in MX 2004 whenever I wanted text to act as a button I would just make a movie clip, place text in it via static text field, and place a generic hit area (made by the rectangle tool) underneath the text with the alpha set to 0 so I wouldn't lose the rollover whenever the mouse pointer went inbetween individual letters.

So now I upgraded to Flash 8 and by accident I forgot to place my generic hit area, but this time the rollover still worked; it seems the text alone in a movie clip is enough and the rollover never loses focus even when the pointer isn't directly touching a letter.

I guess I'm just wondering: is this some "good" bug or some wierd fluke or what? As long as things work, who cares I suppose, but I'm still curious.

Dividing A Flash Page Into 2 Sections, One Static And One Dynamic
Sorry for the title, but I don’t know any other way to describe it.

Basically what I'm looking to do is create a flash page and divide it down the middle into 2 different ‘windows’, or sections. On the right side will a picture and some buttons which will always be there, and on the left will be 1 of 4 different user interfaces with buttons and text.

I want to be able to have the left ‘window’ come up with different interfaces and not have it affect the right ‘window’. I also want to the two ‘windows’ to be able to pass data and signals to each other.

If there is a way to just have one interface on the left overlay the others, or hide the others and make only one visible that would be great. I’ve been looking at masking a little, but I’m not certain I can mask a whole interactive interface with buttons and text and all.

I hope I gave a decent enough explanation of what I'm after. Any help would be much appreciated.

Thanks


Plug-in Detect With Automatic Display Of Flash/Static Version
Hi Guys!

I’ve scoured the Internet for information on this topic (and found some rather _questionable_ solutions), and now I’m left banging my head against the keyboard trying to get this to work. So, this is my cry for “Help!”, prior to having the letters ‘sdfghj’ permanently imprinted on my forehead. =)

I just had someone design a Flash header for me and it looks great. It’s not one of those intense Flash creations, just a subtle mouse-over effect that gives it some flavor. In addition, he designed a static version that doesn’t have the Flash mouseover.

The problem that I’m faced with is I need some sort of method (which I assume would be JavaScript based on what I’ve read) that will allow me to detect if the user has the Flash plug-in. If they do, it should show them the Flash file. If they do not, it should show them the static version.

But, the ‘static’ version isn’t just one image. It’s actually been sliced up into a bunch of different pieces.

So, it can’t just be:
If you have Flash load ‘flash.swf’
If not load ‘static.jpg’.

If must be something like:
If you have Flash load ‘flash.swf’.
If not load:
<table>
<tr>
<td> <img src=”piece1.jpg"</td>
<td> <img src=”piece2.jpg"</td>
<ETC>
</tr>
</table>

I hope that is enough information and I explained everything clearly.

Can anyone shed some light on this issue or point me in the right direction?

I *really* appreciate your help!

Thanks in advance!

[Note: I don’t want the detection to redirect the user to another page, as that would be problematic for a bunch of other reasons. It needs to load the same page but with the static/flash header based on the detection.]

Annoying Flash Bug-Static Text Box With A Link Won't Format Properly At Runtinme.
Hi all - i've been trawling the web for at least an acknowledgement of the annoying way Flash claims you can put a link into a static text field, but when you do it renders as though it were dynamic - i.e. doesn't fully justify, doesn't keep your margins. Am i the only person who is annoyed by this or am i doing something wrong.

In more detail; i create a STATIC text box on the stage, fill it with some text, fully justify it and test the movie - fine, nice fully justified text. However if i then select a word in the text and put an http link in the box in the text properties inspector, when i test movie, the text appears as left justified. I understand about dynamic text fields in mx2004 being unable to fully justify themselves (and flash 8 player with very little penetration - anyone know it btw?), but i can find no documentation explaining this behaivour for static text fields.

Has anyone else encountered this? Am i doing something wrong? I jus need some acknowledgement that this static text bug exists!

Please!
fred.

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