Re: [Flashcoders] Printing without print dialog box in an exe

2006-05-29 Thread Gabriel
Rishi, you can do that with SWF Studio (Northcode http://www.northcode.com/). It's really easy. GaB rishi wrote: Hi I need to give a print command from flash without opening the print dialog box. I have my application embedded in VB. I want to know the proposed solutions. I know this

Re: [Flashcoders] wheel on curve game engine

2006-05-29 Thread Martin Weiser
Thanks a lot, it is unbelievable, awesome, superb, he must be genius thatis the best engine for flash i have seen, Martin - Original Message - From: Mick G [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Monday, May 29, 2006 6:28 AM Subject:

RE: [Flashcoders] mtasc inject code onto first frame of root tmeline?

2006-05-29 Thread Hauwert, Ralph
You can. Just don't use the -header option for the mtasc params. If you want to keep the existing code in the swf too, you will have to use the -keep param. This might introduce some interesting conflicts though, especially when there's already code in which will be reinjected (your core library,

RE: [Flashcoders] mtasc inject code onto first frame of root tmeline?

2006-05-29 Thread Lee McColl-Sylvester
Hi Robert, On testing the following cards (on the left), we got the results on the right 611 - 032768 ( shows as a smiley face) 005 - 0491528 004 - 008 597 - 032768 ( shows as a smiley face) A little different than we expected :) Regards, Lee -Original Message- From: [EMAIL

RE: [Flashcoders] sending HTML image map data to Flash

2006-05-29 Thread Bernard Visscher
You can also load the html file with the XML loader. Something like: var __xml = new XML(); __xml.onLoad = function(succes:Boolean){ if(success) trace(this); else trace(Error loading file); } __xml.load(imagemap.html); Now it will trace the full html-file. Bernard

RE: [Flashcoders] sending HTML image map data to Flash

2006-05-29 Thread Bernard Visscher
__xml = new XML(); __xml.ignoreWhite = true; __xml.onLoad = function(success:Boolean){ var xmlString:String = this.toString(); var indexBegin = xmlString.indexOf(map); var indexEnd = xmlString.indexOf(/map)+6; xmlString = xmlString.substring(indexBegin,indexEnd);

Re: [Flashcoders] security issues with php mail from Flash?

2006-05-29 Thread Dan Efergan
Yep, the main exploitation would happen by using the underlying PHP script. Google will help you with sorting the PHP: http://www.google.com/search?client=safarirls=enq=stop+spammers+php +scriptsie=UTF-8oe=UTF-8 Also, the php online manual reference for 'mail' has a number of comments

RE: [Flashcoders] geturl:javascript is causing images to not display onIE

2006-05-29 Thread Phil Glatz
At 08:00 PM 5/28/2006, Nehal Mick bot wrote: The best way is to test from server. If its Flash Security issue, while running locally u need to trust all the files. So what I do is to always check from server first and if issue is still there then investigate further Yes, it is a live site run

RE: [Flashcoders] sending HTML image map data to Flash

2006-05-29 Thread Bernard Visscher
I don't know how with imageready. One thing you could do is replace all area with /areaarea and the last /map with /area/map. But before you do that delete all /area entries, because flash add's them(not at the correct place) if you don't use closed area-tags. Bernard -Oorspronkelijk

RE: [Flashcoders] sending HTML image map data to Flash

2006-05-29 Thread Bernard Visscher
This should work: var xmlString:String = this.toString(); var indexBegin = xmlString.indexOf(map); var indexEnd = xmlString.indexOf(/map)+6; xmlString = xmlString.substring(indexBegin,indexEnd); xmlString = xmlString.split(/area).join(); //Delete all /area added by flash var areaArray:Array =

RE: [Flashcoders] sending HTML image map data to Flash

2006-05-29 Thread Marc Hoffman
Many thanks! -Marc At 08:46 AM 5/29/2006, you wrote: This should work: var xmlString:String = this.toString(); var indexBegin = xmlString.indexOf(map); var indexEnd = xmlString.indexOf(/map)+6; xmlString = xmlString.substring(indexBegin,indexEnd); xmlString = xmlString.split(/area).join();

RE: [Flashcoders] geturl:javascript is causing images to notdisplay onIE

2006-05-29 Thread Bernard Visscher
Phil, Do you have an URL where I (and others) can look? Bernard -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Phil Glatz Verzonden: maandag 29 mei 2006 16:32 Aan: Flashcoders mailing list Onderwerp: RE: [Flashcoders] geturl:javascript is

RE: [Flashcoders] security issues with php mail from Flash?

2006-05-29 Thread Bernard Visscher
http://www.securephpwiki.com/index.php/Email_Injection -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Dan Efergan Verzonden: maandag 29 mei 2006 16:27 Aan: Flashcoders mailing list Onderwerp: Re: [Flashcoders] security issues with php mail from

Re: [Flashcoders] geturl:javascript is causing images to not display on IE

2006-05-29 Thread Kevin Newman
I think you may have hit one of the problems with using javascript: pseudo urls. If I remember correctly, when you use a javascript pseudo url it disables some of the events under some circumstances. You could try two things - either use fscommand (or FlashJS, or one of the other communication

Re: [Flashcoders] geturl:javascript is causing images to not display on IE

2006-05-29 Thread Marcelo Volmaro
Use getURL(javascript:void(setFlashHeight('wrapper','+h+')); On Mon, 29 May 2006 13:19:02 -0300, Kevin Newman [EMAIL PROTECTED] wrote: I think you may have hit one of the problems with using javascript: pseudo urls. If I remember correctly, when you use a javascript pseudo url it

[Flashcoders] Shared fonts

2006-05-29 Thread Bernard Visscher
Hi all, Last weeks/months I see more and more questions about shared fonts. I've used the following for about a year now and it works for me. The basic is the same as sharedfonts (2 swf's to load the fonts), I'm sorry for all the people behind sharedfonts for this. Example:

Re: [Flashcoders] Shared fonts

2006-05-29 Thread Iv
Hello Bernard, - thank you! BV Last weeks/months I see more and more questions about shared fonts. BV I've used the following for about a year now and it works for me. BV The basic is the same as sharedfonts (2 swf's to load the fonts), I'm sorry BV for all the people behind sharedfonts for

[Flashcoders] Getting the selection

2006-05-29 Thread mikeb
Can anyone tell me why this outputs -1 for every value? Could it be because the textfield looses focus when I click on the button component? I am trying to get the first and last position of the selected text in a dynamic textfield. Any pointers would be awesome! Outputs: String to Underline:

RE: [Flashcoders] geturl:javascript is causing images to notdisplay onIE

2006-05-29 Thread Phil Glatz
Marcello suggested: Use getURL(javascript:void(setFlashHeight('wrapper','+h+')); I tried adding that, same problem - good suggestion though; I know this can be an issue. And thanks to Kevin for his suggestions about pseudo urls. At 09:05 AM 5/29/2006, Bernard wrote: Do you have an URL

Re[2]: [Flashcoders] Shared fonts

2006-05-29 Thread Iv
Hello Bernard, - really it isn't a problem: SFM work principles was published many times but sales not stopped yet. Trere are many companies and peoples which can't allow himself to use solutions with dubious copyrights. Of course many companies and peoples don't think about it. In any

RE: Re[2]: [Flashcoders] Shared fonts

2006-05-29 Thread Bernard Visscher
Hi Ivan, - really it isn't a problem: SFM work principles was published many times but sales not stopped yet. Glad to hear it.. I really mean it! It's a good thing people can get money for their knowledge. Trere are many companies and peoples which can't allow himself to use solutions

Re[4]: [Flashcoders] Shared fonts

2006-05-29 Thread Iv
Hello Bernard, BV In my opinion SFM is too old and can't be successfully used in BV an FAME (or other) enviroment. - SFM is AS2 class compatible for the most hard parser settings in FDT. But for licensed users only :) -- Ivan Dembicki

Re[4]: [Flashcoders] Shared fonts

2006-05-29 Thread Iv
Hello Bernard, - and.. I'm sorry, but your code have imperfections. It's works, but you need support experiance with many languages and different situations for find a problems in your code. It's one more reason for use original solution. -- Ivan Dembicki

RE: Re[4]: [Flashcoders] Shared fonts

2006-05-29 Thread Bernard Visscher
Well, I haven't had any difficulties.. And i've used it in many sites.. But if you say so ;) Bernard -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens Iv Verzonden: maandag 29 mei 2006 21:31 Aan: Flashcoders mailing list Onderwerp: Re[4]:

Re: Re[4]: [Flashcoders] Shared fonts

2006-05-29 Thread Zárate
Hi, Which copyright problems are we talking about? Maybe I´m missing something here. Cheers, On 5/29/06, Bernard Visscher [EMAIL PROTECTED] wrote: Well, I haven't had any difficulties.. And i've used it in many sites.. But if you say so ;) Bernard -Oorspronkelijk bericht- Van:

RE: Re[4]: [Flashcoders] Shared fonts

2006-05-29 Thread Bernard Visscher
Hi Zarate, I don't know either ;) I think Ivan means the principle of my code and the priciple of the sharedfonts system They both use 2 swf's for loading the font. There can't be copyright on that, because that's the only way the flashplayer allows fonts to be dynamicaly loaded. And it's no

Re: [Flashcoders] Getting the selection

2006-05-29 Thread Bart Wttewaall
It's because the button you click will have the focus. So you should return the focus on the textfield before you can get the Selection of the text. [as] underline_btn.addEventListener(click, mx.utils.Delegate.create(this, underline_check)); function underline_check(evt:Object):Void {

Re: Re[4]: [Flashcoders] Shared fonts

2006-05-29 Thread Zárate
I don´t think he means that... at doesn´t make any sense for me. By the way, if you want to avoid using two files per font, take a look to this (french): http://www.v-i-a.net/blog/archives/43.html I did myself almost 2 years ago some RD to use just one file (spanish):

[Flashcoders] Assignment for increment variables when referencing arrays

2006-05-29 Thread Drew Foehn
Hi Guys, I'm wondering if this is a bug or just a language difference between JS and AS, I was pulling my hair out for awhile and wondering what the hell was going on. For example.. for (var j:Number = 0; j arr1.length;) { var currentByte = bitRow[0]; calcCount[j++] += (currentByte

[Flashcoders] ICE Technology released iPushR FlashR API v2.0.1 to help real-time RIA development

2006-05-29 Thread 翁穎晰
Taipei, Taiwan – May 26, 2006 – ICE Technology Corp. officially released iPushR FlashR API v2.0.1. It enables real-time data distribution capability of FlashR applications. “For supporting the development of real-time Rich Internet Application, we have provided iPushR APIs, such as Java

Re: [Flashcoders] geturl:javascript is causing images to not display on IE

2006-05-29 Thread Geoff Stearns
are you making the js call before the page is done loading? the browser might be treating is as an anchor click and stop loading the remaining items on the page (this is normal browser behavior) since you are using Flash 8, why not use ExternalInterface to make the call? in IE that will

[Flashcoders] XML problem

2006-05-29 Thread Olasz Róbert
Hi all! I have a simple XML gallery. Id like to load it to an another movie with loadMovie(gallery.swf, container). After of my loading within main movie the gallery doesnt work. It seems does not find the XML file or does not load the XML file, but the XML is in a same dir. What is the problem?

Re: [Flashcoders] XML problem

2006-05-29 Thread stacey
once you load a movie into another all paths relate to the host movie and no longer to the child. So make sure you're pathing is right. Test the onload for the xml and make sure it can't find the xml- you will get a huge can't find the url error in the output window if that was the case. In terms

Re: [Flashcoders] geturl:javascript is causing images to not display on IE

2006-05-29 Thread Phil Glatz
At 08:56 PM 5/29/2006, Geoff wrote: are you making the js call before the page is done loading? the browser might be treating is as an anchor click and stop loading the remaining items on the page (this is normal browser behavior) Good point! I am doing this after load, but that's very

Re: [Flashcoders] geturl:javascript is causing images to not display on IE

2006-05-29 Thread Phil Glatz
A personal thanks, Geoff - using ExternalInterface saved the day for me. This problem has been bugging me on and off the last few months, and it is finally solved. I was thinking it was CSS for a long time. I'm glad it was something that could be fixed with just two lines of cde. Thanks