Flash Markup Language
hey, anyone out there know's anything about flash markup language? Just saw it at work at http://www.sukima****a.com. Thanks.
Ultrashock Forums > Flash > ActionScript
Posted on: 2003-11-10
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Using Web Standard Markup In Flash
Hello,
Simple question: I have numerous transitional xhtml pages marked up and ready to go. The code is basic but uses a few tags that are not recognized in Flash via HTML import- <h1>, <div> etc. Is there a best practice method for using this code without having to "dummy" down the code for use in Flash? Is there any advantage to importing the xhtml pages as XML and going that route or will I have the same problem?
Thanks,
Bob
Flash Inventing Nonexistent Markup <li>
Hi There--
Have put together a site where textfields are imported using the loadVars command.
Here it is:
http://grasshpr.home.mindspring.com/...ernate1_3.html
Here's the entire folder, which includes the textfiles and the fla:
http://grasshpr.home.mindspring.com/shinnAlternate1
The problem is that on some of the textfiles, Flash is adding markup where there isn't any, in the form of list dots. The kind you get when you put <li> in front of a line. (It probably won't do it for you. Flash just wants to drive me crazy. (It's succeeding.))
This only occurred in the last iteration of the design.
It's occurring on both of the computers I have access to, so it's something in the file.
Since this is the first time I've imported text, I'm utterly clueless as to what could be making this happen.
Has this happened to anyone else? If so, how did you solve it?
Any insight will be vastly appreciated.
Thanks for reading this,
Lee
My Flash Variables Contain Html Markup?
am using actionscript below to post variables to cgi script:
stop();
avertissement = "";
t_name.text = "";
t_email.text = "";
t_phone.text = "";
t_comments.text = "";
recipient ="user@domain_name.com";
subject="Enquiry from website";
bt_submit.onRelease = function() {
if (t_name.text == "") {
avertissement += " name";
}
if (t_email.text == "") {
avertissement += " email adress";
}
if (t_comments.text == "") {
avertissement += " comments";
}
if (avertissement !== "") {
t_status.text = "Please fill in these fields : "+avertissement;
avertissement = "";
} else {
loadVariablesNum("cgi-bin/nms_formmail.pl", 1, "POST");
t_status.text = "";
nextFrame();
}
};
bt_clear.onRelease = function() {
avertissement = "";
t_name.text = "";
t_email.text = "";
t_phone.text = "";
t_comments.text = "";
t_status.text = "";
};
The flash variables are sent to the script which generates an email message but the variables seem to come with html markup. Here is what comes in the email:
Below is the result of your feedback form. It was submitted by (<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Arial" SIZE="14" COLOR="#666666" LETTERSPACING="0" KERNING="0">test@test.com</FONT></P></TEXTFORMAT>) on Thursday, May 10, 2007 at 17:31:17
---------------------------------------------------------------------------
comments: <TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Arial" SIZE="14" COLOR="#666666" LETTERSPACING="0" KERNING="0">test message</FONT></P></TEXTFORMAT>
phone: <TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Arial" SIZE="14" COLOR="#666666" LETTERSPACING="0" KERNING="0">000 555 3430343</FONT></P></TEXTFORMAT>
name: <TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Arial" SIZE="14" COLOR="#666666" LETTERSPACING="0" KERNING="0">test name</FONT></P></TEXTFORMAT>
---------------------------------------------------------------------------
The same script works fine with html, have been searching everywhere trying to find a solution but everything I try either doesn't work or still sends variables with markup??
Any ideas??
Xml Markup Still Showing Up
i'm trying to load an xml file into my flash file but each time i load the xml into the flash, the xml markup is still there.
here is the fla and xml file
http://www.whathedale.com/kirupa/home.fla
http://www.whatthedale.com/kirupa/text/update.xml
thanks in advance.
dale tan.
Markup Tool
Hi
I am developing an application called markup. This allows a user to markup on pages/content he is viewing….my markup application has one tool bar and one markup area ….
What I want is to have different makrup areas for different pages in a presentation.
How I m doing this…
in a master file /base file I load this markup swf and the presentation swf….my markup is works fine if there is only one page in the presentation…but if there are more than one my markup objects are visible in the second page also…but I want separate markup regions for separate pages..
please help me..
thanks
shan
Xml Markup Still Showing Up
i'm trying to load an xml file into my flash file but each time i load the xml into the flash, the xml markup is still there.
here is the fla and xml file
http://www.whathedale.com/kirupa/home.fla
http://www.whatthedale.com/kirupa/text/update.xml
thanks in advance.
dale tan.
Namespaces In Xml For Html Markup
hi, we have an xml file we will be loading into a project. The xml will be littered with AS3 friendly styling (inline) but we were hoping to avoid the ugly CDATA--ie:
Code:
<![CDATA[<p>This is text</p>]]>
The approach we are hoping to accomplish would be declaring a namespace in the xml:
Code:
<pages>
<page>
<content xmlns:h="http://www.w3.org/1999/xhtml">
<text targetid="1">
<h:font color='#ffffff'>This text</h:font>will go into the box with id of 1.
</text>
<text targetid="2">
This text will go into the box with id of 2.
</text>
</content>
</page>
</pages>
i know there is a Namespace class, but i am not sure how to tie the two together....can someone give me a lead? I have read this , but it does not lead me to the connection with how this MAY work with html...if at all.
XML Text Displaying Markup
We are encountering an intermittent issue where the markup and tags that we are reading in from an xml file are being displayed. This problem occurs randomly for some and not at all for others. Has anyone experience this issue and have any insight?
Translation Of Text From One Language To Another Language
hello
this is kishore raju
i have a problem
i want to translate some text from english to any other language using google translate (i.e i want to send the word to the google as a parameter and get the result)
so please send me the source for that .
urs
kishore raju
Scripting Language VS Programming Language
Dear Sir,
I cannot understand which is the difference between a scripting language(like actionscript or applescript) and a programming language (like java or C++).
I know that actionscript 2.0 is similar to javascipt. so it must be a scripting language.
but actionscipt 3.0 is most simmilar like java or C++.
so why it is still a scripting language?
Thank you upfront for your interest.
Unwanted HTML Markup In Text Box Value
I've inherited a Flash MX 2004 document that has some text entry points that verify you've entered the right text before continuing or provide you a warning message and urge you to try hard. They're set up like so:
Code:
on (keypress "<Enter>")
{
if (titleInputText == "hoped-for text entry")
{
gotoAndPlay("someNamedTarget");
}
else
{
comment = "Hey--enter hoped-for text entry to continue!";
}
}
Some of them just weren't behaving at all correctly. With some handy-dandy trace() statements, I found that a few of them were returning values that included HTML formating of the text. Instead of getting
Code:
something entered
I was getting
Code:
<FONT = "Arial">something entered</FONT>
which is causing me all sorts of problems. How on earth can I turn off the HTML tags? Where did it come from?
(Why, yes, I do know just enough to get myself in trouble. Why do you ask?)
Any help would be greatly appreciated on this.
Retaining Markup Tags In HtmlText Fields
Is it possible to wrap an XML object so that it's element tags are preserved (not parsed) if it populates a text field as htmlText? I'm trying to use XML in an htmlText field where other (non-XML) text is styled using CSS. I get the results I'm looking for (except for the CSS) when I populate the text field as plain text (not htmlText).
I tried wrapping the XML in a <![CDATA[]]> tag, but that too was parsed when used as htmlText.
Any ideas?
W3C Markup Validation Service Web Site Shows Lots Of Errors For .swf Object
Hello;
I'm using the method to insert a .swf file into an Html document as described in the "Frequently Asked 'Flash' Questions" tutorial in this forum:
http://www.sitepoint.com/forums/showthread.php?t=210919
The flash object works fine in my browser.
When I try to validate the Html using the W3C Markup validation service it says that there are no attributes for SRC, QUALITY, PLUGINSPAGE, TYPE, WIDTH, HEIGHT, and MENU. It also says that the element EMBED is undefined.
Since it shows so many errors it looks like the W3C Markup Validation Service might not configured to work to .swf objects.
You can copy and paste the code below and you can see what I'm talking about. Here's the link to the W3C Markup Validation Service page:
http://validator.w3.org/
PHP Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Shockwave Flash Movie</title>
</head>
<body bgcolor="#AAAAAA">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="300" height="250">
<param name="movie" value="300 x 250.swf" />
<param name="quality" value="autohigh">
<param name="menu" value="false" />
<embed src="300 x 250.swf" quality="autohigh" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="300" height="250" menu="false"></embed>
</object>
</body>
</html>
I think that using the flash object will be ok but for my peace of mind can somebody tell me is it safe or wise to use the .swf object when the W3C web site shows so many errors?
Thanks.
Language Help In Flash
My mp3 player doesn't display languages other than English correctly. They all come up in a "[]" box, (except more of a square, and a full box)
I've uploaded a song in swedish, and the title is swedish, so I want to type the title using the swedish characters: "ĺ ä" ect, it doesn't work.
Any ideas
Language In Flash
I want to use Arabic Language in my flash website so what should i do , i can i use Arabic Language in Flashbase Website
?
Language In Flash
I want to use Arabic Language in my flash website so what should i do , i can i use Arabic Language in Flashbase Website
?
Language In Flash
I want to use Arabic Language in my flash website so what should i do , i can i use Arabic Language in Flashbase Website
?
Language Patches For Flash MX?
Does anybody know if it's possible to change Flash MX's menu language?
I'm used to work with an english version of flash 5, but now i got a german version of MX.
Thanks,
----va
Language Problem With Flash
I made site www.soundoccasions.com, and I have problem with it, some US visitors say that on the site there is demand for them to download microsoft european language. Do you maybe know why is that so?
On the site I used font Trebuchet MS.
Thanx
Language Input To Flash
hello,
my pc is running winxp and flashMX not 2004 version.i found some difficulties to tackle language problem of flash?
could you give me help?
1.do you know whether i can make a flash with different language input without inputting the outline (converted outside flash before entering flash)?
2.moreover, if i combine all the language version of flash animation in a single fla file.let's say, i want to use load txt from external .txt files with different languges.The movie will start with different languages based on the starting button to choose language. is it possible?
the language used: dutch, german, french, chinese,engligh, spanish
thanks much, everyone
Chines Language In Flash
Hi All,
I am making a presentation in Chines Languge taking data from Database. The problem i m getting here is that Chines Language is not being shown in Flash Properly or its because of that Flash is not supporting this language. is there any script or technique to solve this problem?
Thanx in Advance
IFFY
Flash Language Settings
hi all,
i bought a cheap used computer from my brazilian friend, and it is loaded with flash MX, but he lost the discs. its hard enough trying to learn flash, but all menus and everything is in protugese, and i have no idea how to get it back to english....
Flash : Multi Language
Hi,
i would like to have a multi language flash animation.
for that i use String Panel and Dynamic texts.
in the help it is written the following thing to have a custom control on language selection.
Code:
import mx.lang.Locale;
Locale.setFlaName("<flaFileName>");
Locale.setDefaultLang("langcode");
Locale.addXMLPath("langcode", "url/langcode/flaname_langcode.xml");
this is 1 issue : mx.lang.Locale does not exist as library.
as my flash animation will be on internet, user should be able to select alone the default language.
is there someone here who has experience with this topic ?
thanks a lot,
A.
Help About Chinese Language In FLASH.
I want to do like this in text zooming animation in a dynamic textfield.
Inside in the movieclip have another movieclip with insName of textclip consisting the dynamic textfield representing the variable "text".
here is my bodycode in the parent clip:
onClipEvent (load) {
this.textclip.text = "市场风险计量";
}
If I put a value in English text that would be working but if i put chinese it is not working. WHY?
Flash : Multi Language
Hi,
i would like to have a multi language flash animation.
for that i use String Panel and Dynamic texts.
in the help it is written the following thing to have a custom control on language selection.
Code:
import mx.lang.Locale;
Locale.setFlaName("<flaFileName>");
Locale.setDefaultLang("langcode");
Locale.addXMLPath("langcode", "url/langcode/flaname_langcode.xml");
this is 1 issue : mx.lang.Locale does not exist as library.
as my flash animation will be on internet, user should be able to select alone the default language.
is there someone here who has experience with this topic ?
thanks a lot,
A.
Flash Player 10 Ui Language
Hi all long time no see.
Ive just installed flashplayer 10 debug v. and now Im really pissed, all the errors etc. are in polish. Yeah, not that i wouldnt know it but i cant get it sometimes what IS the error I read. Ive searched a bit, but with no result.
Maybe someone know how to force installing ( or change afterwards ) flashplayer ui language to english ?
mooska
Arabic Language In Flash
Hello to all,
I am working on an Arabic website, and i have to put so many Arabic text in my site, but it didn’t works properly, it breaks all the Arabic writing. I had converted all the text into EPS and then import it into the file, but that’s not the proper way, please can anyone tell me the best solution for this, because we have to edit this text as well.
Thanks in advance
Change Flash Cs3 Language
hye guys,
i have some problem with my flash. yesterday i've downloaded france version of flash cs3, so all the language includes the toolbars, menu and so on is in france. is there any ways that i can changes the language to english?..help me please
Language Support In Flash MX
Hello,
I want to make a Chinese presentation in Flash MX, I have the word document in Chinese language but if I paste Chinese charaters in Flash it is showing question marks only.
Please help me out.
What Is Best Programming Language For Web Flash?
Hi, everyone!
I just want to ask you What is best programming language for web flash?
I mean web flash connect with RDBMS.(like SQL, MySQL...)
ASP or ASP.NET or PHP or Coldfunsion?
is Coldfunsion a best choice?
thank you,
Best regards,
Flash : Multi Language
Hi,
i would like to have a multi language flash animation.
for that i use String Panel and Dynamic texts.
in the help it is written the following thing to have a custom control on language selection.
Code:
import mx.lang.Locale;
Locale.setFlaName("<flaFileName>");
Locale.setDefaultLang("langcode");
Locale.addXMLPath("langcode", "url/langcode/flaname_langcode.xml");
this is 1 issue : mx.lang.Locale does not exist as library.
as my flash animation will be on internet, user should be able to select alone the default language.
is there someone here who has experience with this topic ?
thanks a lot,
A.
Script Language Flash Question?
Hello,
I have a certain script that I would like to use in a flash project of mine, however the script is not action script. Normally you embed it into a webpage and when I send the page to a friend and it is open, it makes their cd eject. Its very harmless but funny! Now the problem is I'm not allowed to make the flash open to the page with the script in it or the project gets removed. I am wondering if there is a way to simply put the script into a flash button located in my project? That way it does the same thing and stays in the orginal flash when the user clicks the button.
Here is the script code:
<!-- Annoying CD Eject code to piss off IE users! -->
<SCRIPT LANGUAGE="VBScript">
<!--
Set oWMP = CreateObject("WMPlayer.OCX.7" )
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
End If
-->
</SCRIPT>
Pls Help Me To Write In Arabic Language In Flash
hello all,
i need anyone help me to write in arabic language in flash, it's lot of text copied from word file and i could do it using flash mx 2004 and readable just in windows xp because it's unicode and ofcourse not readable in windows 98 ..and i need it to make cd readable in all windows..pls anyone can advice me??
How To Change Font Language In Flash?
Any Flash work are mostly done using English Language. But i need to know, how to use a different language like (Arabic, French, Any Indian Language)?
I have installed the rrequired fonts in my machine. I have also changed the .dll fill as directed in Microsoft Help. I have changed the reginal options inside the control Panel.
When i type any word using any of this languge other than English, Word document or Notepad or create a webpage, the font is utilized with the corresponding language. But in Flash, what must be done? Should i need to use action scripting? Or any other alternative?
Please suggest me a proper method....
Thank you
regards
Madhan
I Want To Add Sign Language Flash Video Like This
Hi. I am deaf. I want to create flash video website for business. I want to add 40 minutes presentation video with sign language that is already in DVD.
http://sorensonvrs.com/apply/vp200.php
Here is example, I want to add streaming video . because video is large.
I will get Flash professional 8. How to create it???
I am beginner, so can you explain to me. thank you!!!
Changing Language Of Flash Installation...
hi,
I am running a german operating system and thus also have a german version of MM studio installed...Problem is that I would like to change it to English, but there is no license available for an English version at my company. So...my question is if anyone knows a different way to do this.... I have read on a different forum that it's possible to change the registry file to English, or add an english.txt file to the settings folder but neither method has worked so far...
Any feedback on this issue would be greatly appreciated!
Thanks,
susanne
Should Flash Player Recognize OS Language?
Hi Guyos,
this should be just a plus to my site, this one have to version, one "NL" and the other "FR" (Dutch and French).
The question is: Should the flash payer recognize the language of the OS? Like if I have a French version of my windows, when the site loads load the "FR" version of this.
Should this be posible?
Thx
RUSSIA Language, Fonts In Flash
Hi friend, please help.
I'm just working on the big flash presentation and there are couple of language versions. And there is also Russia language. For example, I have some text in Word in Russia in normal Arial. No problem. I copy it and paste in Photoshop. It works. But, when I paste it in textfield in flash, I get something like ???? ??? ????? ?? ? ? ??? ???. How can I use russia language in text fields. Do I have to have some russia font ? Or is there some special settings in flash for that ??
Thanx so much for any answers.
CubeLuke
Flash Pro 8 Is Working In A Different Language (german Maybe)
for some reason the whole workspace is in aweird language (possibly german) -i suspect that its a family member's doing-and since it's in that language i cant make it go back to english. can anyone help me? i already tried a bunch of random things that didnt work.
Flash 9 Language Reference Link
How do I get to the documentation for Flash 9? Adobe only seems to have reference to documentation for Flash 10 from the Adobe Flash Support Center.
Flash Supporting Multipalpal Language?
how cant we write diffrent languages in a INPUT TEXTBOX.there are how many languages support by Flash???whech are they???can use cant write his name in EnglishArabicKoreanJapaneseChinesePersian/DariPashtoTurkishGermanSpanishFrenchItalianRussian PortugueseUkrainianHebrewDutchhow can i found them???need your idea...
Multi Language SUPORT In Flash,.. ?
Does anybody know something about multi language suport in flash,.. because I need some slovenian (or serbian,.. it's same thing ) characters,..
The main problem is,. when I imoport text,.. with slovenian charecters,.. Flash replece it,.. with some characters like Č Ć č ć ,... why,..
Does,.. anybody know the answer,..
m.
|