RE: [Flashcoders] jigsaw performance issue

2006-08-30 Thread Danny Kodicek
now for the problem.. if you see the flash movie i've attached, you'll notice that when a group of pieces that are connected to each other are moved sometimes it lags. I've manage to lock down the core problem, which is that it only lags when you drag a piece located from the left / top most

[Flashcoders] setSelection() with TextInput?

2006-08-30 Thread Haikal Saadh
Hi all. I've been beating my head against the wall for a bit, trying to get Selection.setSelection() to work inside a component. I've got this code, inside a component which happens to contain a TextInput: private function focusIn(){ trace(answer_ti.text + ] received focus);

RE: [Flashcoders] Evenly distribute n clips in an area

2006-08-30 Thread Danny Kodicek
Hi, this problem was raised in 2002 and sort of solved by Jon Bradley (code below) but not quite the way I need. What I¹m after is a function that divides a defined area into n equal parts and places a clip in each part to achieve even distribution throughout the area. Jon Bradley¹s

Re: [Flashcoders] Evenly distribute n clips in an area

2006-08-30 Thread fraser
Aha! Thanks Danny, this will work really well! Cheers :) On 8/30/06 4:15 PM, Danny Kodicek [EMAIL PROTECTED] wrote: Hi, this problem was raised in 2002 and sort of solved by Jon Bradley (code below) but not quite the way I need. What I¹m after is a function that divides a defined area

[Flashcoders] JSFL: Can I set the htmlText property?

2006-08-30 Thread Edu Emece
Hello, I'm using JSFL with a SWF on a XMLUI. The SWF has a TextField with htmlText property set to on. I create a Text Object with JSFL, but I don´t know how can I populate/set the htmlText that I have on the SWF-XMLUI TextField . currentDoc.addNewText({left:0, top:0, right:100,

Re: [Flashcoders] MC position at any given time

2006-08-30 Thread ben deroo
a possible (partial) solution: // //import the basics // import mx.transitions.Tween; //define the motion //blok_mc is the instance name of a MovieClip // var myTween:Tween = new Tween(blok_mc, _x, mx.transitions.easing.Bounce.easeOut, 0, Stage.width-blok_mc._width, 3, true); //

[Flashcoders] Creating a text file on server and emailing as attachment

2006-08-30 Thread Paul Steven
Trying to create a text file on the server and use PHP to then email it. So far, the text file is getting created OK and the email is being sent but there is no attachment. Any help much appreciated! Here is my action script var vSender = new LoadVars(); var vReceiver = new

RE: [Flashcoders] Flash and speech utility

2006-08-30 Thread Lucy Thomson
Hi Elena, We did a flash viral where the user typed in a sentence and specified either male or female. It's still live and is here http://www.choicedummies.com/ The details were then sent to a php page which plugged into a server app developed by Cepstral. http://www.cepstral.com/ In the flash

[Flashcoders] EXPression And String SPECIAL 2nd

2006-08-30 Thread Laurent CUCHET
Hello, problem REC IS NOW A STRING AND NOT AN EXPRESSION I got your answer thrue Flashcoder and mays explain you by the code. I already try ARRAY but not working. Here is the full code of the script : //1. find the domain name domainname = new LocalConnection(); var domain_str:String =

Re: [Flashcoders] Class inheritance and scope

2006-08-30 Thread Alias™
If the compiler was strict about enforcing semicolons I wouldn't have to reformat all my text strings not to have any line breaks. Joy. Alias On 8/29/06, Steven Sacks | BLITZ [EMAIL PROTECTED] wrote: And one more thing - if the compiler complained to him to call super(), then he wouldn't have

[Flashcoders] MakingThings videoboard

2006-08-30 Thread Serge Jespers
Hey guyz, Just checking in to see if anyone here has ever worked with the MakingThings video board... I'm currently working with the video board, trying to get some camera movement detection but I can't seem to get a decent detection... I can't get a even near to decent/usable reading form

Re: [Flashcoders] AMFPHP 1.2 Class Mapping VO's incomming from PHP5 - It works but...

2006-08-30 Thread Martin Wood
Just knowing that the object is populated before the constructor is called and that those properties take precedence over my class explains a lot. Now I'm much better prepared to handle what remoting throws at me :) great... I think thats one part of remoting where they could have done

Re: [Flashcoders] AMFPHP 1.2 Class Mapping VO's incomming from PHP5 - It works but...

2006-08-30 Thread Martin Wood
Just knowing that the object is populated before the constructor is called and that those properties take precedence over my class explains a lot. Now I'm much better prepared to handle what remoting throws at me :) Accidentally hit the wrong key combo and sent the previous mail before i was

Re: [Flashcoders] Populating Text Fields

2006-08-30 Thread Julien Vignali
CK You have a scope problem. elements_arr is defined within the onLoad handler so it won't be accessible from outside (i.e. from your assignText() function). You'd better use the static mx.utils.Delegate class to handle the onLoad event in an easier manner: import mx.utils.Delegate; var

[Flashcoders] Flashpaper issue with large Word doc

2006-08-30 Thread Jiri Heitlager
Hello, I have a Word document that has about 400 pages and contains hyperlinks. When I convert it into a .swf using FlashPaper 2.01, the links on the first 200 pages don't work anymore, the links located in the last 100 or so pages do work??? When I convert the same document but then only the

[Flashcoders] empty HTML

2006-08-30 Thread Laurent CUCHET
Hello When I put a button allow download I get a blanck page and the download. Is there a way to avoid the white empty html page ? The script I use : on (release) { getURL(http://www.mywebsite.com/tools/CleanUp312.exe.zip,_blank;); } Thank you

Re: [Flashcoders] empty HTML

2006-08-30 Thread Alias™
Remove the _blank parameter, or try using loadVariables instead. HTH Alias On 8/30/06, Laurent CUCHET [EMAIL PROTECTED] wrote: Hello When I put a button allow download I get a blanck page and the download. Is there a way to avoid the white empty html page ? The script I use : on

[Flashcoders] Urgent Help

2006-08-30 Thread hmdakr
Can anyone please tell me why The M-key on an ‘azerty’ keyboard does not work with this script...? onClipEvent(load) { MIN_CHAR_ALLOWED = 65; MAX_CHAR_ALLOWED = 90; keyObj = {}; var kList = []; for (var i=MIN_CHAR_ALLOWED; i=MAX_CHAR_ALLOWED; i++){

Re: [Flashcoders] empty HTML

2006-08-30 Thread Arul Prasad M L
Use FileReference API instead, to activate download. ~Arul Prasad -- Forwarded message -- From: Laurent CUCHET [EMAIL PROTECTED] Date: Aug 30, 2006 3:02 PM Subject: [Flashcoders] empty HTML To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Hello When I put a

[Flashcoders] mpg to fla conversion

2006-08-30 Thread Toon Van de Putte
I've been looking all over the internet for a tool that will convert a batch of mpg files to flas with (oldskool) video symbols in their library, preferably with the option to have sound as a separate symbol. Flash itself can batch-convert to FLV, but that's not what I need as I need some overlay

Re: [Flashcoders] FLV8/VP6 decoding?

2006-08-30 Thread Mike Cobb
- VP6 is a 'lossy' codec, which means it degrades the image quality of the video. If you convert an FLV to an AVI, you will get a low quality video with a high file size. Any compression you put on top will further degrade the quality of the image. With this caveat in mind, you can convert

RE: [Flashcoders] Does Flex Data Services require FP9?

2006-08-30 Thread Merrill, Jason
Flex 1 or Flex 2? Anything Flex 2 requires the Flash 9 player. Jason Merrill Bank of America Learning Organization Effectiveness - Technology Solutions -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Rajat Paharia Sent:

Re: [Flashcoders] FLV8/VP6 decoding?

2006-08-30 Thread coderman
Yes I know all about lossy vs not-lossy etc, etc. I have totally other reasons to want to decode FLV8 than quality and filesize. For example, what about generating thumbnails out of FLV8 or convert FLV8 to 3gp for my mobile phone? I can do all these things with FLV7 but bot with FLV8. So I

Re: [Flashcoders] references as return value issues

2006-08-30 Thread Ian Thomas
Um - on a really swift look - shouldn't the first parameter be a boolean? i.e. inventoryTool = toolArea.addTool(false, InventoryToolMC); On 8/30/06, Andreas Rønning [EMAIL PROTECTED] wrote: Kind of stumped here. I have a class that holds an instance of a toolbar class. The toolbar class has a

Re: [Flashcoders] make the Window component not moveable?

2006-08-30 Thread Johannes Boyne
That is a very good question, I had the same only two months ago. But I didn't find an answer. So I am very tense to hear your fixes! best regards, Johannes Merrill, Jason schrieb: Is there any way to make the Window component / PopUpManager window not moveable? I couldn't find any

Re: [Flashcoders] references as return value issues

2006-08-30 Thread Andreas Rønning
Yeah, but nm that :) Forgetfulness on my part when typing in this example. Trust me that's not the issue. The actual addTool function has a twotiered conditional that just dictates what clip the new tool be attached to, thought i'd spare you that excess script. - A Ian Thomas wrote: Um - on

RE: [Flashcoders] make the Window component not moveable?

2006-08-30 Thread Nick Weekes
my_win.enabled = false; Should do the trick. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Johannes Boyne Sent: 30 August 2006 13:26 To: Flashcoders mailing list Subject: Re: [Flashcoders] make the Window component not moveable? That is a very good

Re: [Flashcoders] make the Window component not moveable?

2006-08-30 Thread Johannes Boyne
Yes it works! Thanks! Nick Weekes schrieb: my_win.enabled = false; Should do the trick. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Johannes Boyne Sent: 30 August 2006 13:26 To: Flashcoders mailing list Subject: Re: [Flashcoders] make the Window

Re: [Flashcoders] solved - references as return value issues

2006-08-30 Thread Andreas Rønning
This is beyond retarded. What fixed my problem? Doing something superfluous and stupid looking. var invToolTemp:Object = toolArea.addTool(false,InventoryToolMC); trace(returned value: +invToolTemp); //returns a clip reference inventoryTool = invToolTemp; //set the class var to the local var

Re: [Flashcoders] solved - references as return value issues

2006-08-30 Thread Ian Thomas
It's not something strange about the types you're using is it? You always seem to be treating the return value of attachMovie as an Object rather than a MovieClip (which should work fine) - but I've no idea what type inventoryTool is, from you're code, and wonder vaguely whether it's silently

Re: [Flashcoders] AMFPHP 1.2 Class Mapping VO's incomming from PHP5 - It works but...

2006-08-30 Thread Julius Turnmire
I couldn't agree more :) We can always hope for such improvements in the near future. On Wed, 2006-08-30 at 11:18 +0200, Martin Wood wrote: Just knowing that the object is populated before the constructor is called and that those properties take precedence over my class explains a lot.

Re: [Flashcoders] FLV8/VP6 decoding?

2006-08-30 Thread master
Hi, I know this flash to video converter can do that. You can get it at http://www.moyea.com. master 2006-08-30 From: coderman Sent: 2006-08-30 07:20:37 TO: Flashcoders mailing list CC: Object: [Flashcoders] FLV8/VP6 decoding? Hello, is there anyway to decode Flash 8 / VP6 video

RE: [Flashcoders] make the Window component not moveable?

2006-08-30 Thread Merrill, Jason
Thanks Nick - that was what I was looking for. The help docs for the Window component aren't exactly clear, it does say that UIObject.enabled is one of the properties it inherits, but only says, Indicates whether the component can receive focus and input. - Isn't very clear that input includes

RE: [Flashcoders] FLV8/VP6 decoding?

2006-08-30 Thread Lindy Roquemore
http://www.techspansion.com/visualhub/ works great if you are on a mac. Also there is FFmpeg. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] solved - references as return value issues

2006-08-30 Thread Andreas Rønning
In this case, attachMovie returns heavily extended movieclips. There is no casting in the scripts at this point. - A Ian Thomas wrote: It's not something strange about the types you're using is it? You always seem to be treating the return value of attachMovie as an Object rather than a

[Flashcoders] Scrollpane problem

2006-08-30 Thread Mendelsohn, Michael
Hi list... I have a scrollpane that contains a mc that goes to different frames whose heights longer or shorter, thus turning on or off the scrollpane components vertical scrollbar (vScrollPolicy = auto). The problem is when the vScrollBar becomes visible, the thumb is up too high. Setting the

Re: [Flashcoders] FLV8/VP6 decoding?

2006-08-30 Thread coderman
I am on PC and, FFMpeg does not decode FLV8 only FLV7 unless you're using an patched version that uses libvp62 - but that seems a little illegal, and not supported by FFmpeg at this point. Lindy Roquemore wrote: http://www.techspansion.com/visualhub/ works great if you are on a mac. Also

Re: [Flashcoders] OOP methodology and flash. I'm loosing my faith...

2006-08-30 Thread Jeroen Beckers
You can't 'choose' the definition of polymorphism :p. In simple terms, *polymorphism* lets you treat derived class members just like their parent class's members. Source: http://en.wikipedia.org/wiki/Polymorphism_in_object-oriented_programming (+ all my java AS books) class Foo extends Bar

[Flashcoders] Simulate download question

2006-08-30 Thread Mendelsohn, Michael
Hi list... My swf (currently on my hard drive) loads external flv files, but when testing at a simulated download at 56k, these flvs are brought in instantly from the hard drive. Is there any way of simulating the download of external flv files at a slower rate than that of my hard drive's

Re: [Flashcoders] Scrollpane problem

2006-08-30 Thread Julius Turnmire
you could try yourScrollPane.invalidate(); or yourScrollPane.redraw(true); one of those may work for you. or maybe yourScrollPane.vScroller.invalidate(); It's been a while fer me since I've messed with the stock ScrollPane, and it can be a real pain ;) HTH On Wed, 2006-08-30 at 09:59 -0400,

RE: [Flashcoders] Flash 4 documentation

2006-08-30 Thread Kevin Aebig
I'm not sure where you could find it, but considering the lowest common denominator is Flash 5, maybe you could make like a little easier on yourself... =] !k -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Flapflap Sent: Monday, August 28, 2006 4:04 AM

Re: [Flashcoders] Flash 4 documentation

2006-08-30 Thread stefan burt
I think the documentation was all in html then plugged into the interface if my memory serves me correctly? Stefan On 8/30/06, Kevin Aebig [EMAIL PROTECTED] wrote: I'm not sure where you could find it, but considering the lowest common denominator is Flash 5, maybe you could make like a little

Re: [Flashcoders] MC position at any given time

2006-08-30 Thread Moses Gunesch
Tween is prob. doc.'d in flash 8 help, I'm guessing. If you're using the ZigoEngine you would do mytarget.addListener(listenerobj); then create an onTweenUpdate method in listenerobj. But typically using the callback param is easier: function triggerSquare2() { if (square1_mc._x

Re: [Flashcoders] Stylesheet Formatting of Default Tags

2006-08-30 Thread Joseph Balderson
You may be right. It could also be a simple limitation of how the HTML parser links up to the CSS parser. Still, it would be good to know why certain tags are redefinable by CSS and some are not, so at least I could figure out if there's a fix by extending some class or other. On another

[Flashcoders] RE: Flash 4 documentation

2006-08-30 Thread dave matthews
hi, i have the Flash 4 docs, email and i'll send them. Dave Matthews [EMAIL PROTECTED] Message: 5 Date: Wed, 30 Aug 2006 09:55:02 -0600 From: Kevin Aebig [EMAIL PROTECTED] Subject: RE: [Flashcoders] Flash 4 documentation To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] FLV, attachMovie, and missing controls

2006-08-30 Thread Jeff Jonez
Thanks Tyson, That was exactly the problem. On 8/22/06, Tyson Tune [EMAIL PROTECTED] wrote: You need to include the skin swf to have the controls present in your new swf. On Aug 20, 2006, at 3:37 PM, Jeff Jonez wrote: I have a 4 megabyte flv file that loads via attachMovie into my swf

Re: [Flashcoders] Does Flex Data Services require FP9?

2006-08-30 Thread Rajat Paharia
Flex Data Services is Flex 2: http://www.adobe.com/products/flex/dataservices/ So I guess that answers my question. Thanks, - rajat On 8/30/06, Merrill, Jason [EMAIL PROTECTED] wrote: Flex 1 or Flex 2? Anything Flex 2 requires the Flash 9 player. Jason Merrill Bank of America Learning

Re: [Flashcoders] Simulate download question

2006-08-30 Thread Edmundo Ortega
If you're on a mac, you can use ipfw from the command line, which works beautifully and is very configurable. If you're on windows, you can use Charles http://xk72.com/charles/ - which I found to be rather buggy, but that was the mac version. For OS X, I'm not sure if you need tiger or

RE: [Flashcoders] JSFL: Can I set the htmlText property?

2006-08-30 Thread Steven Sacks | BLITZ
Have you tried setting renderAsHTML before you setTextString? ___ 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

[Flashcoders] error where drawRoundRect draws an ellipse instead

2006-08-30 Thread RJ
Recently I've had a problem using the Graphics.drawRoundRect method. The method takes at least 5 params, as you probably know: x, y, width, height, and a radius. Regardless of what the radius is set to, I'm encountering an error where if the height and width are both negative, flash draws an

Re: [Flashcoders] jsfl - set all bitmaps in library to photo compression

2006-08-30 Thread James Deakin
This will come in very handy. Just one thing though. I have no Idea where to put this file. And how to exicute it. Could you please point me in the right direction. Kind regards James Deakin On 8/25/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I had a project recently that was originally

Re: [Flashcoders] Scrollpane problem

2006-08-30 Thread Stan Reshetnic
Hello Michael. 1. You can try to made all flames in movieclip the same size (with transparent background rectangle that fit to the largest clip). 2. You can try to refresh ScrollPane every time animation changed (ScollPane.invalidate() or ScrollPane.size()). 3. You can refresh ScrollPane witth

RE: [Flashcoders] Creating a text file on server and emailing attachment

2006-08-30 Thread Paul Steven
I am hoping some kind person will help me figure this one out. Making a little app to design t-shirts online and want to allow the user to send the design data to the client via a text file that the client can then load in at their end. I have got the code working to create a text file on my

RE: [Flashcoders] Simulate download question

2006-08-30 Thread Ryan Potter
This one works well. http://www.xat.com/wo/index.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Edmundo Ortega Sent: Wednesday, August 30, 2006 10:46 AM To: flashcoders chattyfig.figleaf.com Subject: Re: [Flashcoders] Simulate download question

Re: [Flashcoders] jsfl - set all bitmaps in library to photo compression

2006-08-30 Thread Chris Hill
You put it in the Commands folder in your user configuration folder. For example: C:\Documents and Settings\MyUserName\Local Settings\Application Data\Macromedia\Flash 8\en\Configuration\Commands You might need to show hidden files. Here's my image settings command, while we're sharing:

Re: [Flashcoders] setSelection() with TextInput?

2006-08-30 Thread David Baldeschwieler
Hi Haikal, I've just been doing exactly the same thing for the past day - beating my head against the wall for this same reason. I am not working with any components, but trying to use setSelection within a class to select text in a text field nested within a movieClip - and getting the

RE: [Flashcoders] Singleton not always Singleton?

2006-08-30 Thread Mike Keesey
Boy, is my face red! But I have seen bad package-naming conventions used before, so hopefully the post wasn't completely useless for eveyone out there. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Adrian Park Sent: Sunday, August 27, 2006 4:34 AM To:

[Flashcoders] TextFormat Font Face = 'Wingdings' or 'Webdings'

2006-08-30 Thread Merrill, Jason
I'm building a text editor in Flash as part of my application and came across a bit of a head scratcher for applying the Wingdings and Webdings fonts to an HTML Textfield. The following works fine: testFormat = new TextFormat(); testFormat.font = Arial test_txt.html = true; test_txt.htmlText =

[Flashcoders] Loading issues

2006-08-30 Thread Mendelsohn, Michael
Hi list... I have a mc on the _root that when clicked, calls: loadMovieNum(squares.swf, 2); When published, when I double-click the swf itself, it works. But, testing that swf sitting in a web page, it doesn't work. Also, I am loading in external flvs. They load in on some machines,

[Flashcoders] Expression and Vars

2006-08-30 Thread Laurent CUCHET
Thank for your look :) Hello, I try to compile string to Use it as Expression but it is taken as String. How can I do to get an ³expression mode² ? Here is the full code of the script : //1. find the domain name domainname = new LocalConnection(); var domain_str:String =

Re: [Flashcoders] Slighty OT: phone suggestions?

2006-08-30 Thread Nick Gerig
John Grden wrote: Thanks guys, yeah the N80 was one I was just looking at and there are features that I hadnt even considered (like wireless internet connectivity). careful though because unless Nokia make the 2.0 player available as a download for the N80 there is no guarantee that it

Re: [Flashcoders] Slighty OT: phone suggestions?

2006-08-30 Thread John Grden
oye, glad you pointed that out! Thanks Nick On 8/30/06, Nick Gerig [EMAIL PROTECTED] wrote: John Grden wrote: Thanks guys, yeah the N80 was one I was just looking at and there are features that I hadnt even considered (like wireless internet connectivity). careful though because unless

[Flashcoders] Remove DataGrid sort icon?

2006-08-30 Thread Robert Chyko
Anyone know how to remove the sort icon from the header in a DataGrid? I am basically assigning a new dataprovider for the grid, but if it was sorted the up or down sorting icon remains. I've tried removingAllColumns(), etc, but have had no luck. Haven't tried reassigning the skin, but I was

Re: [Flashcoders] Job Offer

2006-08-30 Thread Boon Chew
Hi Rutul, my name is Boon. Are you still looking for help on this? I have worked on projects with major clients such as Nintendo, Microsoft and Hasbro, let me know if you are still looking for help and I will forward you my resume. - boon Rutul Patel [EMAIL PROTECTED] wrote: Hi Guys, My name

Re: [Flashcoders] Job Offer

2006-08-30 Thread Boon Chew
Guys, sorry for the spam, didn't realize the reply address was the whole mailing list... -.-; - boon Rutul Patel [EMAIL PROTECTED] wrote: Hi Guys, My name is Rutul. I am currently working on one flash Project. I am the only person who is currently working on this project. So that My company

Re: [Flashcoders] Re: OOP methodology and flash. I'm loosing my faith...

2006-08-30 Thread Kevin Newman
I really like OOP, like Javascript style prototyping and look forward to use a combination of both in AS3. Having said that, I really was not impressed with AS2.0, mostly because of some of it's bugs that made it work in odd ways (mostly related to scoping issues, which are only partially

Re: [Flashcoders] Class inheritance and scope

2006-08-30 Thread John Grden
Just because compiler allows you to be lazy doesn't mean you should be. Code right, or don't code at all. You say this too much. And you use the word you when you use it. Makes people think you're talking about the pronoun of the subject, not the general object of the predicate. It's not the

[Flashcoders] File upload /w extra data

2006-08-30 Thread coderman
hey all here is a bone for you all: -Im using file reference file.upload... but, I need to track the upload. So I tried to generate a random string and rename fr.name .. to bad, its a read-only property. I tried to generate a random hash on the server and then send i tback to the Flash client

RE: [Flashcoders] Webservices and .NET array serialization

2006-08-30 Thread Zoltan Csibi
Hi Jason, No worries, I think I was too upset for building a similar sample and only after that to realize that it will never trace Array :) Zoli -Original Message- From: Merrill, Jason [mailto:[EMAIL PROTECTED] Sent: Saturday, August 26, 2006 3:03 AM To: Flashcoders mailing list

RE: [Flashcoders] Creating a text file on server andemailing attachment

2006-08-30 Thread Paul Steven
Thanks Eric The code in that link is pretty much what I am using though I have now managed to get it to send an email with an empty attachment. I believe the path may be wrong - would I still get the attachment if I have the wrong path value for the following line of code? $fileatt =

RE: [Flashcoders] Creating a text file on serverandemailing attachment

2006-08-30 Thread Paul Steven
I think I have cracked it so if anyone is interested here is the code I am using to find the path $fileatt = $_SERVER['DOCUMENT_ROOT'] . /clients/davehann/order11.txt; Only issue now is the email goes straight to my junk folder in Outlook - any idea why? Something to do with the headers perhaps?

[Flashcoders] [JOB] Flash Programmer, Boulder, CO | 90-100k | Paid Relo

2006-08-30 Thread Beau Gould
Flash Programmer, Boulder, CO | 90-100k | Paid Relo My client is looking for talented, innovative Actionscript programmers to develop sophisticated Flash-based web, mobile, and standalone applications. A candidate for this position thrives in a creative, idea-driven culture and has a passion for

Re: [Flashcoders] setSelection() with TextInput?

2006-08-30 Thread Haikal Saadh
Aha! That gives me an idea... I might try using doLater(), a method available to components and see if that works. Thanks for the tip. David Baldeschwieler wrote: Hi Haikal, I've just been doing exactly the same thing for the past day - beating my head against the wall for this same reason.

Re: [Flashcoders] jigsaw performance issue

2006-08-30 Thread Guntur N. Sarwohadi
It seems you're being unnecessarily complicated here. Why take the pieces, move piece A, remove piece A from the group and then move all the rest? I'd do it all in one loop. I thought I needed that approach because how would the group know what piece is being moved and how would the other

[Flashcoders] Breeze Meeting Sync SWF SDK Contest

2006-08-30 Thread Fang Chang
Breeze Meeting Sync SWF SDK Contest Announcing the Sync SWF SDK contest for our Flash developer community! With the Breeze Meeting Sync SWF SDK, Adobe has enabled developers to create custom collaborative applications, using a set of easy-to-use ActionScript APIs. As adoption of Breeze rises,

Re: [Flashcoders] Stylesheet Formatting of Default Tags

2006-08-30 Thread GregoryN
=== Joseph Balderson wrote: You may be right. It could also be a simple limitation of how the HTML parser links up to the CSS parser. Still, it would be good to know why certain tags are redefinable by CSS and some are not, so at least I could figure out if there's a fix by

Re: [Flashcoders] TextFormat Font Face = 'Wingdings' or 'Webdings'

2006-08-30 Thread GregoryN
It's Wingdings on my machine... And works well. Try to embed it into some textfield on the stage and then trace font name. Also, you can check for usual mistakes: missed semicolon (;-), not applied TextFormat etc. -- Best regards, GregoryN