User hasseg - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T03:35:56Z http://stackoverflow.com/feeds/user/4111 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/295615/unhandled-socket-securityerror-even-when-seemingly-handling-it 1 Unhandled Socket securityError even when (seemingly) handling it hasseg 2008-11-17T13:58:35Z 2009-10-10T01:00:01Z <p>I Have a problem where I occasionally (i.e. not always) see the below error popup from the Debug Flash Player after launching my app:</p> <pre><code>Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox violation: http://example.com/myApp.swf cannot load data from localhost:4499. at org.mydomain.mypackage::MyClassUsingSocket() at MyMainApplicationClass$cinit() at global$init() at global$init() at flash.system::ApplicationDomain/hasDefinition() at mx.managers::SystemManager/getDefinitionByName() at _MyMainApplicationClass_mx_managers_SystemManager/create() at mx.managers::SystemManager/initializeTopLevelWindow() at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::docFrameHandler() </code></pre> <p>I have some code in this app that tries to connect to <code>localhost:4499</code> via a <code>Socket</code>, and this error occurs when the socket server is not running and listening for the connections, <em>which is to be expected</em>. What I <em>don't</em> understand, however, is <strong>why Flash Player is complaining about unhandled securityErrors when I have try/catch blocks to catch the <code>SecurityError</code>s</strong> when trying to connect the socket (as well as listeners for the <code>SecurityErrorEvents</code>, which this error message doesn't seem to point to, though).</p> <p>The constructor of the relevant class is below:</p> <pre><code>/** * Constructor. */ public function MyClassUsingSocket(aHost:String = null, aPort:int = -1):void { super(); var hostToConnectTo:String = (aHost != null) ? aHost : DEFAULT_HOST; var portToConnectTo:int = (aPort != -1) ? aPort : DEFAULT_PORT; try { _out_socket = new Socket(); // note: the event handlers used below are private functions within the same class _out_socket.addEventListener(Event.CONNECT, _socketConnectEventHandler, false,0,true); _out_socket.addEventListener(IOErrorEvent.IO_ERROR, _socketIOErrorEventHandler, false,0,true); _out_socket.addEventListener(SecurityErrorEvent.SECURITY_ERROR, _socketSecurityErrorEventHandler, false,0,true); _out_socket.connect(hostToConnectTo, portToConnectTo); } catch(e:IOError) { enabled = false; } catch(e:SecurityError) { enabled = false; } } </code></pre> <p>Any ideas on why this might be occurring? What am I missing?</p> http://stackoverflow.com/questions/1353715/should-i-optimise-my-python-code-like-c-does-it-matter/1353728#1353728 3 Answer by hasseg for Should I optimise my python code like C++? Does it matter? hasseg 2009-08-30T11:55:53Z 2009-08-30T11:55:53Z <blockquote> <p>I should also say that context of the code is not a super-efficient NOC or missile-guidance systems. We're mostly writing tests in python.</p> </blockquote> <p>Given this, I'd say that you should take your colleague's advice about writing efficient Python but ignore anything he says that goes against prioritizing readability and maintainability of the code, which will probably be more important than the speed at which it'll execute.</p> http://stackoverflow.com/questions/1329199/in-which-class-would-you-put-these-methods/1329222#1329222 1 Answer by hasseg for In which class would you put these methods? hasseg 2009-08-25T15:58:19Z 2009-08-25T16:05:23Z <p>From these two options I would vote for <code>Suspension::add()</code>, if in fact this call would <em>add an entry to the suspensions table</em>. That way the effect that this call in the code has, in terms of the code itself (i.e. not the concepts represented by the code), would be clear: if I saw the code <code>User::suspend()</code>, I would expect it to modify a <code>"suspended"</code> flag for the User object, not modify something else in some other object.</p> <p>On the other hand, in this particular instance, I think <code>User::suspend()</code> is more clear in general, so I would vote for it if it would mean that a <code>suspended</code> flag would be set for that User object, <em>or if it would seem that way from the interface</em>, i.e. if you wouldn't have to care where the suspension is stored since the interface of the <code>User</code> class would make it seem as if it's one of its properties.</p> http://stackoverflow.com/questions/1323658/why-do-applescript-tell-commands-run-a-non-gui-instance-of-my-gui-application-i 0 Why do AppleScript "tell" commands run a non-GUI instance of my GUI application in the background? hasseg 2009-08-24T17:20:20Z 2009-08-24T20:11:52Z <p>I'm writing a standard Cocoa application, and I've just started implementing AppleScript support for it. I've defined and implemented a property called <code>testprop</code> for my top-level application scripting class, and accessing it works just fine: if I launch an instance of my app and run the following AppleScript in Script Editor, I get the output I expect:</p> <pre><code>tell application "MyApp" testprop end tell </code></pre> <p>However if I run this very same AppleScript in the Script Editor <em>when my app is not running</em>, it returns the last known value for this property, and continues to return it for subsequent calls. I don't see an instance of my app getting started anywhere in the GUI.</p> <p>After I noticed this, I ran <code>"ps xawww | grep MyApp"</code> in the shell, which told me that a process had been created using my app's main executable, with an argument that looks something like this: <code>-psn_0_323663</code> (the number at the end changes each time this process is started -- I gather that it's the "process serial number" that AppleScript (among others) uses to keep track of and control processes).</p> <p>What is going on here? How can I prevent this from happening (i.e. launch my app as a full, proper GUI-enabled instance when AppleScript "tell" commands for it are run)?</p> <p><strong><em>Edit:</em></strong></p> <p>The above seems to occur only on my laptop. When I try exactly the same thing on my Mac Mini (the OS version is the same on both: 10.5.8), I simply get an error message:</p> <pre><code>$ osascript -e "tell application \"MyApp\"" -e "testprop" -e "end tell" 26:40: execution error: The variable testprop is not defined. (-2753) </code></pre> http://stackoverflow.com/questions/456604/ansi-color-extraction-library-in-c-objective-c/1259751#1259751 2 Answer by hasseg for ANSI Color extraction library in C/Objective-C hasseg 2009-08-11T11:20:43Z 2009-08-11T11:20:43Z <p>I've written a class (called <a href="http://hasseg.org/ansiEscapeHelper/" rel="nofollow">ANSIEscapeHelper</a>) to translate between <code>NSStrings</code> that contain ANSI escape sequences and similarly formatted <code>NSAttributedStrings</code>. It's released under the MIT License.</p> http://stackoverflow.com/questions/1246884/flex-3-how-do-i-determine-if-a-generic-object-is-actually-a-button/1247488#1247488 3 Answer by hasseg for Flex 3: How do I determine if a generic Object is actually a button? hasseg 2009-08-07T23:44:21Z 2009-08-07T23:44:21Z <p>If you want to loop through the elements of an array, use a "<code>for each..in</code>" loop, and if you want to see if a variable is compatible with a given type (e.g. an instance of a given class), use the <code>is</code> operator.</p> <p>The language reference has <a href="http://livedocs.adobe.com/flex/3/langref/statements.html#for%5Feach..in" rel="nofollow">an example</a> for this exact kind of case.</p> <p>Here's the fixed code:</p> <pre><code>for each (var btn:Object in btnContainer.getChildren()){ if (btn is Button){ btn.selected = false; } } </code></pre> http://stackoverflow.com/questions/1115221/how-do-you-enable-javascript-in-a-webview/1115242#1115242 2 Answer by hasseg for How do you enable javascript in a WebView hasseg 2009-07-12T03:25:36Z 2009-07-12T03:32:18Z <p>You don't have to do anything to enable JavaScript; it's enabled in the <code>WebView</code> by default. And like you said, you can always check in Interface Builder that the JavaScript checkbox is selected.</p> <p>What you have to do, though, is make sure that <strong>the <code>baseURL</code> you're specifying is correct</strong> (since in the html file you're referring to <code>jquery.js</code> with a relative URL using just the filename) and that you've <strong>included the <code>jquery.js</code> file into the bundle resources</strong>.</p> <p>The code you posted will result in a <code>nil</code> value for the <code>url</code> variable: <code>+URLWithString:</code> expects a valid URL string (that conforms to RFC 2396) as the argument (which the filesystem path you're providing is not). What you want is <code>+fileURLWithPath:</code>, and you also need to use the filesystem path of the directory where <code>index.html</code> and <code>jquery.js</code> reside, which you can get by removing the filename from the path you've got (using <code>NSString</code>'s <code>-stringByDeletingLastPathComponent:</code>). Here's how you get the correct <code>baseURL</code>:</p> <pre><code>NSURL *url = [NSURL fileURLWithPath:[filePath stringByDeletingLastPathComponent]]; </code></pre> http://stackoverflow.com/questions/925020/how-to-expand-and-collapse-parts-of-nssplitview-programatically/1103242#1103242 1 Answer by hasseg for How to expand and collapse parts of NSSplitView programatically? hasseg 2009-07-09T11:13:00Z 2009-07-09T11:13:00Z <p>I just got programmatic expanding and collapsing of <code>NSSplitView</code> to work. I've also configured my <code>NSSplitView</code> to expand/collapse a subview whenever the divider is double-clicked, so I wanted this to play nice with that feature (and it seems to). This is what I did:</p> <p>(in this example, <code>splitView</code> is the <code>NSSplitView</code> itself, <code>splitViewSubViewLeft</code> is the subview I wish to expand/collapse and <code>lastSplitViewSubViewLeftWidth</code> is an instance variable of type <code>CGFloat</code>.)</p> <pre><code>// subscribe to splitView's notification of subviews resizing // (I do this in -(void)awakeFromNib) [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(mainSplitViewWillResizeSubviewsHandler:) name:NSSplitViewWillResizeSubviewsNotification object:splitView ]; // this is the handler the above snippet refers to - (void) mainSplitViewWillResizeSubviewsHandler:(id)object { lastSplitViewSubViewLeftWidth = [splitViewSubViewLeft frame].size.width; } // wire this to the UI control you wish to use to toggle the // expanded/collapsed state of splitViewSubViewLeft - (IBAction) toggleLeftSubView:(id)sender { [splitView adjustSubviews]; if ([splitView isSubviewCollapsed:splitViewSubViewLeft]) [splitView setPosition:lastSplitViewSubViewLeftWidth ofDividerAtIndex:0 ]; else [splitView setPosition:[splitView minPossiblePositionOfDividerAtIndex:0] ofDividerAtIndex:0 ]; } </code></pre> http://stackoverflow.com/questions/519482/proper-dictionary-map-tree-hash-container-in-flex/520029#520029 3 Answer by hasseg for proper dictionary/map/tree/hash container in Flex hasseg 2009-02-06T11:51:40Z 2009-06-01T09:15:54Z <p>The <a href="http://code.google.com/p/as3ds/" rel="nofollow">as3ds</a> project has a bunch of <a href="http://code.google.com/p/as3ds/source/browse/#svn/trunk/src/de/polygonal/ds" rel="nofollow">collections classes</a> for AS3. Haven't used them myself but they look very capable (and I might add, focused on performance). Uses the MIT license.</p> <p><a href="http://code.google.com/p/maashaack/" rel="nofollow">Maashaack</a> has some <a href="http://code.google.com/p/maashaack/source/browse/#svn/trunk/AS3/src/system/data" rel="nofollow">collections classes</a> as well. They use MPL 1.1/GPL 2.0/LGPL 2.1.</p> http://stackoverflow.com/questions/53025/best-way-to-implement-11-asynchronous-callbacks-events-in-actionscript-3-flex 1 Best way to implement 1:1 asynchronous callbacks/events in ActionScript 3 / Flex / AIR? hasseg 2008-09-09T22:13:54Z 2009-05-19T18:58:08Z <p>I've been utilizing the <a href="http://en.wikipedia.org/wiki/Command_pattern" rel="nofollow">command pattern</a> in my Flex projects, with asynchronous callback routes required between:</p> <ul> <li>whoever instantiated a given command object and the command object,</li> <li>the command object and the "data access" object (i.e. someone who handles the remote procedure calls over the network to the servers) that the command object calls.</li> </ul> <p>Each of these two callback routes has to be able to be a one-to-one relationship. This is due to the fact that I might have several instances of a given command class running the exact same job at the same time but with slightly different parameters, and I don't want their callbacks getting mixed up. Using events, the default way of handling asynchronicity in AS3, is thus pretty much out since they're inherently based on one-to-many relationships.</p> <p>Currently I have done this using <strong>callback function references</strong> with specific kinds of signatures, but I was wondering <em>if someone knew of a better (or an alternative) way?</em></p> <p>Here's an example to illustrate my current method:</p> <ul> <li>I might have a view object that spawns a <code>DeleteObjectCommand</code> instance due to some user action, passing references to two of its own private member functions (one for success, one for failure: let's say <code>"deleteObjectSuccessHandler()"</code> and <code>"deleteObjectFailureHandler()"</code> in this example) as callback function references to the command class's constructor.</li> <li>Then the command object would repeat this pattern with its connection to the "data access" object.</li> <li>When the RPC over the network has successfully been completed (or has failed), the appropriate callback functions are called, first by the "data access" object and then the command object, so that finally the view object that instantiated the operation in the first place gets notified by having its <code>deleteObjectSuccessHandler()</code> or <code>deleteObjectFailureHandler()</code> called.</li> </ul> http://stackoverflow.com/questions/783225/how-should-i-track-widget-renders/783397#783397 1 Answer by hasseg for How should I track widget renders? hasseg 2009-04-23T20:30:57Z 2009-04-23T20:30:57Z <p>All of the three options you mention seem like perfectly valid ways to do this, but registering these hits at the same time as returning either the .swf or the .xml config file seems like a smart thing to do because AFAIK most browsers have a pretty low limit to the number of concurrent HTTP requests they can make to the same host (I think it's two or something like that) so if more requests have to be made in order to render something in the browser, the ones going over this limit will have to wait for the first ones to finish before being initiated. It'd also probably entail slightly less work for you.</p> <p>The only difference I can think of is that returning the .swf doesn't yet mean that a Flash Player instance will render it so "registering renders" when returning the config xml seems like it would give you a more solid measurement of how many times someone's browser has successfully loaded and shown them this .swf (assuming that the Flash app will initiate the request for this config file after it has successfully been loaded).</p> <p>As far as the scaling issue goes, regardless of when you'd be registering the hit it'd still require the same amount of processing on the server (which I can't imagine being very high for something like this), so I don't see this as a big concern.</p> http://stackoverflow.com/questions/712458/loading-multiple-embedded-flash-apps-onto-an-html-page-problem-with-ordering/713646#713646 0 Answer by hasseg for Loading multiple embedded flash apps onto an HTML page- problem with ordering hasseg 2009-04-03T12:02:37Z 2009-04-03T12:02:37Z <p>I would use Javascript and <a href="http://code.google.com/p/swfobject/" rel="nofollow">swfobject</a> to load the Flash apps sequentially onto the page. The javascript code would contain the order it wants to load the flash apps in and each Flash app should notify the javascript on the containing page when it has completed loading by calling a function in the javascript via <a href="http://livedocs.adobe.com/flex/3/langref/flash/external/ExternalInterface.html" rel="nofollow">ExternalInterface</a>, which would then trigger the loading of the next Flash app in the list.</p> http://stackoverflow.com/questions/676655/frameset-in-flex-application/678291#678291 0 Answer by hasseg for Frameset in flex application ? hasseg 2009-03-24T16:56:26Z 2009-03-24T16:56:26Z <p>If what you're after is just a similar GUI component container layout than what you'd get using HTML frames, check out the <a href="http://livedocs.adobe.com/flex/3/langref/mx/containers/DividedBox.html" rel="nofollow"><code>DividedBox</code></a> component (as well as its horizontal and vertical subclasses, <code>HDividedBox</code> and <code>VDividedBox</code>.) You can use the <a href="http://examples.adobe.com/flex3/consulting/styleexplorer/Flex3StyleExplorer.html#" rel="nofollow">Flex 3 Style Explorer</a> to see what they look and feel like. You can nest them inside each other just like with framesets.</p> http://stackoverflow.com/questions/675596/how-to-prevent-the-os-x-text-layout-engine-from-automatically-flipping-lines-wi 1 How to prevent the OS X text layout engine from automatically "flipping" lines with right-to-left text? hasseg 2009-03-23T23:20:01Z 2009-03-23T23:36:01Z <p>How do I make Apple's Cocoa GUI controls <em>not</em> automatically "flip" lines that contain right-to-left text (such as arabic)?</p> <p>Behold my test case, wherein I plan to keep the asterisks (<code>**</code>) in the beginning of the lines when they are printed on screen:</p> <pre><code>#import &lt;Foundation/Foundation.h&gt; int main(int argc, char *argv[]) { NSAutoreleasePool *autoReleasePool = [[NSAutoreleasePool alloc] init]; NSString *str1 = @"** english first then arabic تجر\n"; NSString *str2 = @"** تجر arabic first then english\n"; [str1 writeToFile:@"/dev/stdout" atomically:NO encoding:NSUTF8StringEncoding error:NULL]; [str2 writeToFile:@"/dev/stdout" atomically:NO encoding:NSUTF8StringEncoding error:NULL]; [autoReleasePool release]; return 0; } </code></pre> <p>When I run this in Terminal.app I get:</p> <pre><code>$ gcc -framework Foundation test.m $ ./a.out ** english first then arabic تجر arabic first then english تجر ** </code></pre> <p>In iTerm, though, the lines don't get "flipped":</p> <pre><code>$ gcc -framework Foundation test.m $ ./a.out ** english first then arabic تجر ** تجر arabic first then english </code></pre> <p>Based on some cursory examination of iTerm's code, it looks like this is due to iTerm's "manual" character-by-character handling of output and Terminal.app's (assumed) use of OS-native string layout APIs. Is there any way to prevent this "flippage" from occurring when using, for example, <code>NSTextView</code> to display these kinds of strings? I couldn't find any answers in Apple's documentation.</p> <p>I'm running an english Mac OS 10.5.6 with english as the #1 language in the list under <em>System Preferences > International > Language</em>.</p> http://stackoverflow.com/questions/638381/fastest-way-to-delete-one-entry-from-the-middle-of-array/638435#638435 1 Answer by hasseg for Fastest way to delete one entry from the middle of Array() hasseg 2009-03-12T12:39:10Z 2009-03-12T12:39:10Z <p><a href="http://livedocs.adobe.com/flex/3/langref/Array.html#splice%28%29" rel="nofollow">Array.splice()</a> <em>"adds elements to and removes elements from an array"</em>:</p> <pre><code>myArr.splice(indexToRemove, 1); // only removing one index, thus the 1 </code></pre> http://stackoverflow.com/questions/590378/how-to-load-wsdl-from-file/590414#590414 1 Answer by hasseg for How to load WSDL from file hasseg 2009-02-26T12:49:00Z 2009-02-26T14:39:48Z <p>If the file is local, just use <a href="http://en.wikipedia.org/wiki/File%5FURI%5Fscheme" rel="nofollow">the file URI scheme</a>:</p> <p><code>file://host/path/file.wsdl</code></p> <p>If this doesn't work, check if <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=05B%5FSecurity%5F02.html" rel="nofollow">the security sandbox</a> features are blocking it.</p> <p>In AIR apps, in order to access files in the application's <a href="http://livedocs.adobe.com/flex/3/langref/flash/filesystem/File.html#applicationStorageDirectory" rel="nofollow">temporary storage directory</a> or the <a href="http://livedocs.adobe.com/flex/3/langref/flash/filesystem/File.html#applicationDirectory" rel="nofollow">application's own directory</a>, you need to use special <code>app:</code> or <code>app-storage:</code> URL schemes, though.</p> <p>Like <a href="#590440" rel="nofollow">dirkgently said</a>, you can always embed the file into the application, but as far as I know, you then won't be able to modify it afterwards in a persistent manner since it's not just a file in the filesystem. Probably the best option for you is to embed this file and if you later need to update it, have the app save an updated version into the <code>File.applicationStorageDirectory</code> (which you would then always check first before using the default embedded version.) Although I have no idea if using embedded XML files with the WebService classes is even possible.</p> <p>See <a href="http://dispatchevent.org/roger/embed-almost-anything-in-your-swf/" rel="nofollow">this article</a> for info on how to embed external XML files into your app. This is how I've done it:</p> <pre><code>// note: common sense says that the mimeType should be "text/xml" here but // it doesn't work -- this does, though. who knows why. [Embed(source="File.xml", mimeType="application/octet-stream")] private const _fileXMLClass:Class; private var _fileXML:XML = XML(new _fileXMLClass()); </code></pre> http://stackoverflow.com/questions/584361/in-actionscript-whats-the-best-way-to-check-if-a-xml-node-property-exists/584376#584376 4 Answer by hasseg for In actionscript, what's the best way to check if a xml node property exists? hasseg 2009-02-25T01:09:49Z 2009-02-25T01:09:49Z <p>See <a href="http://stackoverflow.com/questions/149206/best-way-to-determine-whether-a-xml-attribute-exists-in-flex/149316#149316">question #149206: "Best way to determine whether a XML attribute exists in Flex"</a>.</p> <p>I suggested doing <code>event.result.hasOwnProperty("@attrName")</code> but <a href="http://stackoverflow.com/questions/149206/best-way-to-determine-whether-a-xml-attribute-exists-in-flex/149794#149794">the answer with the most upvotes</a> (at the time of this writing) by Theo suggests this:</p> <pre><code>event.result.attribute("attrName").length() &gt; 0 </code></pre> http://stackoverflow.com/questions/573305/whats-best-practice-for-including-external-actionscript-files-in-flex-application/573405#573405 4 Answer by hasseg for Whats best practice for including external actionscript files in flex application hasseg 2009-02-21T17:16:16Z 2009-02-21T18:48:04Z <p>To answer the more general question: importing is the preferred way of including external files. In my opinion the <code>include</code> statement should be only used when nothing else will do as it makes things a bit more difficult to debug if something goes wrong and makes code usually more difficult to read and comprehend. <a href="#573349" rel="nofollow">Assaf's description</a> of what <code>import</code> and <code>include</code> do is correct.</p> <p>And then for the more specific problem you seem to have: you're probably trying to do the <code>testing.init();</code> right there in the <code>&lt;script&gt;</code> block -- try putting it in a method. You should only have things like <code>import</code> statements and member declarations (variables, functions) directly in the script block and statements like this within functions.</p> <p>You're seeing that error message because when you're calling the <code>init()</code> method of this object, it hasn't been created yet -- that statement will be executed when the definition of the class that your MXML file represents is loaded; what you want is to have it executed when a particular instance of this class has been created, and you can do that by calling it in the constructor of the class (this is, as far as I know, not possible when you're writing a class using MXML, so read on:) or for example in a handler function for the <code>FlexEvent.CREATION_COMPLETE</code> (or <code>creationComplete</code> in terms of MXML tag attributes) event (see the example below.)</p> <p>Try something like this:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="800" height="600" creationComplete="creationCompleteHandler();" &gt; &lt;mx:Script&gt; &lt;![CDATA[ import lib.Journal; public var testing:Journal = new Journal(); private function creationCompleteHandler():void { testing.init(); } ]]&gt; &lt;/mx:Script&gt; &lt;/mx:Application&gt; </code></pre> http://stackoverflow.com/questions/532460/enhanced-flex-textarea-text-viewer-components/532883#532883 0 Answer by hasseg for Enhanced Flex textarea / text viewer components? hasseg 2009-02-10T15:53:32Z 2009-02-10T15:53:32Z <p>Grant Skinner's <a href="http://www.gskinner.com/blog/archives/2009/01/editable_multif.html" rel="nofollow">TextFlowPro</a> seems very cool. Not sure what you mean by this question exactly, though.</p> http://stackoverflow.com/questions/38651/any-way-to-have-an-actionscript-3-flex-air-project-print-to-standard-output 2 Any way to have an ActionScript 3 (Flex/AIR) project print to standard output? hasseg 2008-09-02T00:27:49Z 2009-02-09T16:24:49Z <p>Is there any way to have a binary compiled from an ActionScript 3 project print stuff to <em>stdout</em> when executed?</p> <p>From what I've gathered, people have been going around this limitation by writing hacks that rely on local socket connections and AIR apps that write to files in the local filesystem, but that's pretty much it -- it's obviously not possible with the Flash Player and AIR runtimes from Adobe.</p> <p>Is there any project (e.g. based on the Tamarin code) that is attempting to implement something that would provide this kind of functionality?</p> http://stackoverflow.com/questions/503626/loosely-coupled-flex-3-sibling-components/503973#503973 1 Answer by hasseg for loosely coupled Flex 3 sibling components hasseg 2009-02-02T17:08:09Z 2009-02-02T17:08:09Z <p>What you've done here is a kind of implementation of the <a href="http://en.wikipedia.org/wiki/Mediator_pattern" rel="nofollow">mediator pattern</a>, which is a perfectly acceptable way of doing things, and probably the "best practice" you're looking for, in my opinion, since the components you're using are not directly dependent on each other -- they just dispatch events and let someone else handle the "higher-level" functionality.</p> <p>An alternative way to do this is <a href="http://en.wikipedia.org/wiki/Dependency_injection" rel="nofollow">dependency injection</a>, where you give the components references to each other and let them communicate directly. This way you <em>would</em> make the components dependent on each other (or maybe not exactly each other, but anything that implements the same interfaces) but you wouldn't have to write any mediator code. Here, as opposed to the mediator pattern, the "higher-level" functionality I was referring to would in fact be the responsibility of the components themselves instead of someone else (the mediator.)</p> http://stackoverflow.com/questions/499385/check-component-initilaze-before-add-events-in-actionscript-3/501123#501123 1 Answer by hasseg for Check component initilaze before add events in actionscript 3 hasseg 2009-02-01T16:45:41Z 2009-02-01T16:45:41Z <p>May I inquire what it is that you're trying to do, in more general terms?</p> <p>If you just want to avoid null reference errors, just check the reference (variable) you're using for <code>null</code>:</p> <pre><code>if (_myComponent != null) { // add listeners } </code></pre> <p>If for some other reason you really need to know if the component has been initialized before you do this, you need it to dispatch some kind of event for this (Flex's <code>UIComponents</code> dispatch <code>FlexEvent.INITIALIZE</code> events, but I assume you're not using Flex) or alternatively set an "initialized" property, which I'm not so sure the standard Flash components do (I'm looking at <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/controls/Button.html" rel="nofollow">the <code>Button</code> documentation</a> for reference here.) You could of course make a custom subclass of whichever component you're using for yourself where you implement an <code>initialized</code> property, but I'm not sure how you could implement this for any of the standard Flash components. I am also not quite sure what you mean by "initialization" in this context :)</p> http://stackoverflow.com/questions/468925/in-actionscript3-how-do-you-get-a-reference-to-an-objects-class/468998#468998 3 Answer by hasseg for In ActionScript3, how do you get a reference to an object's class? hasseg 2009-01-22T12:54:09Z 2009-01-22T13:01:01Z <p>You can use <a href="http://livedocs.adobe.com/flex/3/langref/Object.html#constructor" rel="nofollow">the <code>constructor</code> property</a> if your object has been created from a class (from the docs: <em>"If an object is an instance of a class, the constructor property holds a reference to the class object. If an object is created with a constructor function, the constructor property holds a reference to the constructor function."</em>):</p> <pre><code>var classRef:Class = myObject.constructor as Class; </code></pre> <p>Or you can use <a href="http://livedocs.adobe.com/flex/3/langref/flash/utils/package.html#getQualifiedClassName()" rel="nofollow"><code>flash.utils.getQualifiedClassName()</code></a> and <a href="http://livedocs.adobe.com/flex/3/langref/flash/utils/package.html#getDefinitionByName()" rel="nofollow"><code>flash.utils.getDefinitionByName()</code></a> (not a very nice way since this entails unnecessary string manipulation in the implementations of these library functions):</p> <pre><code>var classRef:Class = getDefinitionByName(getQualifiedClassName(myObject)) as Class; </code></pre> http://stackoverflow.com/questions/454044/flex-app-and-title-missing-in-browser/455355#455355 0 Answer by hasseg for flex app and title missing in browser hasseg 2009-01-18T15:58:29Z 2009-01-18T15:58:29Z <p>The culprit might be the <a href="http://livedocs.adobe.com/flex/3/langref/mx/managers/IBrowserManager.html" rel="nofollow"><code>IBrowserManager</code></a>. Are you using it? And if you are, are you calling its <a href="http://livedocs.adobe.com/flex/3/langref/mx/managers/IBrowserManager.html#init()" rel="nofollow"><code>init()</code></a> method with a null value for the <code>title</code> argument when your application initializes?</p> http://stackoverflow.com/questions/452140/how-do-i-use-a-pre-defined-css-style-for-a-programmatically-drawn-textfield/452291#452291 0 Answer by hasseg for How do I use a pre-defined CSS style for a programmatically drawn TextField? hasseg 2009-01-16T22:33:18Z 2009-01-16T22:33:18Z <p>Basically you can just add <code>[style]</code> metadata tags to your custom class to define your custom style properties, specify values for those properties in your css, and use <code>getStyle("myCustomStylePropertyName")</code> in your code to get the values set in the css.</p> <p>See <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=skinstyle_3.html" rel="nofollow">Flex 3 help: Example: Creating style properties</a> for more info.</p> http://stackoverflow.com/questions/446253/flex-and-air-passing-data-between-each-other/447648#447648 1 Answer by hasseg for Flex and AIR passing data between each other hasseg 2009-01-15T17:20:00Z 2009-01-15T17:20:00Z <blockquote> <p><em>Has anyone any other ways of transferring data between AIR &amp; flex.</em></p> </blockquote> <p><a href="http://livedocs.adobe.com/flex/3/langref/flash/net/LocalConnection.html" rel="nofollow"><code>flash.net.LocalConnection</code></a> is the standard method of doing this, and although it has its quirks, it works quite well. This is what I use to transfer data from a Flex app (that's running in a browser, although it shouldn't matter whether it's running in the browser plugin or the stand-alone Flash Player) to an AIR app.</p> http://stackoverflow.com/questions/447002/in-flex-how-do-i-know-when-the-properties-of-a-dynamic-object-change/447621#447621 2 Answer by hasseg for In Flex, how do I know when the properties of a dynamic object change? hasseg 2009-01-15T17:11:57Z 2009-01-15T17:11:57Z <p>You can subclass this class of yours from <a href="http://livedocs.adobe.com/flex/3/langref/flash/utils/Proxy.html" rel="nofollow"><code>mx.utils.Proxy</code></a>. It allows you to have the object be dynamic yet still be able to write some custom code that runs whenever properties are accessed (similarly to getters and setters -- see <a href="http://livedocs.adobe.com/flex/3/langref/flash/utils/Proxy.html#getProperty()" rel="nofollow"><code>getProperty()</code></a> and <a href="http://livedocs.adobe.com/flex/3/langref/flash/utils/Proxy.html#setProperty()" rel="nofollow"><code>setProperty()</code></a>.)</p> http://stackoverflow.com/questions/446482/overload-operator-in-as3/446683#446683 3 Answer by hasseg for Overload [] operator in AS3 hasseg 2009-01-15T13:20:24Z 2009-01-15T13:20:24Z <p>You should take a look at <a href="http://livedocs.adobe.com/flex/3/langref/flash/utils/Proxy.html" rel="nofollow"><code>mx.utils.Proxy</code></a> -- subclassing your collection class from that (and setting it as dynamic) might give you access to some of the functionality you want (or at least something that's close enough.)</p> <p>For example, here's an excerpt from the documentation of the <code>nextValue()</code> method:</p> <blockquote> <p><em>"Allows enumeration of the proxied object's properties by index number to retrieve property values. However, you cannot enumerate the properties of the Proxy class themselves. <strong>This function supports implementing <code>for...in</code> and <code>for each..in</code> loops on the object to retrieve the desired values."</em></strong></p> </blockquote> http://stackoverflow.com/questions/378492/flex-component-access-other-component/380269#380269 1 Answer by hasseg for Flex component access other component hasseg 2008-12-19T07:05:20Z 2008-12-19T07:05:20Z <p>You could either do <a href="http://en.wikipedia.org/wiki/Dependency_injection" rel="nofollow">dependency injection</a>, that is, give component <code>A</code> a reference to component <code>B</code> so that they can communicate directly (example of tighter coupling,) or have both components communicate through a common <a href="http://en.wikipedia.org/wiki/Mediator_pattern" rel="nofollow">mediator</a> using events (example of more loose coupling.)</p> <p>Both of those options would be implemented wherever it is that you're creating those components (<code>A</code> and <code>B</code> in this example) and adding them to the display list.</p> http://stackoverflow.com/questions/378547/pre-load-multiple-videos-in-flash-in-flex/380261#380261 3 Answer by hasseg for Pre-Load Multiple Videos in Flash? In Flex? hasseg 2008-12-19T06:55:49Z 2008-12-19T06:55:49Z <p>You could try looking at the <a href="http://code.google.com/p/bulk-loader/" rel="nofollow"><code>bulk-loader</code></a> project and see if it might be useful for this.</p> <p>An excerpt from the front page:</p> <blockquote> <p><em>"BulkLoader is a minimal library written in Actionscript 3 (AS3) that aims to make loading and managing complex loading requirements easier and faster. BulkLoader takes a more dynamic, less architecture heavy aproach [sic]. Few imports and making heavy use of AS3's dynamic capabilities, BulkLoader has a one-liner feel that doesn't get in your way."</em></p> </blockquote> http://stackoverflow.com/questions/1024748/how-do-i-fix-nsurlerrordomain-error-999-in-iphone-3-0-os/1053411#1053411 Comment by hasseg on How do I fix NSURLErrorDomain error -999 in iPhone 3.0 OS hasseg 2009-12-03T22:42:43Z 2009-12-03T22:42:43Z Better to use the constant NSURLErrorCancelled instead of the literal value -999. http://stackoverflow.com/questions/1323658/why-do-applescript-tell-commands-run-a-non-gui-instance-of-my-gui-application-i/1324107#1324107 Comment by hasseg on Why do AppleScript "tell" commands run a non-GUI instance of my GUI application in the background? hasseg 2009-08-24T20:25:11Z 2009-08-24T20:25:11Z This was exactly what was happening; I forgot that I had pinned the app icon to the left of my dock and erroneously thought that it was running in some sort of &quot;non-GUI&quot; mode since I didn't see its icon appear on the right side of the dock. :) Also, the reason why it didn't work on the other computer was because I had an old &quot;Debug&quot; release compiled there (without the AppleScript support) that it was trying to contact. http://stackoverflow.com/questions/1247887/flex-core-cpu-memory Comment by hasseg on flex core cpu memory hasseg 2009-08-08T20:07:34Z 2009-08-08T20:07:34Z You should separate these three points each into their own question. (Remember to add descriptive titles!) If you do this, I'm sure you'll get more and better answers. http://stackoverflow.com/questions/783225/how-should-i-track-widget-renders/788172#788172 Comment by hasseg on How should I track widget renders? hasseg 2009-04-25T21:21:17Z 2009-04-25T21:21:17Z Using an img tag is a clever way to do this for html content but there's no reason to load an image (or any other arbitrary small resource) when you're implementing this in a Flash app. All you need to do is send a HTTP GET request with the required arguments when the widget gets loaded, and since you're already doing that in order to get the config XML, why not piggypack the tracking arguments with that request? (assuming, of course, that the XML file request is sent <i>only</i> when a widget loads) http://stackoverflow.com/questions/675596/how-to-prevent-the-os-x-text-layout-engine-from-automatically-flipping-lines-wi/675634#675634 Comment by hasseg on How to prevent the OS X text layout engine from automatically "flipping" lines with right-to-left text? hasseg 2009-03-24T13:27:57Z 2009-03-24T13:27:57Z Ha! Such a simple solution -- now I feel dumb for missing that. Thanks a lot! :) http://stackoverflow.com/questions/638381/fastest-way-to-delete-one-entry-from-the-middle-of-array/638437#638437 Comment by hasseg on Fastest way to delete one entry from the middle of Array() hasseg 2009-03-12T12:46:27Z 2009-03-12T12:46:27Z Note that if you want to use Vector, you need to target Flash Player v10+ http://stackoverflow.com/questions/632061/flash-as3-passing-a-method-into-a-method Comment by hasseg on Flash/AS3 passing a method into a method hasseg 2009-03-10T21:31:20Z 2009-03-10T21:31:20Z you should probably write an answer about what the solution was and set that as the accepted answer so that this question wouldn't show up in the unanswered questions list anymore. http://stackoverflow.com/questions/590378/how-to-load-wsdl-from-file/590440#590440 Comment by hasseg on How to load WSDL from file hasseg 2009-02-26T14:35:43Z 2009-02-26T14:35:43Z You use the [Embed] metadata tag: <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=embed_3.html" rel="nofollow">livedocs.adobe.com/flex/3/&hellip;</a> http://stackoverflow.com/questions/573305/whats-best-practice-for-including-external-actionscript-files-in-flex-application/573405#573405 Comment by hasseg on Whats best practice for including external actionscript files in flex application hasseg 2009-02-21T17:29:54Z 2009-02-21T17:29:54Z make sure your Journal class has a public function with that name and that it is saved in a file called Journal.as in the path project-root/lib/ (where project-root is the path to the root of your project directory structure) http://stackoverflow.com/questions/509638/wrapping-a-vararg-method-in-actionscipt/509706#509706 Comment by hasseg on Wrapping a Vararg Method in ActionScipt hasseg 2009-02-04T20:03:19Z 2009-02-04T20:03:19Z <code>arguments</code> is still there, it's just missing the <code>caller</code> property: <a href="http://livedocs.adobe.com/flex/3/langref/arguments.html" rel="nofollow">livedocs.adobe.com/flex/3/&hellip;</a> http://stackoverflow.com/questions/357825/flash-actionscript-cpu-profiler/358268#358268 Comment by hasseg on Flash / Actionscript CPU profiler hasseg 2008-12-11T12:23:35Z 2008-12-11T12:23:35Z That link points to Flex Builder 3 feature introductions -- isn't that the current version? http://stackoverflow.com/questions/344705/building-a-plugin-architecture-with-adobe-air/349767#349767 Comment by hasseg on Building a Plugin Architecture with Adobe AIR hasseg 2008-12-10T16:01:59Z 2008-12-10T16:01:59Z I was thinking about that myself... Unfortunately I'm not really an expert in AIR -- I've only dabbled in it. Sorry. :( Maybe you can implement the installation of plugins in the app UI yourself and use some path under File.applicationStorageDirectory as the location for installed plugins. http://stackoverflow.com/questions/344705/building-a-plugin-architecture-with-adobe-air/349767#349767 Comment by hasseg on Building a Plugin Architecture with Adobe AIR hasseg 2008-12-10T15:31:15Z 2008-12-10T15:31:15Z No, and even if it was, it's quite specific to the app it was written for. Everything that's &quot;generic&quot; about it is pretty much explained in the answer I wrote. http://stackoverflow.com/questions/354840/adobe-flex-air-scrolling-a-sub-component-not-the-whole-window/355898#355898 Comment by hasseg on Adobe Flex/AIR: Scrolling a sub-component, not the whole window hasseg 2008-12-10T15:28:02Z 2008-12-10T15:28:02Z You're totally right -- this is a pretty drastic hack but might be useful in some specific situations (like mine.) http://stackoverflow.com/questions/333841/checking-anonymous-function-signatures-at-runtime-reflection-in-as3/348585#348585 Comment by hasseg on Checking anonymous function signatures at runtime (reflection) in AS3 hasseg 2008-12-08T13:02:28Z 2008-12-08T13:02:28Z Thanks for the answer -- I had no idea no errors would be thrown if you try to pass in arguments of the wrong types.