[Flashcoders] a little OT (maybe): Flash in Firefox

2005-10-26 Thread MetaArt
I have a php page, with this code: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN? require config.php; ? htmlhead titleViaWeb Institute -

Re: [Flashcoders] a little OT (maybe): Flash in Firefox

2005-10-27 Thread MetaArt
well, all solved: the hosting haven't enabled the php... now work fine. thanx_to_all Enrico Tomaselli + web designer + [EMAIL PROTECTED] http://www.metatad.it ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] sound fadeOut

2005-11-07 Thread MetaArt
In my movie, I have a jingle, that is loaded by this code: code:--- ---track = new Sound(); track.loadSound(everybody.mp3, true); track.setVolume(0); vol = 0; fade = setInterval(fadeIn, 100); function fadeIn() { vol += 1;

[Flashcoders] sound fadeOut: strange behavior

2005-11-07 Thread MetaArt
I have tryed the andreas suggestion, but don't work. The jingle volume continue to be the previous (fadingIn to 90). But the strange news is another: if I do a test movie inside Flash, the sound of jingle is loaded and faded (code below), but if I test within HTML page, no sound is loaded... How

Re: [Flashcoders] sound fadeOut: strange behavior - solved

2005-11-07 Thread MetaArt
Well, I have solved both the problems; 1) for the fadeIn / fadeOut question, I assume this solution: instead that put the loadSound code on main timeline, I have done a new mc, with two frame inside. At the first frame, insert the code below stop(); track = new Sound();

[Flashcoders] strange behavior of img in textfield

2005-11-11 Thread MetaArt
Well, I load dynamically some text into a textfield, from a .txt file. The file has inside the HTML code to load some jpg images too. The size of textfield is 576 px horizontal, and 403 vertical. The first strange behavior, is that if the image is large 570 px, the textfield show it truncated on

Re: [Flashcoders] strange behavior of img in textfield

2005-11-12 Thread MetaArt
yeah, this the first things that I have done... the img tag has been wrote with and without alignment (left), always between two br tag or inside the p/p tags, but the result its always the same... Enrico Tomaselli + web designer + [EMAIL PROTECTED] http://www.metatad.it

[Flashcoders] special characters

2005-11-12 Thread MetaArt
I need to write, inside a .txt file that must be load into a dynamic textfield, the char '' and ''; but, if I wrote so, the loading stop when arrive to '', because Flash think this is the start of a tag, and I can't write neither 'lt;' nor 'gt;', because '' for Flash it means the start of a new

Re: [Flashcoders] special characters

2005-11-13 Thread MetaArt
Well, the question is that the (.txt) files are done by unskilled users, using a simple appl to apply some basic features to chars (like bold, italic, underlined), so I must use simple text files. But, at last, maybe the string manipulation option is the only way... thank you for suggestion.

Re: [Flashcoders] Fullscreen with javascript for Mac / PC ?

2005-11-16 Thread MetaArt
you must be more specific: which trouble, with which browser/OS? On WindowsXP+IE, the fullscreen work fine (the Flash, less... the loading of elements its too slow, with ADSL); with FireFox the same... Enrico Tomaselli + web designer + [EMAIL PROTECTED] http://www.metatad.it

[Flashcoders] as like php?

2005-11-27 Thread MetaArt
I'm developing a standalone Flash appl, to apply some format to text. The appl will work on user's desktop, so I can't use php or any other server-side language. In php, to allow users insert a break row just typing the Enter key, I use this code: ?php echo nl2br($message) ? where $message is the

[Flashcoders] loading txt file in many mc

2005-11-28 Thread MetaArt
There is a way to laod, at the same time and with just one line code, a .txt file content inside many mc on stage? Without repeat loadVariables(file.txt, _root.mc); as much time as are the mcs. Enrico Tomaselli + web designer + [EMAIL PROTECTED] http://www.metatad.it

Re: [Flashcoders] Re: Loading multiple images inside dynamic textfield

2005-11-28 Thread MetaArt
At the page you wrote the the url, I can't find any image... I just see text, with empty row after any text row... However, to load many images into a dynamic textfield, you must take care only of few rules: - put a br tag before and after the img tag - set the width of image always more smaller

Re: [Flashcoders] Re: Loading multiple images inside dynamic textfield

2005-11-28 Thread MetaArt
ok, I see it... well, how I wrote, you have no enough text between the two images. The text that flow on right side is just five rows, when you need about 18/20 only for get the high of first image... Take a look at this demo: http://www.viawebinstitute.com/demo.php As you can see, many images are

Re: [Flashcoders] Split String

2005-12-03 Thread MetaArt
try this: var yourString = string; var temp = yourString .split(ยง); var firstLine = temp[0]; var secondLine = temp[1]; var thirdLine = temp[2]; etc. etc... Enrico Tomaselli + web designer + [EMAIL PROTECTED] http://www.metatad.it ___

[Flashcoders] Firefox bug?

2005-12-14 Thread MetaArt
I have dev a Flash movie, showed inside an Html page. The stage width of movie is 1000 px, the width of all on stage is 2048 px. If seen in IE, it works fine, if seen in FireFox, it is showed in a very strange way. If the publish settings is to showAll, in FireFox the movie appear very very

Re: [Flashcoders] Firefox bug?

2005-12-14 Thread MetaArt
Sorry but... can you tell me more (and more 'clear') about? thanx... Enrico Tomaselli + web designer + [EMAIL PROTECTED] http://www.metatad.it ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Firefox bug?

2005-12-14 Thread MetaArt
Yes, real pixel width and height values is a solution, that solve the problem, but so born other two! First, if user have a screen resolution less than 1024x768, must scroll vertical to see the menu buttons; second, if I wrote, as width value, the stage width, I can't see the background beyond the

Re: [Flashcoders] Firefox bug?

2006-01-05 Thread MetaArt
Thank you... Enrico Tomaselli + web designer + [EMAIL PROTECTED] http://www.metatad.it ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] troubles with 'Google searchbox'

2006-03-24 Thread MetaArt
I'm inserting a 'Google searchbox' in a full-Flash website; my needs, is to set three search chances: on Google, on Google scholar or on Google print. But, just with this last, I have some troubles. This is my AS: Inside a mc, I have an input textfield, called 'query'. In the (only) frame of mc, I

[Flashcoders] dynamically change textfield var?

2006-03-27 Thread MetaArt
Is possible to change dynamically the var of a dynamic textfield? So, i.e., I can have different buttons that set this value to 'txt1', 'txt2', 'txt3'... and, the same textfield, within has been loaded a .txt file with the different text block, like: txt1=Bla bla bla one txt2=Bla bla bla two

[Flashcoders] rss feed

2006-04-06 Thread MetaArt
I have dev a full Flash website, and I need to add the chance to access to RSS for users. So, what I need is a 'clean' way to give (quickly) the feed rss URL within Flash movie. Any suggest? Enrico Tomaselli + web designer + [EMAIL PROTECTED] http://www.metatad.it

Re: [Flashcoders] How to prevent cache of flash .swf file in web page?

2006-04-18 Thread MetaArt
You can add this too: META HTTP-EQUIV=Cache-Control CONTENT=no-cache / but an unerring feature (if you can use server-side script) is: $swf=yourmovie.swf; $lastmod=date(YmdHis,filemtime($swf)); $swf.=?.$lastmod; and then: param name=movie value=? echo $swf; ? Enrico Tomaselli + web

[Flashcoders] greek/math chars

2006-04-21 Thread MetaArt
I must load some text from a .txt file into a dynamic textfield, but inside the text there are some greek/math chars, like alpha, beta, delta... I can't use the usual chracter entities, neither decimal chars nor hex chars, because they use always the char ''. How can I solve this? There isn't any

Re: [Flashcoders] greek/math chars

2006-04-21 Thread MetaArt
Thanx, Ian!... Enrico Tomaselli + web designer + [EMAIL PROTECTED] http://www.metatad.it ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] Grab IP address

2006-05-15 Thread MetaArt
* Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http

Re: [Flashcoders] Grab IP address

2006-05-15 Thread MetaArt
to achieve my goal? Tell me your opinion... * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search

Re: [Flashcoders] Grab IP address

2006-05-15 Thread MetaArt
thanx 2 all for suggestions and comments... * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

Re: [Flashcoders] Grab IP address

2006-05-30 Thread MetaArt
* web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo

[Flashcoders] obtain mp3 sound level (was: Grab IP address)

2006-05-30 Thread MetaArt
Sorry! I send the previous msg without change the object... :-( * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] How to remove indent for LI with CSS?

2006-06-01 Thread MetaArt
); * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com

Re: [Flashcoders] xls - xml mapping

2006-06-15 Thread MetaArt
Make a simple CMS, based on server-side language like PHP, and allow client to write its new content, leaving to PHP the job to write it in xml file... * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread MetaArt
://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread MetaArt
... * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com

[Flashcoders] two questions for a scrolling dynamic textfield

2006-07-16 Thread MetaArt
Any suggest? Any tip will be really appreciate... * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

[Flashcoders] the height of a dynamic textfield

2006-07-17 Thread MetaArt
://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig

[Flashcoders] continuous scroll problem

2006-07-19 Thread MetaArt
down. Any idea about the reason why? Suggest and/or tips?... * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your

Re: [Flashcoders] image as a link in html textfeild problem.

2006-07-19 Thread MetaArt
* Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier

Re: [Flashcoders] Back from html to specific point in flash

2006-07-21 Thread MetaArt
is running inside a fullbrowser window (I suppose you want say: fullscreen), where is the back button of the browser?... * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php

Re: [Flashcoders] Interactive Map Examples

2006-08-01 Thread MetaArt
* Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier

Re: [Flashcoders] tweening multiple properties simultaneously

2006-08-01 Thread MetaArt
In my experience, just two simultaneous tween actions don't give any problem... however, try to scale first, and then move... * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php

[Flashcoders] extract audio

2006-08-24 Thread MetaArt
://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig

Re: [Flashcoders] extract audio

2006-08-24 Thread MetaArt
Thanks... I have Google access too.. So, I hope in suggestion about (tested) software; however, I'm trying some other software solutions. Thank you anyway. * Enrico Tomaselli * web designer [EMAIL PROTECTED] http://www.metatad.it * Skype: MetaArt RSS: http://www.metatad.it/mnfeeder.php