User Yaba - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T05:07:43Zhttp://stackoverflow.com/feeds/user/7524http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/80756/windows-server-2003-share-current-desktop-via-rdp-like-in-windows-xp1Windows Server 2003 - Share current Desktop via RDP like in Windows XP?Yaba2008-09-17T07:19:20Z2009-12-01T19:32:39Z
<p>Unfortunately I have to use Windows Server 2003 on my 32 bit workstation due to memory constraints of Windows XP.</p>
<p>In Windows XP, when you connect via Remote Desktop the current session I am logged in is instantly shared on the Remote Desktop. I can see all the applications I have opened on my workstation and can continue to work on my open applications.</p>
<p>On Windows 2003 Server however, each Remote Desktop connection gets a new session. With no applications opened. So I have to use the Task Manager and connect to my existing session manually to see the opened applications.</p>
<p>Can this be changed so that Windows 2003 Servers acts exactly as Windows XP? I do not need to allow multiple users to connect to the box simultaneously. I would even like to prevent that, since it is used as a workstation and do not want to allow other domain users to start applications on my workstation.</p>
http://stackoverflow.com/questions/308865/good-tutorial-for-writing-maven-plugins/1819404#18194040Answer by Yaba for GOOD tutorial for writing Maven plugins?Yaba2009-11-30T12:03:50Z2009-11-30T12:03:50Z<p>I found this <a href="http://maven.apache.org/guides/plugin/guide-java-plugin-development.html" rel="nofollow">very simple introduction</a> very useful. Though not complete it helps you getting started in a few minutes.</p>
http://stackoverflow.com/questions/355938/show-all-compile-errors-in-flexbuilder0Show all compile errors in FlexBuilder?Yaba2008-12-10T12:52:18Z2009-11-17T13:26:59Z
<p>Is it possible to make FlexBuilder show all compile errors in all files? FlexBuilder does not show errors in Action Script files, that are not referenced. Also very often I fix a problem just to see new problems pop up after compiling the whole project although these errors existed long before.</p>
<p>IntelliJ is showing all compile errors it can find and I would like to have FlexBuilder behaving the same way since IntelliJ is not mature enough to handle our complex set up. Is there a compiler switch to enable this?</p>
http://stackoverflow.com/questions/277414/how-does-javafx-compare-to-flash-and-flex8How does JavaFX compare to Flash and Flex?Yaba2008-11-10T09:26:27Z2009-11-08T07:16:02Z
<p>I know Flex pretty good but also started to use Java FX. I am a little bit confused. Java FX seems to focus more on low level drawing operations and animations. Less on creating standard UIs like Flex.</p>
<p>So is JavaFX more like Flash than Flex?</p>
<p>On the other side JavaFX also supports Swing components as well as data binding, which makes it appear more like Flex.</p>
http://stackoverflow.com/questions/101532/how-to-catch-all-exceptions-in-flex5How to catch all exceptions in Flex?Yaba2008-09-19T12:43:59Z2009-10-28T12:09:34Z
<p>When I run a Flex application in the debug flash player I get an exception pop up as soon as something unexpected happened. However when a customer uses the application he does not use the debug flash player. In this case he does not get an exception pop up, but he UI is not working.</p>
<p>So for supportability reasons, I would like to catch any exception that can happen anywhere in the Flex UI and present an error message in a Flex internal popup. By using Java I would just encapsulate the whole UI code in a try/catch block, but with MXML applications in Flex I do not know, where I could perform such a general try/catch.</p>
http://stackoverflow.com/questions/221442/rest-clients-for-java7Rest clients for Java?Yaba2008-10-21T10:50:58Z2009-09-02T23:05:19Z
<p>With JSR 311 and it's implementations we have a powerful standard for exposing Java objects via Rest. However on the client side there seems to be something missing that is comparable to Apache Axis for SOAP - something that hides the web service and marshals the data transparently back to Java objects.</p>
<p>How do you create Java RESTful clients? Using HTTPConnection and manual parsing of the result? Or specialized clients for e.g. Jersey or Apache CXR?</p>
http://stackoverflow.com/questions/1018720/activate-different-maven-profiles-depending-on-current-module0Activate different Maven profiles depending on current module?Yaba2009-06-19T15:52:06Z2009-08-10T10:54:27Z
<p>We have a multi module build with modules using different technologies, like Java and Flex. Is it somehow possible to activate different profiles based on the module that is compiled currently?</p>
<p>I tried it with an activation like</p>
<pre><code><profile>
<id>flex</id>
<activation>
<file>
<exists>${basedir}/src/main/flex</exists>
</file>
</activation>
...
</profile
</code></pre>
<p>But it didn't work, although the use of ${basedir} is <a href="http://maven.apache.org/pom.html#Activation" rel="nofollow">documented in the Maven documentation</a> (this is a bug in Maven). Is there a different possibility to have different activations based on the current module? Or does Maven only allow to activate a profile for all modules or not at all?</p>
http://stackoverflow.com/questions/221442/rest-clients-for-java/1199831#11998311Answer by Yaba for Rest clients for Java?Yaba2009-07-29T12:13:37Z2009-07-29T12:13:37Z<p>Just found <a href="http://wiki.apache.org/incubator/WinkProposal" rel="nofollow">Apache Wink</a> in the Apache Incubator. Could be a interesting project for creating REST servers and clients.</p>
http://stackoverflow.com/questions/1189984/how-do-you-pull-up-the-java-console-in-opensuse-or-ubuntu/1190056#11900562Answer by Yaba for How do you pull up the java console in OpenSUSE or Ubuntu?Yaba2009-07-27T19:16:47Z2009-07-27T19:16:47Z<p>Run the command <strong>jcontrol</strong>. On the <strong>Advanced</strong> tab expand <strong>Java console</strong> and select <strong>Show console</strong>. Restart Firefox and the console should open the next time you open a Java applet in the browser.</p>
http://stackoverflow.com/questions/943627/good-resources-for-agile-development/1032349#10323490Answer by Yaba for Good resources for agile developmentYaba2009-06-23T12:46:26Z2009-06-23T12:46:26Z<p>I found the <a href="http://agilesoftwaredevelopment.com" rel="nofollow">http://agilesoftwaredevelopment.com</a> blog. It contains a lot of great articles.</p>
http://stackoverflow.com/questions/1018720/activate-different-maven-profiles-depending-on-current-module/1032307#10323070Answer by Yaba for Activate different Maven profiles depending on current module?Yaba2009-06-23T12:39:46Z2009-06-23T12:39:46Z<p>After some more research I finally came to the conclusion that this is not possible for two reasons in the current Maven version (2.1.0):</p>
<ul>
<li>Maven profiles are not inherited, so you can't define a profile in a parent POM and activate that in a child POM.</li>
<li>I haven't found a possibility to activate a profile from a POM itself. The activation does not work with ${basedir} and the property activation response only to system settings, which are globally specified through the -D option.</li>
</ul>
http://stackoverflow.com/questions/976389/how-to-examine-the-contents-of-the-flash-player-cache2How to examine the contents of the Flash Player cache?Yaba2009-06-10T15:33:21Z2009-06-11T09:14:45Z
<p>In my case I want to load the signed framework RSLs into the flash player cache. Seems to work, but how can I validate, that the swz is really being loaded into the flash player cache?</p>
<p>On my Linux box I tried to find some kind of file in ~/.macromedia, but was not successful.</p>
http://stackoverflow.com/questions/836722/how-to-place-certain-files-in-the-root-directory-of-the-grails-server0How to place certain files in the root directory of the Grails server?Yaba2009-05-07T20:00:42Z2009-05-11T21:41:52Z
<p>I am using a grails application as backend for a Flex frontend. To be able to easily develop and debug my applications I would need to place a crossdomain.xml file into the root of the server, i.e. it must be accessible via <a href="http://localhost:8080/crossdomain.xml" rel="nofollow">http://localhost:8080/crossdomain.xml</a>. Similar use cases might be the deployment of a favicon.ico or a robots.txt, however this can be done in the production environment through a tomcat server with a default root web application.</p>
<p>In my case however I need to have the crossdomain.xml available after running grails run-app. I know that I can move the entire application to the root (<a href="http://ca.rroll.net/2009/03/27/configuring-the-grails-root-application-context/" rel="nofollow">http://ca.rroll.net/2009/03/27/configuring-the-grails-root-application-context/</a>) however this is also not what I want, since the grails application should still reside below its default application context.</p>
<p>Does somehow know, how I can do this? Will I have to reconfigure the jetty servlet container of my grails installation somehow?</p>
http://stackoverflow.com/questions/818089/using-externalinterface-in-flash/840505#8405050Answer by Yaba for Using ExternalInterface in FlashYaba2009-05-08T15:50:26Z2009-05-08T15:50:26Z<p>As others said in the comments to the post of Johan, you should first check, if the External Interface is available by checking ExternalInterface.available.</p>
<p>Other than that... how do you launch the Flex Application? First it must be included in a wrapper that contains this JavaScript of course. That's trivial. However in case you launch it as file from the local filesystem (browser URL starts with file://) then you must also make sure that the SWF file has the required permissions to run a JavaScript function. </p>
<p>You must trust the SWF file to make it able to access local resources like files, or JS on local files. To do that create a file like myapp.cfg and add the path to your file as a single line to this line. Place this file in the FlashPLayerTrust folder. On Linux systems this is ~/.macromedia/Flash_Player/#Security/FlashPlayerTrust/.</p>
http://stackoverflow.com/questions/643513/memory-consumption-of-nested-flex-applications-with-rsls-using-swfloader1Memory consumption of nested flex applications with RSLs using SWFLoader?Yaba2009-03-13T16:22:50Z2009-03-13T18:23:20Z
<p>Hello out there,</p>
<p>these days I read a lot with regards to RSLs. One disadvantage is that RSLs must be loaded into memory but can save significant loading time.</p>
<p>Now what happens in the following scenario:</p>
<p>I have a superFramework.swf and a subapp.swf. subapp.swf is displayed and loaded on demand within superframework.swf using the SWFLoader. However both SWFs have dependencies to the common.swc, which will be compiled as RSL.</p>
<p>So the dependcies look like this:</p>
<pre><code>superframework.swf ---RSL---> common.swc
---SWFLoader-->subapp.swf ---RSL---> common.swc
</code></pre>
<p>Now my questions:</p>
<ul>
<li>Is the subapp.swf loaded in a separate memory space?</li>
<li>If yes: Does this mean that the common.swc RSL is loaded twice into memory?</li>
<li>If no: What about singletons like a ModelLocator in the common.swc. Is the same instance available to subapp.swf and superframework.swf at the same time?</li>
</ul>
http://stackoverflow.com/questions/187851/synchronous-dialogs-in-flex3Synchronous dialogs in Flex?Yaba2008-10-09T15:36:08Z2009-03-11T14:03:01Z
<p>How can I open a synchronous dialog in Flex? I need to call a function from an External Interface (JavaScript) that will open a simple dialog in the Flex application and returns an value according to the button the user has clicked (OK/Cancel).</p>
<p>So it should by a synchronous call to a dialog, i.e. the call waits until the user has closed the dialog like this.</p>
<pre><code>//This function is called by JavaScript
function onApplicationUnload():Boolean
{
var result:Boolean;
result = showDialogAndWaitForResult();
return result
}
</code></pre>
<p>Does anybody know how I can do this? I could write a loop that waits until the dialog has set a flag and then reads the result to return it, but there must be something that is way more elegant and reusable for waiting of the completion of other asynchronous calls.</p>
<p><strong>EDIT:</strong>
Unfortunately a callback does not work as the JavaScript function that calls onApplicationUnload() itself has to return a value (similar to the onApplicationUnload() function in Flex). This JavaScript function has a fixed signature as it is called by a framework and I cannot change it. Or in other words: The call from JavaScript to Flex must also be synchronous.</p>
http://stackoverflow.com/questions/211397/career-future-as-software-developer/479290#4792900Answer by Yaba for Career future as Software DeveloperYaba2009-01-26T10:04:34Z2009-01-26T10:04:34Z<p>As for the management part, I found an excellent answer on <a href="http://www.randsinrepose.com/archives/2009/01/25/a_disclosure.html" rel="nofollow">Rands in Repose</a>.</p>
http://stackoverflow.com/questions/211397/career-future-as-software-developer8Career future as Software DeveloperYaba2008-10-17T08:23:55Z2009-01-26T10:04:34Z
<p>It's around the time of my annual career review and each year I get asked what position I would like to get: Management? Architecture? Technical Expert?</p>
<p>So the big question here is what is the future for technical oriented people? I mean real engineers that understand 'engineering' as their life occupation.</p>
<p>Are you a 'Dilbert' like nerd? Which career path have you taken and what are the pro and cons of your path?</p>
http://stackoverflow.com/questions/454224/enough-bandwidth-to-support/454241#4542410Answer by Yaba for Enough bandwidth to supportYaba2009-01-17T22:52:45Z2009-01-17T22:52:45Z<p>A hosting provider can monitor the server 24x7. What if the server crashes at 8 pm? I the people at the small company are not working around the clock?</p>
<p>Depends on the service this DB is providing. What are the requirements to its uptime?</p>
http://stackoverflow.com/questions/427745/desktop-sharing-application-in-flex/428331#428331-1Answer by Yaba for Desktop sharing application in Flex?Yaba2009-01-09T14:51:52Z2009-01-09T14:51:52Z<p>Want to compete with Fog Creek CoPilot? ;-)</p>
<p>Well, I doubt that Flex running as SWF in a browser is able to do this due to sandbox limitations. Maybe, if you run Flex as AIR application, but I still doubt that AIR provides that level of access to the OS.</p>
<p>For Java there may be libraries that can do something like this using native interfaces. </p>
<p>Don't know how Copilot is doing this. I guess either using an Active X control or an native application that has to be installed.</p>
<p>After all I really doubt that you will be able to do this with Flex.</p>
http://stackoverflow.com/questions/427789/flash-flex-cursors/428279#4282793Answer by Yaba for Flash/Flex CursorsYaba2009-01-09T14:41:10Z2009-01-09T14:41:10Z<p>To set the the "Hand" cursor, as soon as the mouse hovers over a element you have to specify these properties:</p>
<pre><code> <mx:VBox
useHandCursor="true"
mouseChildren="false"
buttonMode="true">
</code></pre>
<p>However this only works for the Hand cursor. Also take care of the required <strong>mouseChildren</strong> attribute. You either have to set this to false to achieve the cursor for all contained items or you have to specify the attributes <strong>useHandCursor</strong> and <strong>buttonMode</strong> for all elements. However the side effect of settings <strong>mouseChildren</strong> to <strong>false</strong> is that all mouse events (<strong>mouseOver</strong>, <strong>mouseOut</strong>, <strong>click</strong>,...) on child elements will no longer work.</p>
<p>In case you want to use a different cursor than the hand cursor I am afraid you have only two possibilities:</p>
<ul>
<li>Replace the standard hand cursor by your cursor</li>
<li>Use the <strong>mouseOver</strong> and <strong>mouseOut</strong> events to set the cursor programmatically.</li>
</ul>
http://stackoverflow.com/questions/428022/css-coding-style/428074#4280740Answer by Yaba for CSS coding styleYaba2009-01-09T13:41:50Z2009-01-09T13:41:50Z<p>In addition to what others said, remember that the C stands for 'Cascading', i.e. subelements inherit from top level elements. Sound simple and straight away. But I have often seen CSS files that contain redundant declarations, e.g. for font styles. This makes a CSS more complex and hard to maintain.</p>
<p>So before you add something to your CSS make sure that it is not redundant, i.e. check parent elements and remove redundant declarations from children.</p>
<p>Given this you should organize your CSS in a way so that high level elements (like declarations for the body class) are mentioned first and more specialized elements last.</p>
http://stackoverflow.com/questions/85058/why-do-we-need-other-jvm-languages/428046#4280461Answer by Yaba for Why do we need other JVM languagesYaba2009-01-09T13:32:42Z2009-01-09T13:32:42Z<p>Because the JSR process is rendering Java more and more dead: <a href="http://www.infoq.com/news/2009/01/java7-updated" rel="nofollow">http://www.infoq.com/news/2009/01/java7-updated</a></p>
<p>It's a shame that even essential and long known additions like Closures are not added just because the members cannot agree on an implementation.</p>
http://stackoverflow.com/questions/126260/objections-against-java-webstart10Objections against Java Webstart?Yaba2008-09-24T09:47:20Z2009-01-09T00:31:40Z
<p>Since the release of Adobe AIR I am wondering why Java Web Start has not gained more attention in the past as to me it seems to be very similar, but web start is available for a much longer time.</p>
<p>Is it mainly because of bad marketing from Sun, or are there more technical concerns other than the need of having the right JVM installed? Do you have bad experiences using Web Start? If yes, which? What are you recommendations when using Web Start for distributing applications?</p>
http://stackoverflow.com/questions/405364/whats-up-with-static-memory-in-java/405373#4053733Answer by Yaba for Whats up with static memory in java?Yaba2009-01-01T19:50:53Z2009-01-01T19:50:53Z<p>This static variable <strong>some0</strong> is initialized as soon as your class is referenced in your code. In your example this will be executed in first line of your main method.</p>
<p>You can validate this by creating a static initializer block. Put a break point in this initializer block and you'll see, when it will be called. Or even more simplier... put a breakpoint in the constructor of SomeObject.</p>
http://stackoverflow.com/questions/76438/the-best-way-to-make-a-new-site-known16The best way to make a new site known?Yaba2008-09-16T20:14:30Z2008-12-16T16:49:22Z
<p>You have a cool new idea on a revolutionary new internet site (e.g. one that makes ebay look obsolete or something that might make you surpass google). However how would you start to make it known in the net as the best idea is worthless as long as nobody knows it and uses it.</p>
<p>What's your recommendation? Online Ads? Spaming blogs? But it should not be evil. Not everybody has a reputation like Joel to start up a new site and immediately get hundreds of users.</p>
http://stackoverflow.com/questions/292826/flex-prevent-scrollbar-from-covering-content-when-automatically-displayed3Flex: Prevent scrollbar from covering content when automatically displayed.Yaba2008-11-15T17:52:34Z2008-12-08T08:39:15Z
<p>I have a canvas in Flex that shall be able only to be scrolled in vertical direction, so I set the attributes of the canvas as follows:</p>
<pre><code>verticalScrollPolicy="auto" horizontalScrollPolicy="off"
</code></pre>
<p>The problem here is that the vertical scrollbar covers the content when it appears - altough there is enough horizontal room left. I would have expected that the content size would have been automatically adjusted.</p>
<p>When setting the vertical scroll policy to "on", no content is covered also.</p>
<p>In case I set both scroll policies to 'auto' I also get a horizontal scroll bar just for scrolling to the area that is covered by the vertical scroll bar.</p>
<p>Is there a workaround how I can relayout the content of the canvas when the vertical scroll bar is shown so that it does not cover any content?</p>
http://stackoverflow.com/questions/277414/how-does-javafx-compare-to-flash-and-flex/317308#3173082Answer by Yaba for How does JavaFX compare to Flash and Flex?Yaba2008-11-25T13:24:37Z2008-11-25T13:24:37Z<p>Just saw <a href="http://tech.groups.yahoo.com/group/flexcoders/message/130608" rel="nofollow">this posting</a> by Chet Haase, who previously worked on Java FX at Sun, but now works for Adobe on Flex.</p>
http://stackoverflow.com/questions/280040/corner-radius-in-adobe-air-application/280500#2805001Answer by Yaba for Corner radius in Adobe Air applicationYaba2008-11-11T10:14:43Z2008-11-11T10:14:43Z<p>You can do this by implementing a custom Border:</p>
<pre><code>package your.package
{
import flash.display.*;
import flash.geom.*;
import flash.utils.*;
import mx.skins.halo.HaloBorder;
import mx.utils.GraphicsUtil;
public class RoundedBorder extends HaloBorder
{
private var topCornerRadius:Number;
private var bottomCornerRadius:Number;
private var setup:Boolean;
/**
* Get the CSS style attributes from the element to which to apply this
* gradient.
*/
private function readElementCssStyles():void
{
topCornerRadius = getStyle("cornerRadius") as Number;
if (!topCornerRadius)
{
topCornerRadius = 0;
}
bottomCornerRadius = getStyle("bottomCornerRadius") as Number;
if (!bottomCornerRadius)
{
bottomCornerRadius = topCornerRadius;
}
}
/**
* Paint the gradient background.
*
* @param unscaledWidth
* @param unscaledHeight
*
*/
override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
{
super.updateDisplayList(unscaledWidth, unscaledHeight);
var rectWidth:Number
= unscaledWidth - this.borderMetrics.left - this.borderMetrics.right;
var rectHeight:Number
= unscaledHeight - this.borderMetrics.top - this.borderMetrics.bottom;
readElementCssStyles();
var topRadius:Number = Math.max(topCornerRadius-2, 0);
var bottomRadius:Number = Math.max(bottomCornerRadius-2, 0);
GraphicsUtil.drawRoundRectComplex(this.graphics,
this.borderMetrics.left,
this.borderMetrics.top,
rectWidth,
rectHeight,
topRadius,
topRadius,
bottomRadius,
bottomRadius);
}
}
}
</code></pre>
<p>Then in your MXML application you have to define a CSS class for your VBox like this:</p>
<pre><code> <mx:Style>
.roundedBorder
{
border-style:solid;
border-thickness: 1;
border-skin: ClassReference("your.package.RoundedBorder");
corner-radius: 5;
}
</mx:Style>
</code></pre>
<p>I have ripped this code out of a more complex class. Hope I did not forgot anything and that it will work as posted.</p>
http://stackoverflow.com/questions/260270/display-html-in-an-actionscript-3-project/277422#2774221Answer by Yaba for Display HTML in an Actionscript 3 projectYaba2008-11-10T09:31:43Z2008-11-10T09:31:43Z<p>There is an <a href="http://drumbeatinsight.com/htmlcomponent" rel="nofollow">Flex HTML component</a> available that's pretty good. It uses the browser to render the contents.</p>
<p>However it's not free. You will have to invest $149.</p>
<p>You can test the capabilities of this component <a href="http://drumbeatinsight.com/examples/htmlcomponent/iframe/HTMLFrameInApplication.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/355938/show-all-compile-errors-in-flexbuilder/1748862#1748862Comment by Yaba on Show all compile errors in FlexBuilder?Yaba2009-11-30T12:02:01Z2009-11-30T12:02:01ZYou should add a comment to this response so that he gets notified.http://stackoverflow.com/questions/277414/how-does-javafx-compare-to-flash-and-flex/1695645#1695645Comment by Yaba on How does JavaFX compare to Flash and Flex?Yaba2009-11-16T09:13:44Z2009-11-16T09:13:44ZHm... I disagree here. MXML will be translated to AS, which can cause problems. And then you have to decide whether to implement components in MXML or AS (the later is more powerful). JFX is more like JSON, but has at least a consistent syntax.http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/64187#64187Comment by Yaba on Confessions of your worst WTF Moment. (What not to do.)Yaba2009-10-06T09:29:25Z2009-10-06T09:29:25ZShow me the real-world code with 100% unit test coverage.http://stackoverflow.com/questions/1018720/activate-different-maven-profiles-depending-on-current-module/1254250#1254250Comment by Yaba on Activate different Maven profiles depending on current module?Yaba2009-08-11T12:30:56Z2009-08-11T12:30:56ZDoes not work, as with this notation it looks just once at the specified file relative to the parent POM location and does not do it for child POMs again.http://stackoverflow.com/questions/1189984/how-do-you-pull-up-the-java-console-in-opensuse-or-ubuntu/1190056#1190056Comment by Yaba on How do you pull up the java console in OpenSUSE or Ubuntu?Yaba2009-07-27T20:09:17Z2009-07-27T20:09:17ZWell, on my Ubuntu intrepid it's on the path. There is a symlink in /usr/bin/jcontrol. What does 'locate jcontrol' or 'which jcontrol' say? jcontrol is part of sun-java6-bin. Do you have this package installed?http://stackoverflow.com/questions/1189984/how-do-you-pull-up-the-java-console-in-opensuse-or-ubuntu/1190056#1190056Comment by Yaba on How do you pull up the java console in OpenSUSE or Ubuntu?Yaba2009-07-27T19:53:36Z2009-07-27T19:53:36ZAnd what's 'julius'? jcontrol is part of the Sun JRE/JDK.http://stackoverflow.com/questions/1189984/how-do-you-pull-up-the-java-console-in-opensuse-or-ubuntu/1190056#1190056Comment by Yaba on How do you pull up the java console in OpenSUSE or Ubuntu?Yaba2009-07-27T19:52:06Z2009-07-27T19:52:06Zjcontrol does neither require a host nor a port. It's a simple UI application. Do you have a Xserver running? Sounds like it cannot connect to the Xserver. Can you run xclock?http://stackoverflow.com/questions/1018720/activate-different-maven-profiles-depending-on-current-module/1019592#1019592Comment by Yaba on Activate different Maven profiles depending on current module?Yaba2009-06-22T14:56:27Z2009-06-22T14:56:27ZDoes not work here. I defined a profile in a parent with a "property" activation and used the <property> section to defined that property to the respective value to activate the profile. The profile is not activated. Even in case I specify the property with mvn -Dproperty=value. The last works only in case I run it on the parent. Seems like the property must in fact be a system property specified through the -D option and profiles are not inherited at all, which makes this useless for me :-(http://stackoverflow.com/questions/976389/how-to-examine-the-contents-of-the-flash-player-cache/980026#980026Comment by Yaba on How to examine the contents of the Flash Player cache?Yaba2009-06-11T09:02:03Z2009-06-11T09:02:03ZThank you very much for the information. This helped a lot. There are several bugs with FlashPlayer 9.x and Linux. Another problem is that the signature cannot be verified. So far I am using FlashPlayer 10.x and had no more problems so far. I hope that this is also true for this bug.http://stackoverflow.com/questions/976389/how-to-examine-the-contents-of-the-flash-player-cache/976404#976404Comment by Yaba on How to examine the contents of the Flash Player cache?Yaba2009-06-10T15:59:17Z2009-06-10T15:59:17ZHi Fenomas, I am talking about signed RSLs that go into the Flash Player cache, not standard RSLs that are cached by the browser.http://stackoverflow.com/questions/818089/using-externalinterface-in-flash/819586#819586Comment by Yaba on Using ExternalInterface in FlashYaba2009-05-08T15:42:00Z2009-05-08T15:42:00ZThis goes in the wrong direction. The poster wants to call Java Script from Action Script. Add Callback allows JavaScript to call ActionScript functions.http://stackoverflow.com/questions/643513/memory-consumption-of-nested-flex-applications-with-rsls-using-swfloader/643984#643984Comment by Yaba on Memory consumption of nested flex applications with RSLs using SWFLoader?Yaba2009-03-17T23:24:56Z2009-03-17T23:24:56Z...RSLs are reused.http://stackoverflow.com/questions/643513/memory-consumption-of-nested-flex-applications-with-rsls-using-swfloader/643984#643984Comment by Yaba on Memory consumption of nested flex applications with RSLs using SWFLoader?Yaba2009-03-17T23:24:23Z2009-03-17T23:24:23ZIndirectly... I want to use Module Loader instead of the SWF Loader to load components on demand from a bigger framework. As these components may have dependencies to RSLs that are also required and already loaded by the framework, my assumption is that using the Module Loader the already loaded...http://stackoverflow.com/questions/643513/memory-consumption-of-nested-flex-applications-with-rsls-using-swfloader/643984#643984Comment by Yaba on Memory consumption of nested flex applications with RSLs using SWFLoader?Yaba2009-03-14T09:46:38Z2009-03-14T09:46:38ZThank you for your answer... well... after some more reading I guess that I do not want to use the SWFLoader, but to use the ModuleLoader with Modules instead. My assumption is that in this case, RSLs are shared.http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/64886#64886Comment by Yaba on Confessions of your worst WTF Moment. (What not to do.)Yaba2008-12-15T14:02:07Z2008-12-15T14:02:07ZHappened here, too. Someone just lend at the wall and did not realize what he has done until the administrators rushed out yelling.