[Flashcoders] Re: Blur effect via action scripting

2007-05-03 Thread Glenn Grant
you don't even need a tween package for this (altho they sure are useful things). read about BitmapData, BlurFilter, and Repeating actions using loops in the Flash Help. gg OOoops!!! I am sorry. It is not blue but blur. I have three good quality image in my application. Initially I want all

[Flashcoders] Exporting alpha channel video from flash

2007-04-04 Thread Glenn Grant
exporting a .png sequence works, but that is clunky. yes, i know about wmode, that doesn't seem to have anything to do with this. does anybody know the trick? thanks, glenn grant ___ Flashcoders@chattyfig.figleaf.com To change your subscription options

RE: [Flashcoders] setting a timer in flash 8

2007-03-25 Thread Glenn Grant
hi gustavo, your first problem is that you have a gotoAndPlay loop. that means that every time you go back to frame 1 you are re-creating your now variable, so it is never going to have a chance to get bigger. secondly, the timer does need to be updated checked inside your onEnterFrame (i used a

[Flashcoders] LoadVars.send vs. LoadVars.sendAndLoad

2006-11-29 Thread Glenn Grant
I use .sendAndLoad to load a shopping cart so it will not pop a new browser window each time the user adds an item. this works fine locally, but online the items are not being added to the cart. if i use .send instead of .sendAndLoad everything works fine except for the aforementioned launching of

[Flashcoders] flash paypal shopping cart security

2006-11-25 Thread Glenn Grant
i am trying to use the paypal cart with flash 8. my code looks like this: System.security.allowDomain(paypal.com); var myLoadVars:LoadVars = new LoadVars(); var cartVars:LoadVars = new LoadVars(); function loadCart(){ myLoadVars.bn = PP-ShopCartBF; myLoadVars.lc =

Re: [Flashcoders] Net Debugger not working

2006-08-16 Thread Grant Cox
I had something similar at the beginning of the year, when first using Flash 8. http://chattyfig.figleaf.com/pipermail/flashcoders/2006-January/158090.html http://chattyfig.figleaf.com/pipermail/flashcoders/2006-January/158265.html Perhaps it's a similar issue? Regards, Grant Cox Elena

Re: [Flashcoders] diff between var == value VS var eq value

2006-08-14 Thread Grant Cox
eq has been deprecated in favour of == for many years now. While they should be equivalent, you should not use eq unless you are targeting Flash Player 4/5. Is the code where == didn't work for Flash lite? dnk wrote: Is there a difference? I have had some code that will not work using the

[Flashcoders] Tree component icons

2006-07-26 Thread Grant Davies
Is it possible to mark a tree node as Special so I can apply different icons ? I have a tree that has the hierarchy Groups |__Roles |_ Permissions An I want each level to have a different icon. Can this be done, and do I have to do a custom tree renderer ? Grant

Re: [Flashcoders] AS2 and Singleton woes ...

2006-06-29 Thread Grant Cox
I had that with my last post too, I got a bounce around 5-10 minutes later. However, I received my message through the mailing list before the bounce arrived, so I assumed it had worked. Stephen Ford wrote: Sorry if you've read the same message from me three times. I keep getting a reply

[Flashcoders] Disable a menu with MM V2 Menu component.

2006-06-28 Thread Grant Davies
= menuBar.addMenu(MyAccount, myAccountXML); myAccountMenu.setEnabled(false); The menu is still active, looks active and works, even though I'd expect it to be grey and inactive. anyone have a clue or should I start hacking the MM v2 menu code ? Grant

[Flashcoders] Movie clip loader onLoadError not called in firefox

2006-06-19 Thread Grant Davies
this, is there a simple work around? I need to support firefox users. thanks, Grant ___ 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

Re: [Flashcoders] Where to politely and appropriately discuss pricing issues

2006-06-01 Thread Grant Cox
into this, and not be able to recommend another freelancer? Regards, Grant Cox Claus Wahlers wrote: That's interesting.. i usually do the exact opposite (of course, this is me, and probably doesn't apply to everyone and everything). I usually offer new clients my regular rate and offer discounts when i feel

Re: [Flashcoders] Fwd: Loading Text files into swfs then loading swfs into other swfs...

2006-06-01 Thread Grant Cox
Are all files in the same folder? When it reports that the file cannot be found, it should give a path in the trace statement - make sure this is where the file actually is. The load call will be from the location of the holder movie, not the ticker.swf. Regards, Grant Cox Craig Stanford

Re: [Flashcoders] Fwd: Loading Text files into swfs then loading swfs into other swfs...

2006-06-01 Thread Grant Cox
://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html#117502 ) have Always Allow ticked, and you add c:\ to your trusted locations. Hope that helps. Regards, Grant Cox Craig Stanford wrote: Yeah all the files are in the same folder. Its strange cos it works fine

Re: [Flashcoders] Re: Timeline coding

2006-04-18 Thread Grant Cox
( blah ); } will trace _level0.clip_mc.btn1_btn 1 when you click. Of course, you don't have to worry about the scope of _root.variableName, as you are providing the absolute path to the variable. Regards, Grant Cox. Jonathan Berry wrote: I just had a thought on this. Perhaps I just need

Re: [Flashcoders] flash file to recognize SESSION or REQUEST variables?

2006-04-10 Thread Grant Cox
you need extra URL parameters passed to the server, well, that's nothing to do with flash. Regards, Grant Cox Sunnrunner wrote: A client asked me this question. Does anyone know what it means or can someone explain and give me an answer. Thanks. T How can we get the link in the URL

Re: [Flashcoders] allowing slow animation

2006-04-09 Thread Grant Cox
embedding fonts - You set the font to appear aliased - You are using a pixel font (unless flash fudges the anti-aliasing...) But as you mentioned, it would be great to have a .fla of the exact circumstances to test ourselves. Regards, Grant Cox elibol wrote: I tested it Grant, however, my dynamic

Re: [Flashcoders] allowing slow animation

2006-04-06 Thread Grant Cox
tween. Regards, Grant Cox PR Durand wrote: Snap to pixel ??? Thanks for your answer but I thought it was just for the flash IDE, to place the object... however I can't see any difference in the animation with or without the pixel snaping enabled. Till there, the only difference from the same

Re: [Flashcoders] If not Zinc, then what?

2006-04-03 Thread Grant Cox
to a third party. Regards, Grant Cox Darren Cook wrote: Support I can live without but I wondered what the major bugs were that you found? I've started using it on a project and was pleased with it. But my current usage is relatively simple

Re: [Flashcoders] Flash and input type=file....

2006-04-03 Thread Grant Cox
it was part of the flash. It was fairly hacky, and I don't think it was cross-browser compatible. Regards, Grant Cox Manuel Saint-Victor wrote: Do you mean like a filebrowser window? import flash.net.FileReference; var myFileReference:FileReference=new FileReference(); myFileReference.browse

Re: [Flashcoders] lil' help with amfphp... works locally, not uploaded...

2006-03-29 Thread Grant Cox
://www.macromedia.com/xml/dtds/cross-domain-policy.dtd; cross-domain-policy allow-access-from domain=* / /cross-domain-policy Regards, Grant Cox Count Schemula wrote: http://www.flash-creations.com/notes/servercomm_remoting_amfphp.php I have the above file working well on a local test server. Flash 8

Re: [Flashcoders] If not Zinc, then what?

2006-03-28 Thread Grant Cox
more than basic fscommands to the standard Flash projectors. Regards, Grant Cox Chris Velevitch wrote: On 3/29/06, Gene Jannece [EMAIL PROTECTED] wrote: I've been reading pros and cons of using Zinc, I started to wonder what are the pros and cons of other projectors? Flash

Re: [Flashcoders] Simple date comparison bug?

2006-03-23 Thread Grant Cox
, not if the two objects have the same attributes. Oh, and Ryan, is your fourth line meant to be trace( d1 = d2 ); or trace( d1 == d2 ); ? Regards, Grant Cox Ryan Matsikas wrote: var d1:Date = new Date( 1970, 0 ); var d2:Date = new Date( 1970, 0 ); trace( d1.toString() == d2.toString() ); // true

Re: [Flashcoders] DataGrid Component Performance

2006-03-15 Thread Grant Cox
, as should any kind of manual row highlighting (ie alternate row colours). Regards, Grant Cox varfoo wrote: Anyone have a feel for how this component performs. Can you expand rows? Can it handle thousands of rows? ___ Flashcoders

Re: [Flashcoders] Encrypting data

2006-03-14 Thread Grant Cox
modified, and don't worry about it :) Regards, Grant Cox Dave Mennenoh wrote: MD5 isn't going to help encrypting a high score is it? It's a one way hash... Dave - Adobe Community Expert www.blurredistinction.com www.macromedia.com/support/forums/team_macromedia

[Flashcoders] How does remoting access class members ?

2006-03-04 Thread Grant Davies
Grant ___ 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

RE: [Flashcoders] Z sorting multiple overlapping movie clips

2006-03-01 Thread Grant Davies
is preserved just like in a windowing system. Cheers, Grant -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Karthik Sent: Wednesday, March 01, 2006 4:27 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] Z sorting multiple overlapping movie clips

RE: [Flashcoders] Z sorting multiple overlapping movie clips

2006-03-01 Thread Grant Davies
Ok so you are doing it with the item just below the top, how does that put your selected item on the top ? Grant -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ramon Miguel M. Tayag Sent: Thursday, March 02, 2006 12:26 AM To: Flashcoders mailing list

RE: [Flashcoders] Z sorting multiple overlapping movie clips

2006-03-01 Thread Grant Davies
: Thursday, March 02, 2006 12:26 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] Z sorting multiple overlapping movie clips why not mc.swapDepths(getNextHighestDepth() ) ? Do you have that many movieclips? On 3/2/06, Karthik [EMAIL PROTECTED] wrote: On 02/03/06, Grant Davies [EMAIL

[Flashcoders] Z sorting multiple overlapping movie clips

2006-02-27 Thread Grant Davies
Grant ___ 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

Re: [Flashcoders] how to make single cell in the grid non editable?

2006-02-23 Thread Grant Cox
The only way I've done it is by making the entire datagrid non-editable, and listening for a double click on a single cell. When this happens, if that cell can edited that column is set to editable, and the appropriate cell is selected. On a mouse deselect (onBlur?) the column is set back to

Re: [Flashcoders] Re: Installing Custom Ant Tasks in Eclipse

2006-02-23 Thread Grant Cox
folder structure is: /build /deploy /src /com /dependencies /lib /server And I only want it to preprocess .as files from the /src and /src/com (not dependencies, lib or server), copy any .swf files (in case MTASC needs them as base files) and ignores the rest. Regards, Grant Cox

Re: [Flashcoders] getting the actual width of a scaled child clip

2006-02-22 Thread Grant Cox
If you use localToGlobal you can find the dimensions in root coordinates. /// var topleft = {x: inner._x, y: inner._y}; var bottomright = {x: inner._x + inner._width, y: inner._y + inner._height}; inner._parent.localToGlobal(topleft);

Re: [Flashcoders] getting the actual width of a scaled child clip

2006-02-22 Thread Grant Cox
just multiply the width/height by the scale.. var w = subClip._width * subClip._parent._xscale / 100; var h = subClip._height * subClip._parent._yscale / 100; Sorry for the psuedo code. On 2/22/06, Rich Rodecker [EMAIL PROTECTED] wrote: ah, nice one. On 2/22/06, Grant Cox [EMAIL PROTECTED

Re: [Flashcoders] OT: Design patterns

2006-02-22 Thread Grant Cox
, bastardise others to something I like, and ignore the rest. We're not making works of art here - as long as the project is done to time and budget and isn't a complete dog's breakfast then it's fine :) Regards, Grant Cox Anggie Bratadinata wrote: If I don't plan to extend my app. nor

Re: [Flashcoders] Strange actionscript vs tweening problem Flash8

2006-02-16 Thread Grant Cox
is on a whole layer... Regards, Grant Cox T. van Zantvoort wrote: I just simply use for (i=1; i10; i++) { this[b+i].onRelease = function() { play(); }; } This is for button 1 through 9 and then on the timeline there's a tween with all the buttons that go to an other

Re: [Flashcoders] Issue with two instances on a timeline

2006-02-16 Thread Grant Cox
to the outer movieclip (or vice versa), and it should work ok. But unfortunately it is still a pain. But then, that's animating in Flash for you :) Regards, Grant Cox Meinte van't Kruis wrote: Hi folks, I've had this problem for a long time and it keeps on coming back once in a while

Re: [Flashcoders] redraw/update DataGrid to reflect change of data?

2006-02-16 Thread Grant Cox
If all you want is for the datagrid to refresh from the data already in it's dataProvider (ie, each grid row updates to what you want when you rollover), then try: var current_vpos = myGrid.vPosition; myGrid.dataProvider = myGrid.dataProvider; myGrid.vPosition = current_vpos; Regards, Grant

Re: [Flashcoders] flv video encoding for flash 7

2006-02-15 Thread grant
for that where : Sorenson spark codec, frame rate same as source (29.xx), keyframe placement automatic, quality, custom, 1000 kilobits per sec, no video resize, audio mp3, 128kbs stereo. Thanks Grant. - Original Message - From: Fabio Sonnati [EMAIL PROTECTED] To: Flashcoders mailing list

[Flashcoders] flv video encoding for flash 7

2006-02-14 Thread grant
a good quality flv ? Or is that site really using the on2 Vp6 codec ? Is there a way to tell in an flv is on2 or sorenson without some special tools ? Grant. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search

Re: [Flashcoders] vardump an object in ActionScript?

2006-02-12 Thread Grant Cox
Yeah, a for...in loop is what you want in Actionscript too. However, to save you a few minutes, below is the function I use. static function printr( object, depth ){ if ( depth == undefined ) depth = 3; var depth_spacing:String = ; var string_rep:String = ;

Re: [Flashcoders] embeded CSS issue

2006-02-10 Thread grant
Thanks Gregory, The code in the email was a quick example, I really do allocate objects before I use them :) It appears you are right that the only reliable way is with parse css function as the built in stuff in 8 really doesn't seem to work at all. Thanks Grant - Original Message

Re: [Flashcoders] pagepeel

2006-02-09 Thread Grant Cox
I've previously used Macc/Iparigrafika's page turner, and found it to be very good. http://www.iparigrafika.hu/pageflip/ Latcho wrote: anybody got a link to a resource of a (doublepaged) page-peel effect? like browsing a book, but nonfake. preferably working with bitmapdata. my Math skills

Re: [Flashcoders] plz suggest.....urgent

2006-02-07 Thread Grant Cox
CellRenderers, one of which is for a checkbox. You can download this from http://www.macromedia.com/support/documentation/en/flash/fl8/samples.html Regards, Grant Cox [EMAIL PROTECTED] wrote: Hi Grant, Can u plz send me ur code for the same...the way u implemented... The information contained

Re: [Flashcoders] How do you code your Flash applications?

2006-02-06 Thread Grant Cox
our code separated from the design, we will use placeholders / components in the Flash file to define where external elements are loaded. This lets the designers fiddle with what they like, without having to bother me :) Regards, Grant Cox Nathan Derksen wrote: Nonsense, this is a great

Re: [Flashcoders] plz suggest.....urgent

2006-02-06 Thread Grant Cox
a ScrollPane, with the content being a movieclip containing the checkboxes. Regards, Grant Cox [EMAIL PROTECTED] wrote: how can i add 2 checkboxes in a scrollbar..is it using contentpath?? The information contained in this electronic message and any attachments to this message are intended

Re: [Flashcoders] plz suggest.....urgent

2006-02-06 Thread Grant Cox
Then yes, contentPath is what you want. The contentPath can be either a Linkage Id, or a url of an external SWF. [EMAIL PROTECTED] wrote: I want a ScrollPane, with the content being movieclip containing 2 checkboxes and labels next to them. The information contained in this electronic

Re: [Flashcoders] select columns-datagrid

2006-02-05 Thread Grant Cox
, itemIndex: getCellIndex().itemIndex, columnIndex: getCellIndex().columnIndex, newValue: somethingGoesHere}); Regards, Grant Cox [EMAIL PROTECTED] wrote: hi, I have a datagrid that I'm using to display

Re: [Flashcoders] How do you code your Flash applications?

2006-02-02 Thread Grant Cox
. Movieclip spaghetti is a bitter dish. Regards, Grant Cox Anggie Bratadinata wrote: Hi expert coders, Just a simple question, How do you develop your Flash applications? How do you write clean, readable, and reusable codes? The reason I'm asking this is because, so often, I got lost in MovieClips

Re: [Flashcoders] How do you code your Flash applications?

2006-02-02 Thread Grant Cox
/ animation works I'll use Flash * * Thank you * * The end */ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Grant Cox Sent: Friday, 3 February 2006 1:44 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] How do you code your Flash applications? Don't

Re: [Flashcoders] How do you code your Flash applications?

2006-02-02 Thread grant
, Grant. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] quick array question

2006-02-01 Thread Grant Cox
Use Array.splice() to remove an element. randomPos = random(total); rfcClip = rfcsArray[randomPos]; imgID = imgArray[randomPos]; rfcsArray.splice(randomPos, 1); imgArray.splice(randomPos, 1); total--; Corban Baxter wrote: Ok one quick array question... randomPos = random(total); rfcClip

Re: [Flashcoders] Fire Event Manually

2006-01-31 Thread grant
sorr its a late, but cheat... var foo:Object = myCheckBox; foo.dispatchEvent( {type:cick, target:myCheckBox}); if you use an object reference the compiler doesn't enforce class modifiers so you can basically bypass protected. Grant. - Original Message - From: Yotam Laufer [EMAIL

Re: [Flashcoders] NetConnection Debugger not working in Flash 8?

2006-01-22 Thread Grant Cox
. On 1/20/06, Grant Cox [EMAIL PROTECTED] wrote: I have just upgraded my workflow to Flash 8 and the latest MTASC today, and found that while my Remoting calls were working, nothing was printing in the NetConnection Debugger. After some debugging I have found that I cannot get anything to print

Re: [Flashcoders] Flash Remoting

2006-01-22 Thread Grant Cox
If you are using AS2, then you want to use import, not #include (which is AS1). import mx.remoting.Service; import mx.services.Log; import mx.remoting.debug.NetDebug; Regards, Grant Cox JP wrote: I'm running into very odd issues with the installation of Flash remoting components for AS2

Re: [Flashcoders] Fire Event Manually

2006-01-20 Thread grant
myCheckBox.dispatchEvent( {type:cick, target:myCheckBox}); or should work ? Grant. - Original Message - From: julian atienza [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: 1/20/06 5:59 AM Subject: [Flashcoders] Fire Event Manually Anybody can helps me with this? I

[Flashcoders] NetConnection Debugger not working in Flash 8?

2006-01-19 Thread Grant Cox
? Regards, Grant Cox /// import mx.remoting.Service; import mx.services.Log; import mx.remoting.debug.NetDebug; NetDebug.initialize(); var myLogger:Log = new Log(Log.DEBUG, logger1); myLogger.onLog = function(message:String) { trace

Re: [Flashcoders] NetConnection Debugger not working in Flash 8?

2006-01-19 Thread Grant Cox
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Grant Cox Sent: Thursday, January 19, 2006 9:03 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] NetConnection Debugger not working in Flash 8? I have just upgraded my workflow to Flash 8 and the latest MTASC today, and found

Re: [Flashcoders] Public examples of Business RIAs

2006-01-17 Thread grant
Clark, are the controls (scroller, dropdown box and vertical accordian) entirely custom components ? very nice interface btw. grant - Original Message - From: clark slater [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 1/17/06 12:38 PM Subject

[Flashcoders] JSFL help

2006-01-15 Thread grant
including its data. any JSFL gurus on the list ? Thanks Grant ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: SV: [Flashcoders] certificate

2006-01-12 Thread grant
from the browser with a proxy... I had no issues with firefox. Grant. - Original Message - From: Martin Baltzer [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 1/12/06 2:07 AM Subject: SV: [Flashcoders] certificate Yes flash in Internet Explorer

Re: SV: [Flashcoders] certificate

2006-01-12 Thread grant
Did you make sure the cross domain file is in the root folder ? Grant. - Original Message - From: PR Durand [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 1/12/06 4:37 AM Subject: Re: SV: [Flashcoders] certificate Thanks a lot for all your

Re: [Flashcoders] Webservice and complex type class mapping

2006-01-11 Thread grant
Christophe, I've never had it map in the remoting way, but I have sucessfully done a cast on the dynamic object returned and then got data from it. I think it works by accident :) Grant - Original Message - From: Christophe Herreman [EMAIL PROTECTED] To: Flashcoders mailing list

Re: [Flashcoders] ARP or Cairngorm

2006-01-09 Thread grant
of the extra features or cairngorm I wouldn't use but due to all my flash based projects being authored in AS2 with AMES ARP is a better fit for me. Grant - Original Message - From: Weyert de Boer To: Flashcoders mailing list Sent: Monday, January 09, 2006 5:32 PM Subject

[Flashcoders] Windows media player embed in div over flash movie ?

2006-01-06 Thread grant
movie and then 'float' the windows media player embed over the top of the flash movie. I only need to support IE 5.5 or above. Will the 2nd approach work and does anyone have an example I can look at ? I can figure it out but I don't have much budget for prototyping. Cheers, Grant

Re: [Flashcoders] Windows media player embed in div over flash movie ?

2006-01-06 Thread grant
ended up testing it, seems to work (internet explorer only right now as I haven't done the embed tag): http://bluetubecom.web123.discountasp.net/clients/imw/mediatest/test.html Grant. - Original Message - From: [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: 1/6/06 1:06

Re: [Flashcoders] private/public troubles

2005-12-14 Thread grant
. because you are declaring it on root is probably not typed. Why put it on root ? Grant. - Original Message - From: PR Durand [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 12/14/05 9:54 AM Subject: [Flashcoders] private/public troubles Hi List

Re: [Flashcoders] private/public troubles

2005-12-14 Thread grant
me. using _root is generally considered a no-no. stone the blasphemer!, stone the blasphemer ! :) Grant - Original Message - From: PR Durand [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 12/14/05 11:21 AM Subject: Re: [Flashcoders] private/public

[Flashcoders] Turning off flash mx UIScrollBar when nothing to scroll.

2005-12-12 Thread grant
(but I still get a phantom scroll bar) Can someone help ? Thanks Grant ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Turning off flash mx UIScrollBar when nothing to

2005-12-12 Thread grant
doh, sorry thomas, thanks for the catch, weird I didn't see it come through the first time :) correct URL : http://bluetubecom.web123.discountasp.net/clients/amvescap/container.html See jan has a phantom scrollbar even though there is nothing to scroll. Grant. - Original Message

Re: [Flashcoders] Turning off flash mx UIScrollBar when nothing to

2005-12-12 Thread grant
that automatically :) Grant - Original Message - From: [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Cc: Flashcodersmailinglist flashcoders@chattyfig.figleaf.com Sent: 12/12/05 9:46 AM Subject: Re: [Flashcoders] Turning off flash mx UIScrollBar when nothing to doh, sorry thomas

Re: [Flashcoders] flash and ASP.NET

2005-12-09 Thread grant
/extending_arp.html Grant. - Original Message - From: Zoltan Csibi [EMAIL PROTECTED] To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com Sent: 12/7/05 10:45 AM Subject: RE: [Flashcoders] flash and ASP.NET Hi Michael Don't know if this is in your timeframe but we

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-09 Thread grant
, difference now is I'm compiling with MTASC and using flash 8 IDE. I'm going to try a standalone fla test and compile with MM compiler and flash 7 to see what the issue is. Grant - Original Message - From: Merrill, Jason [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders

Re: [Flashcoders] flash and ASP.NET

2005-12-09 Thread grant
between flashorb pro, flashorb standard and weborb and the fact their news doesn't link to the item the news is talking about I was a little confused on what to download, is weborb professional for .net the free thing ? I could find a weborb standard in the downloads section... grant

[Flashcoders] button width ?

2005-12-09 Thread grant
, when I read the buttons width its 0, and this is when the button has been loaded, if i measure the buttons width when it receives a onRelease event its a valid width. Is there some way to set the buttons width after loading, right now its giving me the bird. Grant

Re: [Flashcoders] Xpath and HTML tags inside XML bug?

2005-12-09 Thread grant
it and assign it to the same text field it works... I'll create a demo file and upload soon, I had a deadline so ended up using loadvars for the html content and that worked, but I've done the CDATA section stuff for my old site and it worked then. Grant - Original Message - From: Merrill, Jason

Re: [Flashcoders] weird scaling issue in internet explorer and 1900 x

2005-11-16 Thread grant
a Stage.scaleMode=noScale; in the 1st frame but that didn't help easier. Thanks for trying it, i guess its just one of the weird bugs :) grant - Original Message - From: Gregory_GOusable [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 11/16/05 3:31 AM Subject: Re

[Flashcoders] weird scaling issue in internet explorer and 1900 x 1200 resolution

2005-11-15 Thread grant
/flash-embed-test/EMC.html I've tried this on other machines and it appears to work how it should and the only thing I can put it down to is I run a dell 9300 with a 17 display that runs 1900 x 1200 pixels, could this be an issue the flash player in internet explorer is not addressing ? Grant

Re: [Flashcoders] Newbie question: SHIFT+TAB

2005-11-07 Thread grant
Did you create a new focus manager you could share ? :) Grant - Original Message - From: Scott Hyndman [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 11/7/05 11:50 AM Subject: RE: [Flashcoders] Newbie question: SHIFT+TAB What I did on one

Re: [Flashcoders] text not displaying in an input text field

2005-11-04 Thread grant
make sure you have all styles of the font you are using embedded, we were using bold in a style but forgot to embed bold specifically and nothing rendered. Grant - Original Message - From: Tom Rhodes [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent

Re: [Flashcoders] Need advice on XMLSocket architecture

2005-11-04 Thread grant
. red5 would meet your needs but won't be GA for a while.. Grant - Original Message - From: Jim Phelan [EMAIL PROTECTED] To: 'Flashcoders mailing list' flashcoders@chattyfig.figleaf.com Sent: 11/4/05 3:09 PM Subject: RE: [Flashcoders] Need advice on XMLSocket architecture Tracy, I think

Re: [Flashcoders] XPath Error...

2005-11-03 Thread grant
be : //product[colors/clr[.='red']] but neither the xfactor studio xpath parser or the mx.xpath.xpathAPI classes return anything for that xpath query. I tested it in internet explorer and it works fine. grant - Original Message - From: Chris Wilcox [EMAIL PROTECTED] To: Flashcoders mailing

[Flashcoders] Customer maps/mapquest ?

2005-11-03 Thread grant
manually when you visit mapquest as a consumer other than the fact we pre-populate the ending address. I can't find if mapquest has a free webservice for getting directions or something lower in cost. Grant ___ Flashcoders mailing list Flashcoders

[Flashcoders] Using the FocusManager

2005-11-01 Thread grant
of the focus manager to each form but didn't see any good results. Macromedias docs on how to implement focus management in a sizeable application with multiple forms is pretty non existent. any help would be appreciated. Grant http://www.bluetube.com http://www.studiodaily.com/filmandvideo

Re: [Flashcoders] Using the FocusManager

2005-11-01 Thread grant
the child property to true so the focus manager knows the panel has children. The interesting thing was none of the macromedia docs recommend how to get a focus manager instance and doing _level0.focusManager is not good programming practice for me. Grant - Original Message - From: Muzak

Re: [Flashcoders] When migrate to Flash 8?

2005-10-28 Thread grant
like -500 (x) to see all the symbols and then remember to move them back. In flash 8 the stage is about double the size of the document setting so you can see everything, thats was reason enough for me as I build lots of forms for my current client :) Grant - Original Message - From

Re: [Flashcoders] OT: Flash player keeps 'downgrading' itself

2005-10-24 Thread grant
I haven't noticed that in firefox, I have the 8.5 plugin installed in firefox and left 7 in windows exploder. I've been to quite a few sites that use 7 and I watched the osflash conference using 8.5 fine... Maybe its just some rogue site ? :) Grant - Original Message - From

Re: [Flashcoders] Flexbuilder 2 Alpha IDE problems

2005-10-20 Thread grant
even though we are months away from flex 2 release. grant - Original Message - From: Muzak [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: 10/20/05 1:51 PM Subject: Re: [Flashcoders] Flexbuilder 2 Alpha IDE problems Hmmm, can't say I've noticed