RE: [Flashcoders] Special font issue
Tom, "35 Helvetica Thin" is the link identifier on the font symbol correct? That should work -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Huynen Sent: Monday, June 04, 2007 11:16 AM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] Special font issue Hi Karina, I tried two ways of embedding: - Embedding trough the library making the font a library symbol. - Embedding by creating a dynamic textfield (all character sets and including the eurosign) the first one goes by the code below. Both don't seem to work Tom var root_p:MovieClip = _root; var tf:TextFormat = new TextFormat(); tf.size = 22; tf.color = 0x00; tf.font = "35 Helvetica Thin"; var test_txt:TextField = root_p.createTextField("test_txt", 0, 50, 50, 500, 500); test_txt.border = true; test_txt.embedFonts = true; test_txt.html = true; test_txt.htmlText = "testing" + "€" + "ok"; test_txt.setTextFormat(tf); On 6/4/07, Karina Steffens <[EMAIL PROTECTED]> wrote: > > Hi Ton, > What character sets are you embedding? Have you tried including the euro > sign in the field next to the autofill button? > > Karina > > > -Original Message- > > From: Tom Huynen [mailto:[EMAIL PROTECTED] > > Sent: 04 June 2007 14:54 > > To: flashcoders@chattyfig.figleaf.com > > Subject: [Flashcoders] Special font issue > > > > Hi list, > > > > I'm developing a narrowcase project. > > The euro sign (€) in the external xml data is encoded in this > > way: "€" > > > > I use Helvetica Light to display the content. It can display > > the eurosign perfectly when I create a static text field inb the fla. > > However soon as I embed the font and try to create a > > textfield dynamicly the eurosign disapears. > > > > The strange thing is that it works with some other fonts but > > not with the one I need. > > > > I tried google all day but my problem isn't solved yet. > > > > Anybody some advice for me? > > > > Regards, > > > > Tom > > ___ > > 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 Authorized Adobe Consulting and Training > > http://www.figleaf.com http://training.figleaf.com > > > > ___ > 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 Authorized Adobe Consulting and Training > http://www.figleaf.com > http://training.figleaf.com > ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This email is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Dissemination, distribution or copying of this email or the information herein by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is prohibited. If you have received this email in error, please immediately notify us by calling our Help Desk at (415) 581-5552 or by e-mailing us at [EMAIL PROTECTED] ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
RE: [Flashcoders] Special font issue
You may need to add the font as a library item. When creating the text field dynamically it has issues with embedding special characters in my own tests. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Huynen Sent: Monday, June 04, 2007 9:54 AM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Special font issue Hi list, I'm developing a narrowcase project. The euro sign (€) in the external xml data is encoded in this way: "€" I use Helvetica Light to display the content. It can display the eurosign perfectly when I create a static text field inb the fla. However soon as I embed the font and try to create a textfield dynamicly the eurosign disapears. The strange thing is that it works with some other fonts but not with the one I need. I tried google all day but my problem isn't solved yet. Anybody some advice for me? Regards, Tom ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This email is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Dissemination, distribution or copying of this email or the information herein by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is prohibited. If you have received this email in error, please immediately notify us by calling our Help Desk at (415) 581-5552 or by e-mailing us at [EMAIL PROTECTED] ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
RE: [Flashcoders] Brining XML/XHTML into Flash
Xpath is a good place to start or any of the page injection techniques. jason law, detroit organic, inc. | www.organic.com retail tech lead | interface engineer e: [EMAIL PROTECTED] | p: 248.454.3387 | aim: jaylaw81 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jordan Dobson Sent: Thursday, May 24, 2007 3:11 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Brining XML/XHTML into Flash I'd love to know if anyone has any advice... on best way to extract text from specific objects of an XHTML page which a SWF is loaded into... then allow the extracted text strings to be available in the SWF. I've built Javascript to extract text from XHTML the page in combination with the use of SWFObject for Javascript detection, Flash detection and to send text extractions to SWF with FlashVars). I believe the FlashVars method has a limit of 64kb which should work in almost every case. Here's a proof of concept I've created: http://hs.squadstudios.com/ Does anyone have advice on the best approach on this method or other things to consider? This has been working pretty smoothly so far, but I just have this sneaking suspicion there might be a better way to do this. Im curious if there might be a way to have Flash load the XHTML page itself into and XML node, and if this would even make sense. Or is my current approach a pretty solid one? -- Jordan Dobson [EMAIL PROTECTED] ofc 206.622.0408 ext:105 aim thesquadjordan web madebysquad.com ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This email is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Dissemination, distribution or copying of this email or the information herein by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is prohibited. If you have received this email in error, please immediately notify us by calling our Help Desk at (415) 581-5552 or by e-mailing us at [EMAIL PROTECTED] ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
RE: [Flashcoders] removeMovieClip scoped incorrectly?
Make sure your closing your dynamic var. removeMovieClip(_root[thisColumn_txt); should be removeMovieClip(_root[thisColumn_txt]); -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Allandt Bik-Elliott (Receptacle) Sent: Thursday, May 24, 2007 11:22 AM To: flashcoders Subject: [Flashcoders] removeMovieClip scoped incorrectly? hi folks i'm trying to get a function to remove a movieclip (actually a textArea class object) but i've having a bit of trouble - i think it may be a scope issue but i can't see why the function is function changeLayout(layout:Number, textContent:String, image:String, textContent2:String):Void { //don't remove other columns if 3 is passed to layout if (layout != 3) { //otherwise get variables var layout:Number = layout; var textContent:String = textContent; var image:String = image; var textContent2:String = textContent2; //reset layout for (var i:Number = 0; i < 3; i++) { //use i to make column name var this_i = i+1; var thisColumn_mc:String = "column"+this_i+"_mc"; var thisColumn_txt:String = "column"+this_i+"_txt"; //these work with no problems _root[thisColumn_txt]._visible = false; _root[thisColumn_txt].text = ""; //however this doesn't seem to be working removeMovieClip(_root[thisColumn_txt); //trace reveals that the thisColumn_txt in the loop, once used, does not disappear after the removeMovieClip --> thisColumn_txt: [object Object] trace("thisColumn_txt "+thisColumn_txt+": "+_root [thisColumn_txt].toString()); //the rest works perfectly var currentWidth = _root[thisColumn_mc]._width; var thisTween:Object = new Tween(_root[thisColumn_mc], "_width", Strong.easeOut, currentWidth, 0, 1, true); thisTween.onMotionFinished = function() { if (i == 3) { if (layout == 1) { setupColumn(150, 1, 425, textContent, image); } else if (layout == 2) { setupColumn(150, 1, 200, textContent, image); setupColumn(350, 2, 225, textContent2); } } }; } } else { setupColumn(575, 3, 180, textContent); } } what's really strange is that other items using the same path to the textArea, _root[thisColumn_txt], work flawlessly but removeMovieClip does not. I've tried removeMovieClip with textArea class objects in a previous draft with no problems (although it didn't have the dynamically generated name) can anyone make sense of this? thankyou obie ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This email is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Dissemination, distribution or copying of this email or the information herein by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is prohibited. If you have received this email in error, please immediately notify us by calling our Help Desk at (415) 581-5552 or by e-mailing us at [EMAIL PROTECTED] ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
RE: [Flashcoders] flash and xpath
I'm still getting the value returned as &. I'm starting to pull my hair out cause of this. Could there be any other reason why this is occurring? When I look at the file being loaded in from the output as a var I see that even in there the ampersand is being shown as &. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kerem Iseri Sent: Wednesday, May 16, 2007 5:55 PM To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] flash and xpath Use CDATA for that node inside the XML to make flash recognise everything you write inside CDATA as html text. You can even use or for new line etc. For example .. Kerem Ä°ÅERÄ° Trafo Intractive www.trafo.com.tr -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jason Law Sent: Wednesday, May 16, 2007 11:38 PM To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] flash and xpath Ok, so I was able to get it to work, but now I'm coming across another issue. I'm loading in xml using the old "new XML()" object and using xpath to parse. One of the fields I have looks like this. Field & Stream. The issue is that the value I'm getting back from xpath is "Field & Stream" and not "Field & Stream". The textfield that is being used to display is not showing the text as html and fontEmbed is false. Is there anything that I could do to fix this? Thanks! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Johannes Nel Sent: Wednesday, May 16, 2007 12:45 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] flash and xpath it seems you want to get the text value of a node. try this var item:String = XPathAPI.selectSingleNode(doc.firstChild, "/html/body/[EMAIL PROTECTED]'data']/[EMAIL PROTECTED]'campaign']/text() ")toString(); notice the text() On 5/16/07, Jason Law <[EMAIL PROTECTED]> wrote: > > I'm wondering if this is possible within flash 8 using the xpath api to > do something like this. > > > > var item:String = XPathAPI.selectSingleNode(doc.firstChild, > "/html/body/[EMAIL PROTECTED]'data']/[EMAIL PROTECTED]'campaign'][2] > ").firstChild.toString(); > > > > now I know this works > > > > var item:String = XPathAPI.selectSingleNode(doc.firstChild, > "/html/body/[EMAIL PROTECTED]'data']/[EMAIL PROTECTED]'campaign'] > ").firstChild.toString(); > > > > but it seems that when you add any kind of nodeItem to the end of an > item flash returns undefined. > > > > > > jason law, detroit > > organic, inc. | www.organic.com <http://www.organic.com/> > retail tech lead | interface engineer > e: [EMAIL PROTECTED] | p: 248.454.3387 | aim: jaylaw81 > > > > > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > This email is intended only for the person or entity to which it is > addressed > and may contain information that is privileged, confidential or otherwise > protected from disclosure. Dissemination, distribution or copying of this > email or the information herein by anyone other than the intended > recipient, > or an employee or agent responsible for delivering the message to the > intended > recipient, is prohibited. If you have received this email in error, please > immediately notify us by calling our Help Desk at (415) 581-5552 or > by e-mailing us at [EMAIL PROTECTED] > > ___ > 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 Authorized Adobe Consulting and Training > http://www.figleaf.com > http://training.figleaf.com > -- j:pn http://www.lennel.org ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This email is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Dissemination, distribution or copying of this email or the information herein by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is prohibited. If you have received this email in error, please immediately notify
RE: [Flashcoders] flash and xpath
Ok, so I was able to get it to work, but now I'm coming across another issue. I'm loading in xml using the old "new XML()" object and using xpath to parse. One of the fields I have looks like this. Field & Stream. The issue is that the value I'm getting back from xpath is "Field & Stream" and not "Field & Stream". The textfield that is being used to display is not showing the text as html and fontEmbed is false. Is there anything that I could do to fix this? Thanks! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Johannes Nel Sent: Wednesday, May 16, 2007 12:45 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] flash and xpath it seems you want to get the text value of a node. try this var item:String = XPathAPI.selectSingleNode(doc.firstChild, "/html/body/[EMAIL PROTECTED]'data']/[EMAIL PROTECTED]'campaign']/text() ")toString(); notice the text() On 5/16/07, Jason Law <[EMAIL PROTECTED]> wrote: > > I'm wondering if this is possible within flash 8 using the xpath api to > do something like this. > > > > var item:String = XPathAPI.selectSingleNode(doc.firstChild, > "/html/body/[EMAIL PROTECTED]'data']/[EMAIL PROTECTED]'campaign'][2] > ").firstChild.toString(); > > > > now I know this works > > > > var item:String = XPathAPI.selectSingleNode(doc.firstChild, > "/html/body/[EMAIL PROTECTED]'data']/[EMAIL PROTECTED]'campaign'] > ").firstChild.toString(); > > > > but it seems that when you add any kind of nodeItem to the end of an > item flash returns undefined. > > > > > > jason law, detroit > > organic, inc. | www.organic.com <http://www.organic.com/> > retail tech lead | interface engineer > e: [EMAIL PROTECTED] | p: 248.454.3387 | aim: jaylaw81 > > > > > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > This email is intended only for the person or entity to which it is > addressed > and may contain information that is privileged, confidential or otherwise > protected from disclosure. Dissemination, distribution or copying of this > email or the information herein by anyone other than the intended > recipient, > or an employee or agent responsible for delivering the message to the > intended > recipient, is prohibited. If you have received this email in error, please > immediately notify us by calling our Help Desk at (415) 581-5552 or > by e-mailing us at [EMAIL PROTECTED] > > ___ > 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 Authorized Adobe Consulting and Training > http://www.figleaf.com > http://training.figleaf.com > -- j:pn http://www.lennel.org ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This email is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Dissemination, distribution or copying of this email or the information herein by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is prohibited. If you have received this email in error, please immediately notify us by calling our Help Desk at (415) 581-5552 or by e-mailing us at [EMAIL PROTECTED] ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[Flashcoders] flash and xpath
I'm wondering if this is possible within flash 8 using the xpath api to do something like this. var item:String = XPathAPI.selectSingleNode(doc.firstChild, "/html/body/[EMAIL PROTECTED]'data']/[EMAIL PROTECTED]'campaign'][2] ").firstChild.toString(); now I know this works var item:String = XPathAPI.selectSingleNode(doc.firstChild, "/html/body/[EMAIL PROTECTED]'data']/[EMAIL PROTECTED]'campaign'] ").firstChild.toString(); but it seems that when you add any kind of nodeItem to the end of an item flash returns undefined. jason law, detroit organic, inc. | www.organic.com <http://www.organic.com/> retail tech lead | interface engineer e: [EMAIL PROTECTED] | p: 248.454.3387 | aim: jaylaw81 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This email is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Dissemination, distribution or copying of this email or the information herein by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is prohibited. If you have received this email in error, please immediately notify us by calling our Help Desk at (415) 581-5552 or by e-mailing us at [EMAIL PROTECTED] ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
RE: [Flashcoders] jsapi question
Steve, no i'm not calling this from a panel. I'm using an external jsfl file and importing swfs and running the command against that. I'll see if i can find the rectangle or mouse click option. But i was hoping there was a way to find out what each elements DOM position is on the stage. -Original Message- From: [EMAIL PROTECTED] on behalf of Steven Sacks Sent: Sat 5/12/2007 12:44 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] jsapi question Hey Jason, Are you calling this from a panel? If you are, make sure the panel is docked. There are bugs with certain JSFL commands if a panel isn't docked when it calls them and setTextString is one of them. Also, you could also try selecting the text field using the rectangle selection command (not sure what it is off-hand) and then using the document command for setting a text string, versus the element command. You could also try using the mouse click command, though that's kind of dirty. Jason Law wrote: > i've been having alot of issues with changing elements values on the > stage using the following code. > > > > fl.getDocumentDOM().getTimeline().layers[0].frames[0].elements[1].setTex > tString( "some text" ); > > > > The issue is that i'm running this code against different swf templates > that get loaded in and need to make sure that the element position on > the same is always 1. Is there a way to find out what the elements > position is? > > > > I've tried this, but it doesnt give you the true element position. > > > > for( i=0; i < > fl.getDocumentDOM().getTimeline().layers[0].frames[0].elements.length; > i++){ >alert( > fl.getDocumentDOM().getTimeline().layers[0].frames[0].elements[i].getTex > tString() + i ) > } > > > > Does anyone have any other ideas? I know if you create swfs within > fireworks that you can set the element position by what layer it is on, > but in flash it seems that there is no way to know. > > > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > This email is intended only for the person or entity to which it is addressed > and may contain information that is privileged, confidential or otherwise > protected from disclosure. Dissemination, distribution or copying of this > email or the information herein by anyone other than the intended recipient, > or an employee or agent responsible for delivering the message to the intended > recipient, is prohibited. If you have received this email in error, please > immediately notify us by calling our Help Desk at (415) 581-5552 or > by e-mailing us at [EMAIL PROTECTED] > > ___ > 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 Authorized Adobe Consulting and Training > http://www.figleaf.com > http://training.figleaf.com > ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This email is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Dissemination, distribution or copying of this email or the information herein by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is prohibited. If you have received this email in error, please immediately notify us by calling our Help Desk at (415) 581-5552 or by e-mailing us at [EMAIL PROTECTED] ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
RE: [Flashcoders] Customized shape of flash player
The only way you can create customized flash player shapes is with the use of Apollo, which allows chromeless and transparent areas. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Smeets, Ben Sent: Friday, May 11, 2007 9:56 AM To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] Customized shape of flash player Isn't possible without any form of masking. Would be nice though :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Waseem Shahzad Sent: vrijdag 11 mei 2007 15:07 To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] Customized shape of flash player How we can make a customized shape of flash player in the internet explorer. Not using masking. I want the flash player are show in the irregular shape not in the rectangular shape of any size. Please help. Thanx in advance. ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you. ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This email is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Dissemination, distribution or copying of this email or the information herein by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is prohibited. If you have received this email in error, please immediately notify us by calling our Help Desk at (415) 581-5552 or by e-mailing us at [EMAIL PROTECTED] ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
[Flashcoders] jsapi question
i've been having alot of issues with changing elements values on the stage using the following code. fl.getDocumentDOM().getTimeline().layers[0].frames[0].elements[1].setTex tString( "some text" ); The issue is that i'm running this code against different swf templates that get loaded in and need to make sure that the element position on the same is always 1. Is there a way to find out what the elements position is? I've tried this, but it doesnt give you the true element position. for( i=0; i < fl.getDocumentDOM().getTimeline().layers[0].frames[0].elements.length; i++){ alert( fl.getDocumentDOM().getTimeline().layers[0].frames[0].elements[i].getTex tString() + i ) } Does anyone have any other ideas? I know if you create swfs within fireworks that you can set the element position by what layer it is on, but in flash it seems that there is no way to know. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This email is intended only for the person or entity to which it is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Dissemination, distribution or copying of this email or the information herein by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is prohibited. If you have received this email in error, please immediately notify us by calling our Help Desk at (415) 581-5552 or by e-mailing us at [EMAIL PROTECTED] ___ 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 Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com