[flexcoders] Re: Can I set the image source in CSS?

2008-08-13 Thread cuttenv
--- In flexcoders@yahoogroups.com, luvfotography [EMAIL PROTECTED] wrote: For an image, can I set the source in css? ie. mx:Image id=myimage source=@Embed(source='../mypic.png') / can I move the source to the css? or is there another way to do this? Don't think you can because source

[flexcoders] Re: WordWrapping a Label

2008-08-13 Thread cuttenv
--- In flexcoders@yahoogroups.com, shafram [EMAIL PROTECTED] wrote: Thanks for the responses. As a follow on question, is there a way to control the spacing in between the lines (for example single space, double space) When the word wraps there is too much of a gap in between the lines,

[flexcoders] Modal Popup inside a module (or inside a view) of my application

2008-08-13 Thread cuttenv
Help! I am trying to create a popup that is modal over only one area of my application. I don't know if it helps but that area is actually a module that is loaded into the main application. It only takes up about half of the stage. Is there a way to make a modal popup over only a module or

[flexcoders] Re: Modal Popup inside a module (or inside a view) of my application

2008-08-13 Thread cuttenv
what you want. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cuttenv Sent: Wednesday, August 13, 2008 11:20 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Modal Popup inside a module (or inside a view) of my

[flexcoders] Re: Modal Popup inside a module (or inside a view) of my application

2008-08-14 Thread cuttenv
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cuttenv Sent: Wednesday, August 13, 2008 3:47 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Modal Popup inside a module (or inside a view) of my application Thanks for the response Alex

[flexcoders] Module unloading

2008-08-27 Thread cuttenv
There seems to be an issue with modules unloading in an application. I have a very simple application that just loads a module. The module is a repeating animation that is processor intensive. I unload the module by calling unloadModule() method on the moduleLoader and setting the url =

[flexcoders] DragManager Zoom

2009-01-31 Thread cuttenv
Is there a way to disable the zoom when you drop something using the drag manager?

[flexcoders] Re: DragManager Zoom

2009-01-31 Thread cuttenv
Of cuttenv Sent: Saturday, January 31, 2009 5:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] DragManager Zoom Is there a way to disable the zoom when you drop something using the drag manager?

[flexcoders] Issue with Modules unloading...

2009-03-24 Thread cuttenv
Hello, I had an issue with Modules unloading, especially ones that had embedded images or animations playing in them. I am still convinced that ANY Module has a hard time being unloaded from memory. I was wondering if anyone had a sound solution to fixing this issue or ran into it before. I

[flexcoders] Re: Issue with Modules unloading...

2009-03-24 Thread cuttenv
@yahoogroups.com, Alex Harui aha...@... wrote: It is scheduled for Flex 3.4 Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of cuttenv Sent: Tuesday, March

[flexcoders] Using the fork ant task

2009-04-20 Thread cuttenv
Anyone know a work around to this bug?? I guess I could move all my projects over to my C drive but I have everything on my D drive for a reason :( http://bugs.adobe.com/jira/browse/SDK-20666

[flexcoders] Drive Letters and Ant

2009-04-22 Thread cuttenv
So I have my Eclipse and Flex builder installed on my C: drive but all of my projects in my workspace on D: Everything works fine but when I set the fork=true in my mxmlc to increase the memory my Ant build fails with: [mxmlc] java.lang.NoClassDefFoundError: flex2/tools/Compiler

[flexcoders] Re: Drive Letters and Ant

2009-04-22 Thread cuttenv
Rowe From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of cuttenv Sent: Thursday, 23 April 2009 6:16 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Drive Letters and Ant So I have my Eclipse and Flex builder

[flexcoders] Re: Drive Letters and Ant

2009-04-23 Thread cuttenv
@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of cuttenv Sent: 22 April 2009 21:16 To: flexcoders@yahoogroups.com Subject: [flexcoders] Drive Letters and Ant So I have my Eclipse and Flex builder installed on my C: drive but all of my projects in my workspace on D

[flexcoders] Re: Drive Letters and Ant

2009-04-27 Thread cuttenv
] On Behalf Of cuttenv Sent: Thursday, 23 April 2009 6:16 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Drive Letters and Ant So I have my Eclipse and Flex builder installed on my C: drive but all of my projects in my workspace on D: Everything works fine but when I set

[flexcoders] Re: Drive Letters and Ant

2009-04-27 Thread cuttenv
] On Behalf Of cuttenv Sent: Thursday, 23 April 2009 6:16 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Drive Letters and Ant So I have my Eclipse and Flex builder installed on my C: drive but all of my projects in my workspace on D: Everything works fine but when I set

[flexcoders] Advanced Data Grid + ILOG

2009-08-17 Thread cuttenv
I have been working on a project that has several thousand items populating an Advanced Data Grid (ADG). Transmitting the data via AMF is lighting quick but it all really goes to waste once it hits the ADG. I looked online and found this bug with this work around.

[flexcoders] Module and Application Communication.

2009-08-17 Thread cuttenv
I have a rather straight forward question. I am creating a module like this: private var modInfo:IModuleInfo private var myModule:MyCustomMdoule; //In creation complete of application modInfo = ModuleManager.getModule('myMod.swf'); modInfo.addEventListener(ModuleEvent.READY, onModuleReady);

[flexcoders] Re: Advanced Data Grid + ILOG

2009-08-18 Thread cuttenv
--- In flexcoders@yahoogroups.com, sameerbhatt13 sameerbhat...@... wrote: I've posted the changes I did to the expandAll() method in the comments section in the bug. Can you try it? Please re-open the bug and attach your sample file if you are still encountering this issue. Thanks,

[flexcoders] Re: Advanced Data Grid + ILOG

2009-08-18 Thread cuttenv
, null, itemRenderer, null, false, false, item, null, null); dispatchEvent( evt ); --- In flexcoders@yahoogroups.com, cuttenv cutt...@... wrote: --- In flexcoders@yahoogroups.com, sameerbhatt13 sameerbhatt13@ wrote: I've posted the changes I did to the expandAll() method in the comments

[flexcoders] Re: Module and Application Communication.

2009-08-18 Thread cuttenv
domain issue? Cheers, Rick Winscot On 8/17/09 1:24 PM, cuttenv cutt...@... wrote: I have a rather straight forward question. I am creating a module like this: private var modInfo:IModuleInfo private var myModule:MyCustomMdoule; //In creation complete

[flexcoders] Re: Module and Application Communication.

2009-08-18 Thread cuttenv
Of cuttenv Sent: Tuesday, August 18, 2009 3:21 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Module and Application Communication. not sure. How could I test that? They are both on the same domain (locahost) and even in the same directory. Wouldn't it throw a sandbox violation

[flexcoders] Re: Advanced Data Grid + ILOG

2009-08-19 Thread cuttenv
Hey Tom, I reopened the bug here: http://bugs.adobe.com/jira/browse/FLEXDMV-2191 You can vote on it and watch the progress if you want. The fix is in SDK4 so you have to download the latest version of FB and then use that sdk. I reopened the bug because the fix doesn't help enough. It still

[flexcoders] Re: Module and Application Communication.

2009-08-19 Thread cuttenv
? Who is dispatching the event? Code in the module class or some other object? Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of cuttenv Sent: Tuesday

[flexcoders] Re: Module and Application Communication.

2009-08-19 Thread cuttenv
click=doDispatchEvent(event)/ /mx:Module --- In flexcoders@yahoogroups.com, cuttenv cuttenv@ wrote: I have a rather straight forward question. I am creating a module like this: private var modInfo:IModuleInfo private var myModule:MyCustomMdoule; //In creation complete of application

[flexcoders] Downloading nightly builds of the data visualization

2009-09-12 Thread cuttenv
I think it's safe to say that I am not the only one who has had issues with the data visualization components. It also seems like it has been very hard to download an updated version of the data visualization components. I know there in a version for 3.4 that was released but I am talking more

[flexcoders] Mac OSX and Flex builder

2009-09-29 Thread cuttenv
Anyone know what aum.flexbuilder.osx and why it needs rosetta?? :)

[flexcoders] Re: How do I determing If I'm running an Air app vs. Flex app?

2009-09-29 Thread cuttenv
--- In flexcoders@yahoogroups.com, luvfotography ygro...@... wrote: Hi, What's the simplest way to test (in actionscript) if I'm running Air vs. Flex? thanks, Hey you need the adobe integrated run time to run an air app. Flex runs in the browser on the flash player. So if you are running

[flexcoders] Re: TitleWindow Popup Question(s)

2009-09-29 Thread cuttenv
Hey there, I'm not sure how you are creating your popup but I would recommend you do it like this. var popper:TestPopUp = new TestPopUp(); PopUpManager.addPopUp(popper,this); PopUpManager.centerPopUp(popper); Where TestPopUp is your TitleWindow Component. Then your creationComplete

[flexcoders] Re: How do I determing If I'm running an Air app vs. Flex app?

2009-09-29 Thread cuttenv
--- In flexcoders@yahoogroups.com, cuttenv cutt...@... wrote: --- In flexcoders@yahoogroups.com, luvfotography ygroups@ wrote: Hi, What's the simplest way to test (in actionscript) if I'm running Air vs. Flex? thanks, Hey you need the adobe integrated run time to run an air app

[flexcoders] Re: TitleWindow Popup Question(s)

2009-10-01 Thread cuttenv
to make web service calls.  I wonder why. After changing all the codes, I am trying to retrieve a data from a web service from this popup TitleWindow but nothing seems to happen. Suggestions highly appreciated. Thanks.   From: cuttenv cutt

[flexcoders] Text lines

2009-10-01 Thread cuttenv
Anyone know how to get each individual line of text in a textarea or text?? For example if you have some block of text like this is there a way to get each individual line?? There is the getTextLineMetirics which tells you the dimensions, but I guess that's it??

[flexcoders] Constraining the DragManager

2009-11-16 Thread cuttenv
Is it even possible to constrain the DragManager in flex to vertical movement only?? I have tried just about everything I can think of to no avail. I guess I could use the startDrag() and stopDrag() methods. It just seems like there should be a way. Any ideas?

[flexcoders] Re: Constraining the DragManager

2009-11-17 Thread cuttenv
Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of cuttenv Sent: Monday, November 16, 2009 8:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Constraining

[flexcoders] Re: Constraining the DragManager

2009-11-19 Thread cuttenv
be the actual cursor) should be what you want to do. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of cuttenv Sent: Tuesday, November 17, 2009 4:15 PM

[flexcoders] Flex SDK Open Source

2009-11-19 Thread cuttenv
Hey guys, Can anyone browse the source for the flex sdk on adobe's site? http://opensource.adobe.com:81/svn/opensource/flex/sdk/ I followed the link from the confluence site: http://opensource.adobe.com/wiki/display/flexsdk/Get+Source+Code

[flexcoders] Re: Flex SDK Open Source

2009-11-19 Thread cuttenv
yah it's been like this for a couple days. I guess I'll try using svn later tonight --- In flexcoders@yahoogroups.com, steveb805 quantumcheese...@... wrote: No, I get a Oops! This link appears to be broken. message (chrome) --- In flexcoders@yahoogroups.com, cuttenv cuttenv@ wrote: Hey

[flexcoders] Re: Installed Flash Player Is Not a Debugger

2009-11-19 Thread cuttenv
If it happens again I recommend first downloading the flash player uninstaller. Then uninstall flash player and reinstall the most recent version. This way you have a fresh install of the flash player. --- In flexcoders@yahoogroups.com, Joel Stransky stranskydes...@... wrote: Everytime I

[flexcoders] Re: Flex SDK Open Source

2009-11-20 Thread cuttenv
/opensource/flex/sdk/trunk/ Matt On Nov 19, 2009, at 5:25 PM, cuttenv wrote: yah it's been like this for a couple days. I guess I'll try using svn later tonight --- In flexcoders@yahoogroups.com, steveb805 quantumcheesedog@ wrote: No, I get a Oops! This link appears

[flexcoders] Inline functions and Anonymous

2009-12-03 Thread cuttenv
Hi everyone, I have a quick question. Is there any performance gain when using an inline or anonymous function in flex?? For example let's say you have: private foo function():void{ var btn:Button = new Button(); var str:String = Hello Guys; btn.addEventListener(MouseEvent.CLICK,

[flexcoders] Re: Inline functions and Anonymous

2009-12-03 Thread cuttenv
--- In flexcoders@yahoogroups.com, cuttenv cutt...@... wrote: Hi everyone, I have a quick question. Is there any performance gain when using an inline or anonymous function in flex?? For example let's say you have: private foo function():void{ var btn:Button = new Button(); var

[flexcoders] Re: Inline functions and Anonymous

2009-12-03 Thread cuttenv
[mailto:flexcod...@yahoogroups.com] On Behalf Of cuttenv Sent: Thursday, December 03, 2009 6:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Inline functions and Anonymous Hi everyone, I have a quick question. Is there any performance gain when using an inline or anonymous function

[flexcoders] Re: Inline functions and Anonymous

2009-12-04 Thread cuttenv
: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of cuttenv Sent: Thursday, December 03, 2009 7:08 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Inline functions and Anonymous Ok what about the second example though? Those are all named functions

[flexcoders] Re: Inline functions and Anonymous

2009-12-07 Thread cuttenv
Anyone have more input on this? Thanks in advance :) --- In flexcoders@yahoogroups.com, cuttenv cutt...@... wrote: So at the end of the main function call everything would go out of scope and be eligible for garbage collection? The issue is that I see a LOT of functions definitions

[flexcoders] Re: How to know when a popup component is visible?

2009-12-07 Thread cuttenv
I'm guessing what you're trying to do is to create a popup, then display it, then start your encoding of the image? The popup is a child of the system manager try adding your event A popup is a child of the system manager try adding an child added eventlistener to it. --- In

[flexcoders] Re: Random Number genrator

2009-12-07 Thread cuttenv
you can use the perlin noise --- In flexcoders@yahoogroups.com, Shanimal yahoo_flexcod...@... wrote: I think you are looking for a psuedo random number generator http://en.wikipedia.org/wiki/Linear_congruential_generator Where you supply an initial value and it always returns the same

[flexcoders] PC Speaker Beep

2010-03-24 Thread cuttenv
Hi everyone I have a quick question about the PC Speaker. Is there a way to make a call from Flex to make the PC speaker beep? What about in Adobe Air? Thanks in advance!

[flexcoders] Re: PC Speaker Beep

2010-03-24 Thread cuttenv
Thanks Oleg, I figured there wasn't a way to do the call in Flex and that it would have to be AIR. The reason I can't just use the sound class is because there are no speakers on our machines. What about rolling out updates to AIR? The reason we are using Flex and not AIR is because when we

[flexcoders] Re: PC Speaker Beep

2010-03-24 Thread cuttenv
); if(ItemLabel != ){ System.setClipboard(ItemLabel); Sound_Ding.play(); } } } } } - Original Message - From: cuttenv To: flexcoders

[flexcoders] Re: PC Speaker Beep

2010-03-25 Thread cuttenv
redeploying your site and sending out a reboot command to your terminals). Thanks! --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: A truly desperate person might install a socket server.. On 3/24/10 10:12 PM, cuttenv cutt...@... wrote: Nice Job Warren, Thanks

[flexcoders] Re: maya to flash 10

2010-04-06 Thread cuttenv
Blender to flash! http://gotoandlearn.com/play?id=106 --- In flexcoders@yahoogroups.com, MIchael madm...@... wrote: Hi, Is there a tutorial that shows a good workflow for exporting a maya model and importing it as a 3d movie clip in flash 10? thanks, Michael

[flexcoders] Scroll list

2010-04-06 Thread cuttenv
Anyone know a way to have your thumb on the scroll bar to be a fixed height? So I have a list that I am dynamically adding stuff to and I don't want the size of the thumb to change. Thanks!

[flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-06 Thread cuttenv
You could use a grouping Collection to group the data. If you check out the ILog Exlir stuff they have a bunch of demos on how to do this. --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: The dataDescriptor's purpose is to allow you to create a hierarchy out of flat data.

[flexcoders] Re: Using an ArrayCollection to populate a Tree component

2010-04-07 Thread cuttenv
it with the ILog stuff, I'd appreciate a link to it. Thanks. --- In flexcoders@yahoogroups.com, cuttenv cuttenv@ wrote: You could use a grouping Collection to group the data. If you check out the ILog Exlir stuff they have a bunch of demos on how to do this. --- In flexcoders

[flexcoders] Youtube API and Air 1.5.3! (Flex builder 4)

2010-04-09 Thread cuttenv
So I am just trying to play a video in Flex 4 using the built in spark videoplayer. I have the url for the video already but when I try to create the youtube video player my application won't let me allow the youtube.com domain!! So I can't create an instance of the player. I also tried loading

[flexcoders] Re: Youtube API and Air 1.5.3! (Flex builder 4)

2010-04-10 Thread cuttenv
/strict_policy_files to fix this problem. [SWF] /swf/lpbb.swf - 1,579 bytes after decompression [SWF] /swf/lpbf.swf - 464 bytes after decompression Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed. here is the error i'm getting --- In flexcoders@yahoogroups.com, cuttenv cutt

[flexcoders] Re: Youtube API and Air 1.5.3! (Flex builder 4)

2010-04-10 Thread cuttenv
nvm I got it working :P but has anyone had any luck loading a video into the default player?? --- In flexcoders@yahoogroups.com, cuttenv cutt...@... wrote: SecurityDomain 'http://www.youtube.com/apiplayer?version=3' tried to access incompatible context 'app:/VideoTester.swf' Warning

[flexcoders] Flex 4 list of text elements!

2010-04-10 Thread cuttenv
I have a list of text elements in an item renderer. When I try to scroll the lis though I have to make sure my mouse is not over the text areas, even though my textareas don't have any scroll bars!! Is there a way to disable the scrolling completely? I would still like the users to be able to

[flexcoders] Re: Flex 4 list of text elements!

2010-04-10 Thread cuttenv
Yah, that turns the scroll bars off but the mouse events are still captured by the text component and not the parent (the list). I guess I have to extend the textarea class and dig deeper... I was hoping there was an easier way... --- In flexcoders@yahoogroups.com, Baz li...@... wrote: In the

[flexcoders] Re: Flex 4 list of text elements!

2010-04-10 Thread cuttenv
I should mention I'm using the mx:TextArea class not the spark one. The reason I'm using the mx package one is because the spark one doesn't seem to have good html text support. For example I was unable to make some text bold, red, and a certain font. I could make the text red or a certain font

[flexcoders] Security domain in Air Flex4

2010-04-10 Thread cuttenv
*** Security Sandbox Violation *** SecurityDomain Ok I have a video player for vimeo that works perfectly FINE when I run a flex application in flex builder 4 and set Security.allowDomain() but I have to remove security allow domain in air (otherwise I get a run time error). Then when I remove

[flexcoders] Re: Security domain in Air Flex4

2010-04-10 Thread cuttenv
Guess I'll have to try loading into the html using localconnection --- In flexcoders@yahoogroups.com, cuttenv cutt...@... wrote: *** Security Sandbox Violation *** SecurityDomain Ok I have a video player for vimeo that works perfectly FINE when I run a flex application in flex

[flexcoders] spark Itemrenderer....

2010-04-22 Thread cuttenv
Anyone know if it's possible to reuse a custom item renderer in another component that just only needs one reference of this item?? Specifically I am extending a group and would like to addElement( customItemRender); to the group in the createChildren method but I am getting 0 luck... any

[flexcoders] Re: Problem sorting AdvancedDataGrid

2010-04-22 Thread cuttenv
You should check out some of the examples at the ilog exilir page.. i've said this before they have some good examples... are you adding a collectionEvent to your collection? You should be adding an eventListener so that when your collection refreshes you can do everything you need to. You can

[flexcoders] Re: as 2 to as 3 question

2010-04-22 Thread cuttenv
addChildAt --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote: You have already found a tool to decompile it, try finding an tool that will code that for you too ;)

[flexcoders] Re: Images not getting reloaded when source changes?

2010-04-22 Thread cuttenv
you should have your source as a bindable variable then you can just change that variable when you need to and the source of the image should change. I didn't look that closesly at the code... but it also looks like you are trying to load the same source into the image? If the image already has

[flexcoders] Adobe Air Bug!

2010-04-22 Thread cuttenv
I have created an adobe Air application and it works perfectly fine when I run the application in debug mode using Flash Builder. I wanted to test out a release build so I created a temporary certificate. Then when I launch my application nothing happens! I gave the air file to several other

[flexcoders] Re: spark Itemrenderer....

2010-04-22 Thread cuttenv
I have the log install file on this computer. I tried on another computer and it's still not working... --- In flexcoders@yahoogroups.com, cuttenv cutt...@... wrote: Anyone know if it's possible to reuse a custom item renderer in another component that just only needs one reference

[flexcoders] Re: Adobe Air Bug!

2010-04-22 Thread cuttenv
got anyone who got the app working there yet... any thoughts?? --- In flexcoders@yahoogroups.com, cuttenv cutt...@... wrote: I have created an adobe Air application and it works perfectly fine when I run the application in debug mode using Flash Builder. I wanted to test out a release build

[flexcoders] Re: Adobe Air Bug!

2010-04-23 Thread cuttenv
anyone know if there are existing issues?? --- In flexcoders@yahoogroups.com, cuttenv cutt...@... wrote: I have noticed something more on this error. When I install my air file to /Applications it works perfectly fine but when I install it to /Applications/Air Apps it doesn't work correctly

[flexcoders] Issues Building Flex Project with Ant

2011-12-11 Thread cuttenv
Hi I'm trying to build an application with ant and I am setting static-link-runtime-shared-librariestrue/static-link-runtime-shared-libraries I want everything to be compiled into one swf. The issue is that when I run my application after setting this value to true I get the following error:

[flexcoders] FlexUnit - Generated XML

2012-01-05 Thread cuttenv
Hi everyone, I noticed that flexunit generates a bunch of XML files I was wondering if anyone knows of any plugins or toolsets that can be used to generate a web page from all of the generated files. That way I can quickly see all of the tests that failed and passed. Thanks!

[flexcoders] VerifyError: Error #1014: Class mx.core::ByteArrayAsset could not be found.

2012-05-06 Thread cuttenv
I have been trying to narrow down this issue for awhile now I think I am rather close but not quite there yet. This is a runtime error that occurs whenever I try to compile my project on the command line. It doesn't happen in Flash Builder. I have an Actionscript only project that is throwing