[flexcoders] Re: Scroll Parent Canvas from Datagrid Drag and Drop...

2010-07-13 Thread shahjitesh
Did anyone encountered such scenario. How can I scroll parentDocument canvas when I perform Drag and Drop in DataGrid. First MXML There is creationComplete Script which adds Second mxml as child mx:Canvas id=containerWidgets x=0 y=35 width=100% height=5000 backgroundAlpha=0 /

Re: [flexcoders] Is there a way to tell flash NOT to render a certain area?

2010-07-13 Thread dorkie dork from dorktown
right. its for lazy loading. when the scroll thumb goes into the hot area then it sends requests to the server for new content. when new content is received i create a new container and add it to the accordion with addChildAt(newContainer, 0); to make sure it is before existing content. to keep a

Re: [flexcoders] Is there a way to tell flash NOT to render a certain area?

2010-07-13 Thread Tom Chiverton
On Tuesday 13 Jul 2010 08:48:43 you wrote: right. its for lazy loading. when the scroll thumb goes into the hot area then it sends requests to the server for new content. when new content is received i create a new container Why not create an empty 'dummy' container before firing the request,

Re: [flexcoders] Is there a way to tell flash NOT to render a certain area?

2010-07-13 Thread dorkie dork from dorktown
i tried both adding it before and after data is available. the data isn't necessary. its as soon as i add a new container to the beginning of the accordion 2010/7/13 Tom Chiverton tom.chiver...@halliwells.com On Tuesday 13 Jul 2010 08:48:43 you wrote: right. its for lazy loading. when the

Re: [flexcoders] Is there a way to tell flash NOT to render a certain area?

2010-07-13 Thread dorkie dork from dorktown
I think what I'm looking for is a way to have it not apply any updates for a few frames. In the same way includeInLayout set to false causes it to be skipped in the layout, something similar to prevent any updates to scroll position. On Tue, Jul 13, 2010 at 3:54 AM, dorkie dork from dorktown

RE: [flexcoders] Flex print Without Dialog Box ?

2010-07-13 Thread Gregor Kiddie
You need to have something actually on the user's machine to do this, i.e. a service running that you can talk to. You can't do this natively from the Flash Player, otherwise your printer would be printing out advertising leaflets every time to you saw a Flash ad on a website... and nobody

[flexcoders] Setting width/height not affecting visual display?

2010-07-13 Thread Roy Pardi
Probably really dumb question here: I was setting the width/height of a SpriteVisualElement and was not seeing the change reflected visually. I made a quick test file (code below) to isolate this from the rest of the app I am developing. Same thing - when the 'testSprite' receives a mouse event,

Re: [flexcoders] Setting width/height not affecting visual display?

2010-07-13 Thread Oleg Sivokon
These properties may be overridden. My gut feeling says there should be something like commitProperties / validate or some similar method to apply all changes to the changed display object.

Re: [flexcoders] Setting width/height not affecting visual display?

2010-07-13 Thread Mayur Bais
Two things 1) Try setting the height and width of the container. 2) I tried to read the adobe docs and it says The SpriteVisualElement class is a light-weight Sprite-based implemention of IVisualElement. and there are no height and width property available for this class. where are there are

Re: [flexcoders] Setting width/height not affecting visual display?

2010-07-13 Thread Roy Pardi
At 3:14 PM +0200 7/13/10, Oleg Sivokon wrote: These properties may be overridden. My gut feeling says there should be something like commitProperties / validate or some similar method to apply all changes to the changed display object. Thanks for the reply. Still tinkering here - I changed the

[flexcoders] How to remove the DateField textInput border?

2010-07-13 Thread Nick Middleweek
Hi, Has anyone been able to modify the border of the TextInput component of the Date field? I'm trying to set it to ZERO. I've tried extending the DateField - MyDateField and specifying the borderThickness in updateDisplayList using this.textInput.setStyle(borderThickness, 0); ... to be

Re: [flexcoders] How to remove the DateField textInput border?

2010-07-13 Thread Andriy Panas
Have a look at textInputStyleName style http://help.adobe.com/en_US/FlashPlatform//reference/actionscript/3/mx/controls/ComboBase.html#style:textInputStyleName - http://help.adobe.com/en_US/FlashPlatform//reference/actionscript/3/mx/controls/ComboBase.html#style:textInputStyleName

[flexcoders] Re: How to remove the DateField textInput border?

2010-07-13 Thread bhaq1972
or borderVisible : false; --- In flexcoders@yahoogroups.com, Andriy Panas a.pa...@... wrote: Have a look at textInputStyleName style http://help.adobe.com/en_US/FlashPlatform//reference/actionscript/3/mx/controls/ComboBase.html#style:textInputStyleName -

Re: [flexcoders] Re: How to remove the DateField textInput border?

2010-07-13 Thread Andriy Panas
There is no borderVisible style for DateField, it exists only for DateChooser, only in Flex 4 SDK and only in default skin theme Spark. -- Best regards, Andriy Panas or borderVisible : false;

Re: [flexcoders] SOLVED Re: Setting Different Style on ComboBox DropdownList

2010-07-13 Thread Angelo Anolin
Thanks Valdhor. Worked like a charm. From: valdhor valdhorli...@embarqmail.com To: flexcoders@yahoogroups.com Sent: Mon, 12 July, 2010 11:35:16 Subject: [flexcoders] Re: Setting Different Style on ComboBox DropdownList Use an Item Renderer... Test1.mxml:

[flexcoders] Flash Debugger crashing in Firefox?

2010-07-13 Thread Rick Schmitty
Is anybody having an issue with Flash 10 debugger and Firefox's new anti crash feature? Whenever I get a debug popup from flash Firefox thinks Flash crashed and locks up completely until the lil frowny lego with text that says The Adobe Flash plugin has crashed. Send crash report The debugger

Re: [flexcoders] Flex print Without Dialog Box ?

2010-07-13 Thread Alex Harui
I think AIR 2.0 will let you get around it. On 7/13/10 4:49 AM, Gregor Kiddie gregor.kid...@channeladvisor.com wrote: You need to have something actually on the user’s machine to do this, i.e. a service running that you can talk to. You can’t do this natively from the Flash Player,

Re: [flexcoders] Is there a way to tell flash NOT to render a certain area?

2010-07-13 Thread Alex Harui
I’m still lost. Are you trying to control the wrapping Scroller’s scrollbar or is there a scrollbar in your Haccordion? I think I would build one into the Haccordion that knows how many children exist. That’s how List and others handle virtualized renderers. On 7/13/10 2:52 AM,

[flexcoders] Re: Flash Debugger crashing in Firefox?

2010-07-13 Thread valdhor
Yes. I am getting this a lot and not just my own code. The crash report happens on pretty much any site that has flash content. I don't know if this is a problem with the Flash debugger or Firefox but it did not happen before the latest update to Firefox. --- In flexcoders@yahoogroups.com,

RE: [flexcoders] Flex print Without Dialog Box ?

2010-07-13 Thread Gregor Kiddie
True, I should have prefixed that with... with the Flash Player I think AIR 2.0 will let you get around it.

Re: [flexcoders] Re: Flash Debugger crashing in Firefox?

2010-07-13 Thread kris range
Something like this happens to me on Safari OS X. If an flash application is loading or doing something and I go to another page, I'll usually get an IOErrorEvent error with the error dialog popping up, then it disappears and I can't click on anything in the browser (Flash or not). Very annoying.

Re: [flexcoders] Re: Flash Debugger crashing in Firefox?

2010-07-13 Thread Robert VanCuren Jr
http://www.riaxe.com/blog/flex/flex-firefox-flash-debug-player-crash-solved/ On Tue, Jul 13, 2010 at 3:40 PM, kris range krisra...@gmail.com wrote: Something like this happens to me on Safari OS X. If an flash application is loading or doing something and I go to another page, I'll usually

Re: [flexcoders] Re: Flashbuilder 4.0.1 debugger issue?

2010-07-13 Thread Alan Shaw
We've spent hours on this same issue today. We have not updated Flash Builder itself, but after installing the latest debug player, one of our apps also hangs on startup when running with FB debugging and does not hang when running in non-debug mode. I have now reverted to an earlier Flash debug

Re: [flexcoders] Is there a way to tell flash NOT to render a certain area?

2010-07-13 Thread dorkie dork from dorktown
that makes sense. i wanted to make sure there wasn't any other options before working on that. ps the scroller scrollerbar. the mxml example doesn't show that. On Tue, Jul 13, 2010 at 12:14 PM, Alex Harui aha...@adobe.com wrote: I’m still lost. Are you trying to control the wrapping

Re: [flexcoders] right click menu @ flex

2010-07-13 Thread Brendan Meutzner
You have the debug player installed in google chrome... those two items can't be removed in the debug player. If you uninstall the player plugin and then reinstall the non-debug version they'll go away. However, if you're not familiar with the debug player, you should look into it... how are you