User justinbach - Stack Overflowmost recent 30 from stackoverflow.com2010-03-21T23:32:21Zhttp://stackoverflow.com/feeds/user/42450http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2428256/amazon-s3-and-swfaddress1Amazon S3 and swfaddressjustinbachhttp://stackoverflow.com/users/424502010-03-11T20:03:24Z2010-03-17T01:05:23Z
<p>I recently migrated a large AS3 site (lots of swfs, lots of flvs) to Amazon S3. Pretty much everything but HTML and JS files is being stored/served from Amazon, and it's working well. The only problem I'm having is that I built the site using <a href="http://www.asual.com/swfaddress/" rel="nofollow">SWFaddress</a> (actually, via the <a href="http://www.gaiaflashframework.com/index.php?www" rel="nofollow">Gaia framework</a> which uses SWFaddress), and for some reason, SWFaddress is no longer updating the address bar correctly as users navigate from page to page. In other words, the URL persistently remains <a href="http://www.mysite.com" rel="nofollow">http://www.mysite.com</a>, not <a href="http://www.mysite.com/#/section" rel="nofollow">http://www.mysite.com/#/section</a> as would be the case were SWFaddress functioning correctly (and as it was functioning prior to the migration).</p>
<p>Stranger yet, if I go to (e.g.) <a href="http://www.mysite.com/#/section" rel="nofollow">http://www.mysite.com/#/section</a> directly, the deeplinking functions as you'd expect--I arrive directly at the correct section. However, navigating away from that section doesn't have any effect on the address bar, despite the fact that it should be dynamically updated.</p>
<p>I've got a crossdomain.xml file set up on the site that allows access from all domains, so that's not the issue, and I don't know what else might be. Any ideas would be greatly appreciated!</p>
<p>P.S. I integrated S3 by putting pretty much the entire site in an S3 bucket and then just changing the initial swfobject embed to point to the S3 instance of main.swf, passing in the S3 path as the "base" param to the embedded swf so that all dynamically loaded assets and swfs would also be sourced from s3. Dunno if that's related to the troubles I'm having.</p>
http://stackoverflow.com/questions/2456895/codeigniter-mvc-controller-architecture0Codeigniter MVC controller architecturejustinbachhttp://stackoverflow.com/users/424502010-03-16T18:06:21Z2010-03-16T18:38:07Z
<p>I'm building a site using CodeIgniter that largely consists of static content (although there will be a relatively small CMS backend, and there's code to handle localization/internationalization based on the domain used to access it). Typically, in a situation like this, I'd use a Pages controller that is in charge of rendering static content, but as there are a fair number of pages on the site (30+) it'd quickly end up containing lots of methods (assuming one per page).</p>
<p>Should I break my Pages controller into multiple controllers (that perhaps inherit from it) according to different sections of the site? Should I organize methods differently in the Pages controller? What's the best practice here?</p>
<p>Thanks!</p>
<p>Justin</p>
http://stackoverflow.com/questions/2454734/rails-different-behavior-on-dev-and-production3Rails: Different behavior on dev and productionjustinbachhttp://stackoverflow.com/users/424502010-03-16T13:39:57Z2010-03-16T15:02:55Z
<p>I'm doing maintenance work on a Rails site that's deployed using <a href="http://www.modrails.com/" rel="nofollow">Phusion Passenger</a>. The workflow is a little different than the standard three-tiered Railsian test-dev-production arrangement; instead, there are two separate installations of the same codebase running against parallel Oracle databases; the dev site lives at qa.domain.com, and the live site at www.domain.com</p>
<p>I'm experiencing different behavior in the following code snippet (from 'vendors_controller.rb', which uses AuthenticatedSystem) between the two environments:</p>
<pre><code>def create
@user = current_user || User.new(params[:user])
@registration = Registration.new(params[:registration])
unless current_user
@user.user_type = 'vendor'
@user.active = 1
if @user.save
@user.activate!
@user.has_role 'owner', @user
@user.has_role 'vendor'
self.current_user = user = @user
@registration.active = 1
@registration.email = @user.email
@registration.user_id = @user.id
if @registration.save
send_confirmation(@user)
send_solicitations_notifications(@registration) if @registration.notification_desired == true
redirect_to thank_you_vendors_path
else
# THIS BEHAVIOR DIFFERS ACROSS PRODUCTION AND DEVELOPMENT
@user.destroy
self.current_user = user = nil
# END DIFFERENCE
respond_to do |format|
format.html { render :action => 'new' }
format.xml { render :xml => @registration.errors, :status => :unprocessable_entity }
end
end
else
respond_to do |format|
format.html { render :action => 'new' }
format.xml { render :xml => @user.errors, :status => :unprocessable_entity }
end
end
...
</code></pre>
<p>The code between the comments destroys the just-created user object if the system was unable to create a corresponding registration. It works fine on the development server but not on the production server, where the User object stubbornly hangs around the database even if saving the registration fails. Pushing the changes to production is a simple matter of uploading the controllers file and doing <code>touch tmp/restart.txt</code> via the shell. The two codebases are otherwise identical; what might be causing this difference?</p>
<p>Thanks for your consideration!</p>
<p>Justin </p>
<p>EDIT: There are a few differences in <code>production.rb</code> across the two installations that might help diagnose the problem. On production,</p>
<pre><code>config.cache_classes = true
# Full error reports are disabled and caching is turned on
config.action_controller.consider_all_requests_local = false
config.action_controller.perform_caching = true
</code></pre>
<p>while on development, those three flags are set to their inverse values. Thanks!</p>
http://stackoverflow.com/questions/2314538/actionscript-3-memory-leak-in-server-polling-presentation-app3Actionscript 3: Memory Leak in Server Polling Presentation Appjustinbachhttp://stackoverflow.com/users/424502010-02-22T21:55:49Z2010-02-26T14:24:35Z
<p>I'm building a remote presentation tool in AS3. In a nutshell, one user (the presenter) has access to a "table of contents" HTML page with links for each slide in the presentation, and an arbitrary number of viewers can watch the presentation on another page, which in turn is in the form of a SWF that polls the server every second to ensure that it's on the right slide. Whenever the admin clicks a slide link in the TOC, the database gets updated, and on its next request the presentation swf compares the label of the slide it's currently displaying to the response it got from the server. If the response differs from the current label, the swf scrubs through the timeline until it finds the right frame label; otherwise, it does nothing and waits for the next poll result (a second later).</p>
<p>Each slide consists of a movieclip with its own nested timeline that loops as long as the slide is displayed. There's no actionscript controlling any of the nested movieclips, nor is there any actionscript on the main timeline except the <code>stop();</code>s on each keyframe (each of which is a slide in the presentation).</p>
<p>Everything is built and working perfectly. The only thing that's troubling is that if the presentation swf is open for long enough (say, 20 minutes), the polling starts to have a noticeable effect on the framerate of the movieclips animating on any given slide. That is, every second, there's a noticeable drop in the framerate of the animations that lasts about three-tenths of a second, which is quite noticeable (and hence is a deal-breaker for the whole presentation suite!).</p>
<p>I know that AS3 has issues with memory management, and I've tried to be diligent in my re-use of objects and event listeners. The code itself is dead simple; there's a <code>Timer</code> instance that fires every second, which triggers a <code>new URLRequest</code> to be loaded by a <code>URLLoader</code>. The <code>URLLoader</code> is reused from call to call, while the <code>URLRequest</code> is not (it needs to be initialized with a new cache-killing value each time, retrieved from a call to <code>new Date().time</code>). The only objects instantiated in the entire class are the <code>Timer</code>, the <code>URLLoader</code>, the various <code>URLRequests</code> (which should be garbage-collected), and the only event listeners are on the <code>Timer</code> (added once), the <code>URLLoader</code> (added once), and on the routines that scrub backwards and forwards in the timeline to find the right slide (and they're removed once the correct slide is found).</p>
<p>I've been using <a href="http://code.google.com/p/mrdoob/wiki/stats" rel="nofollow">mr doob's stats package</a> to monitor memory usage, which definitely grows over time, so there's gotta be a leak somewhere (it grows from ~30 MB initially to > 200 MB after some scrubbing and about 25 minutes of uptime). </p>
<p>Does anyone have any ideas as to what might be causing the performance problems?</p>
<p>UPDATE: I'm not entirely sure the performance troubles are tied directly to memory; I ran an instance of the presentation swf for about 15 minutes and although memory usage only climbed to around 70 MB (and stayed there), a noticeable hiccup started appearing at one-second intervals, coinciding with the polling calls (tracked via Firebug's Net panel). What else might cause stuttering movieclips?</p>
http://stackoverflow.com/questions/2140462/flash-as3-security-passing-movieclip-reference-to-child-swf4Flash/AS3 security - passing movieclip reference to child swf?justinbachhttp://stackoverflow.com/users/424502010-01-26T15:47:39Z2010-02-18T15:45:41Z
<p>I'm seeing some strange behavior with respect to interactions between my preloader and main application classes (all AS3 / Flash CS4). Roughly speaking, here's the flow of events:</p>
<ol>
<li>Preloader.swf loads two things: main.swf, which is the main app, and assets for a custom object consisting of text and images, which are assembled into the object by the preloader from various URLs. <br/><br/></li>
<li>When load finishes, Preloader adds main.swf as a child. Preloader then calls <pre>init(myCustomObject)</pre> on main.swf, where myCustomObject is a reference to the object assembled by the preloader during step 1 and <pre>public function init(customObject:CustomObject):void)</pre> is a method signature in Main.as. (Preload.as casts Main to an object of type * so as to be able to invoke arbitrary functions without fear of compile-time errors.)<br/><br/></li>
<li>Main.as is actually a container for the application itself, so it instantiates a <pre>new Application(customObject);</pre> passing along a reference to the customObject assembled by the preloader, and adds that as a child.</li>
</ol>
<p>I've installed <a href="http://www.websector.de/blog/2008/06/15/10-tips-and-tricks-using-thunderbolt-as3/" rel="nofollow">thunderbolt</a> so I can log messages as the application runs, and here's what I've determined is happening. The instantiation of the Application object in step 3 is what's causing trouble; for some reason, the statement
<code>myMainApplication = new Application(customobj);</code> in Main.as is throwing a lovely <code>#1009</code> error, which usually indicates a null pointer reference or something similar. </p>
<p>The strange thing is that I've added some logging to <code>Application.as</code>, and it seems to be receiving the reference to <code>customObject</code> without a problem; calling <code>toString()</code> on the <code>customObject</code> in <code>Application</code>'s constructor returns exactly the expected data. </p>
<p>In other words, the statement <code>myMainApplication = new Application(customobj);</code> in Main.as seems to be succeeding and failing at the same time. What gives?</p>
http://stackoverflow.com/questions/2140462/flash-as3-security-passing-movieclip-reference-to-child-swf/2289882#22898820Answer by justinbach for Flash/AS3 security - passing movieclip reference to child swf?justinbachhttp://stackoverflow.com/users/424502010-02-18T15:45:41Z2010-02-18T15:45:41Z<p>The reason that <code>myMainApplication = new Application(customobj);</code> seemed to be succeeding and failing at the same time is that I didn't completely understand the way the <code>try/catch</code> blocks operate in AS3. There was a null pointer exception being thrown in a subroutine to <code>Application</code>'s constructor, occurring after the code in which <code>Application</code> checks to ensure it's receiving a reference to customobj. This error was being caught by the <code>try/catch</code> block surrounding the instantation of <code>Application</code> in <code>Main</code>, as it was the nearest enclosing error-checking code.</p>
<p>Hopefully my mistake will save someone else for making a similar one!</p>
http://stackoverflow.com/questions/2281320/actionscript-3-reference-vs-value2Actionscript 3 - Reference vs. Valuejustinbachhttp://stackoverflow.com/users/424502010-02-17T14:15:17Z2010-02-17T21:21:52Z
<p>I thought I had references in AS3 figured out, but the following behavior puzzles me:</p>
<pre><code>// declarations for named individual reference later on
var myAmbientSound:Sound;
var myAmbientSoundLocation:String = "http://ambient_sound_location";
var myPeriodicSound:Sound;
var myPeriodicSoundLocation:String = "http://periodic_sound_location";
var myOccasionalSound:Sound;
var myOccasionalSoundLocation:String = "http://occasional_sound_location";
// for iterating through initialization routines
var mySoundArray:Array = [myAmbientSound, myPeriodicSound, myOccasionalSound];
var mySoundLocation:Array = [myAmbientSoundLocation, myPeriodicSoundLocation, myOccasionalSoundLocation];
// iterate through the array and initialize
for(var i:int = 0; i < mySoundArray.length; i++) {
mySoundArray[i] = new Sound();
mySoundArray[i].load(new URLRequest(mySoundLocation[i]));
}
</code></pre>
<p>At this point, I'd think that <code>mySoundArray[0]</code> would reference the same object as <code>myAmbientSound</code>; however, accessing <code>myAmbientSound</code> throws a null pointer exception, while <code>mySoundArray[0]</code> works as expected and references a <code>Sound</code> object. What am I misunderstanding here?</p>
http://stackoverflow.com/questions/2247220/upgrading-cybersource-ssl-certificates-in-existing-rails-application1Upgrading Cybersource SSL certificates in existing Rails applicationjustinbachhttp://stackoverflow.com/users/424502010-02-11T19:44:47Z2010-02-11T19:44:47Z
<p>I recently inherited a Rails site that uses ActiveMerchant for e-commerce transactions through CyberSource as a merchant gateway. A few days ago, I received an email from CyberSource informing me that CyberSource's SSL authority, Entrust, is mandating the use of higher-strength SSL certificates, and that in order for SOAP API calls to be valid past Feb 22, 2010, the new SSL certificates need to be trusted. The email also contained links to the new Root, First Intermediate, and Second Intermediate certificates, which are all of the form "----BEGIN CERTIFICATE-----", followed by a bunch of alphanumerics, followed by "-----END CERTIFICATE".</p>
<p>I'm really not sure what to do here. Though I've got some Rails experience, I've never used ActiveMerchant before (with CyberSource or anyone else), and I need to upgrade these SSL certificates ASAP. To make things worse, there's no test server set up for the Rails app, so I can't run any tests to ensure that the changes were made correctly. (And setting up a test db isn't really an option either--there's a lot of bureaucratic red tape standing squarely in the way of that approach.)</p>
<p>Can anyone with ActiveMerchant experience tell me what I need to do with these 3 certificates in order to make CyberSource happy with my API calls?</p>
<p>Thanks in advance!</p>
<p>Justin</p>
http://stackoverflow.com/questions/2194365/adding-an-intro-to-a-swf-without-access-to-the-fla-or-differences-between-top-le3Adding an intro to a swf without access to the fla OR: differences between top-level and loaded swfsjustinbachhttp://stackoverflow.com/users/424502010-02-03T18:26:22Z2010-02-04T04:11:05Z
<p>I've got to (quickly!) add an intro to an existing flash masthead on a site that I've inherited. I don't have access to the source .fla's, so I approached the problem by putting the intro in a wrapper swf and loading the current masthead and adding it to the display list on <code>Event.INIT</code>. So far, so good. (Incidentally, the swfs are built for flash player 9 and use AS3.)</p>
<p>The problem I'm having is that although the intro plays fine and loads / displays the beginning of the masthead swf, which is a loading animation, the masthead itself never actually plays. Essentially, my question is: what would cause an actionscript 3-based swf to behave differently when it's the child of another swf as opposed to at the top level of the embedded swf?</p>
<p>Potentially important details: Embedding is being handled with swfobject, and no flashvars are being passed in. There are two params, which are <code>base: "/flash/"</code> and <code>wmode: "opaque"</code>. All the swfs and flash data live in <code>/flash/</code>. The flash elements (minus the intro I built) were constructed using the <a href="http://code.google.com/p/inky/" rel="nofollow">Inky flash framework</a>, with which I'm not familiar. </p>
<p><b>UPDATE</b>: I've reconsidered my approach to the problem and gotten it working by using ExternalInterface; I'm having the intro swf call a js function when it finishes playing, which swaps out the intro swf and replaces it with the current masthead (the approach is outlined <a href="http://pipwerks.com/swfobject/load-onclick/2.0/index.html" rel="nofollow">here</a>). I'd still like to know why I was witnessing the behavior I was seeing earlier, though, so any ideas and suggestions would be welcome.</p>
http://stackoverflow.com/questions/2178353/flash-webcam-settings-on-macbook-and-potentially-other-cameras3Flash webcam settings on macbook (and potentially other cameras)justinbachhttp://stackoverflow.com/users/424502010-02-01T16:41:44Z2010-02-03T09:47:30Z
<p>I'm working on a flash app that allows users to take snapshots of themselves using their webcam. It seems that on certain computers (mostly macbooks and MBPs so far) the flash player 10 default webcam setting is for "DV video" rather than "USB Video Class Video", which is the required setting (as far as I know) to allow flash to tap into the webcam stream. If a user's flash settings aren't configured appropriately, they simply get a black box where their video preview should be, rather than the live video stream.</p>
<p>Are there any workarounds for this? I would rather avoid resorting to a "having trouble?" popup with instructions for changing Flash webcam settings if at all possible.</p>
http://stackoverflow.com/questions/2147162/feature-or-bug-3d-perspective-in-flash-player-10-changes-as-objects-are-added-to2Feature or bug? 3D perspective in Flash Player 10 changes as objects are added to the stagejustinbachhttp://stackoverflow.com/users/424502010-01-27T13:33:52Z2010-01-27T16:00:35Z
<p>In my AS3/Flash Player 10 app, I've got a movieclip on the stage with its own <code>transform.perspectiveProjection</code> properties configured; in particular, I'm explicitly setting its <code>projectionCenter</code> so that it has its own vanishing point (see <a href="http://stackoverflow.com/questions/2104652/set-stage-vanishing-point-in-flash-via-actionscript-3">this question</a> for details). I'm adding functionality to my application so that if a user clicks one of the buttons around the transformed movieclip, a lightbox-style layer appears over the 3D-transformed movieclip.</p>
<p>The problem I'm having is that when the lightbox layer appears, there's a perceptible shift in the location/transformation of the transformed movieclip, and when the lightbox layer is removed, the transformed movieclip returns to its original location. Stranger still, this effect only happens about half the time; usually, the first couple of lightbox invocations have no effect, but the third or fourth causes the 3D movieclip to jump around.</p>
<p>There's no 3D elements that are part of the lighbox (i.e. no z-indices are being explicitly set), and I can't find documentation of this phenomenon anywhere else. Is this a bug in FP 10? If it is, the only workaround I can think of is taking a snapshot of the 3D-transformed movieclip as <code>bitmapData</code> and showing that in place of the 3D mc whenever the lightbox appears, but that seems inefficient and brutally hackish. Any thoughts?</p>
http://stackoverflow.com/questions/2104652/set-stage-vanishing-point-in-flash-via-actionscript-32Set stage vanishing point in Flash via actionscript 3justinbachhttp://stackoverflow.com/users/424502010-01-20T20:21:28Z2010-01-21T08:42:53Z
<p>I'm working with a few designers, each of whom have created 3D animations (using fp 10 capabilities) for use in the same flash application. Each 3D animation is a unique movieclip that will ultimately be part of the same .fla file. </p>
<p>The problem I'm having is that each of the movieclips was created in a separate .fla, and each .fla had different settings for the vanishing point for the stage. This means that after importing the various moveiclips into my library, none of the visual assets are aligned as they were in their source .flas.</p>
<p>The good news is that only one of these movieclips is displayed at a time, so I don't need to be able to have multiple vanishing points; all I need to do is change the global vanishing point programmatically at various points during runtime.</p>
<p>What should I do? I've tried accessing <code>root.transform.perspectiveProjection.projectionCenter</code> and dynamically assigning it <code>new Point(x, y)</code> values, but they don't seem to be having any effect on the 3D movieclips.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/2102071/flash-as3-error-when-importing-3d-tweened-movieclip2Flash AS3 error when importing 3D-tweened movieclipjustinbachhttp://stackoverflow.com/users/424502010-01-20T14:37:05Z2010-01-20T15:43:03Z
<p>I've been working on an AS3 application and it's nearing completion. At the same time, one of the designers I work with has been building a movieclip in a separate .fla that acts as an intro animation to the application. The intro uses the 3D motion tweening capabilities of Flash CS4 / Player 10, and runs fine in the .fla in which it was built.</p>
<p>The problem is that when I import the movieclip into the main .fla for the application, when I dynamically instantiate the movieclip and add it to the stage, I get a barrage of the following runtime error:</p>
<blockquote>
<p>ReferenceError: Error #1069: Property null not found on fl.motion.KeyframeBase and there is no default value.</p>
<p>at fl.motion::KeyframeBase/getValue()</p>
<p>at fl.motion::MotionBase/getValue()</p>
<p>at fl.motion::Animator3D/setTime3D()</p>
<p>at fl.motion::AnimatorBase/set time()</p>
<p>at fl.motion::AnimatorBase$/processCurrentFrame()</p>
<p>at fl.motion::AnimatorBase$/parentEnterFrameHandler()</p>
</blockquote>
<p>I'm guessing just based on the number of errors like this that I receive that there's one per keyframe in the tweening movieclip. I've checked to ensure that the Flash publish settings are identical across the two .fla files, and although the stage sizes differ slightly, I don't think that's the issue here. I've also googled the issue and found nothing but <a href="http://www.kirupa.com/forum/showthread.php?t=338989" rel="nofollow">but this lonely thread on kirupa</a>.</p>
<p>Any thoughts? </p>
http://stackoverflow.com/questions/2102071/flash-as3-error-when-importing-3d-tweened-movieclip/2102617#21026170Answer by justinbach for Flash AS3 error when importing 3D-tweened movieclipjustinbachhttp://stackoverflow.com/users/424502010-01-20T15:43:03Z2010-01-20T15:43:03Z<p>Okay--turns out the problem was that we had a local version of the fl.motion package in the Actionscript source paths that was out of date. Now everything's tweening along happily!</p>
http://stackoverflow.com/questions/2072401/change-textfield-selection-color-in-as31Change TextField selection color in AS3justinbachhttp://stackoverflow.com/users/424502010-01-15T14:55:36Z2010-01-16T09:58:03Z
<p>How can I change the select ("highlight") color of an TextField in actionscript 3? I've got an input textfield with white text on a black backdrop and as a result, selections are invisible, which is horrible for usability. Thanks! </p>
http://stackoverflow.com/questions/2050590/de-capistrano-a-rails-app2De-capistrano a rails app?justinbachhttp://stackoverflow.com/users/424502010-01-12T16:43:27Z2010-01-12T19:43:11Z
<p>I've inherited a rails site that I need to deploy (quickly!) to our webhost, which is a standard *nix shared server that uses FastCGI for rails apps. I've worked with rails sites on multiple occasions in the past but wouldn't consider myself an expert by any stretch.</p>
<p>This particular app was developed using capistrano, with which I've got no experience, and everything I've read leads me to believe that to deploy the app "properly" would require my setting up an external svn account, among other things, which aren't feasible given our time frame and hosting situation.</p>
<p>My question is: what is the best way to quickly get this application up and running without using capistrano? I received, along with the site files, a .sql dump that I've already imported, and I've configured config/database.yml to reflect the correct production db settings. Right now, running <code>ruby script/console production</code> yields the following error message:</p>
<pre><code>/home/user1/ruby/gems/gems/activesupport-2.3.3/lib/active_support/dependencies.rb:443:in `load_missing_constant':NameError: uninitialized constant ApplicationController
</code></pre>
<p>Thanks for your consideration!</p>
http://stackoverflow.com/questions/1999892/tools-for-flash-based-image-manipulation0Tools for Flash-based image manipulationjustinbachhttp://stackoverflow.com/users/424502010-01-04T14:35:35Z2010-01-04T14:47:52Z
<p>I'm building a Flash app (as3) that allows users to embed photos of themselves in a scene--think carnival-style cutouts (or <a href="http://www.faceinhole.com/us/" rel="nofollow">faceInHole</a>). I like the interface design for image manipulation at FaceInHole, which puts anchor points and a skeleton around the boundaries of the uploaded image and lets users drag the image to change its position, resize it by dragging corners, rotate it, etc, similar to the free transform tool in photoshop.</p>
<p>Originally, I was planning on building the application with an interface that just used buttons in a control console to manipulate things like position, rotation, etc, but I find the FaceInHole approach more intuitive.</p>
<p>I have two questions:</p>
<p>a) Will most users find the in-place skeletal manipulation tool more convenient than the button-based tool, or do I just find it easier because I'm used to things like Flash and Photoshop that use a similar interface?</p>
<p>b) Are you aware of any good open source classes / libraries that contain a solid implementation of the photoshop-style free-transform image manipulation interface? </p>
http://stackoverflow.com/questions/1999892/tools-for-flash-based-image-manipulation/1999970#19999700Answer by justinbach for Tools for Flash-based image manipulationjustinbachhttp://stackoverflow.com/users/424502010-01-04T14:47:52Z2010-01-04T14:47:52Z<p>I've done some research, and I've found two good as3 implementations:</p>
<p><a href="http://www.senocular.com/flash/actionscript/?file=ActionScript_3.0/com/senocular/display/TransformTool.as" rel="nofollow">Senocular</a> has a nice free as3 transform tool.</p>
<p><a href="http://blog.greensock.com/transformmanageras3/" rel="nofollow">Greensock</a> has something similar that looks slightly more polished but costs $300.</p>
<p>Guess which one I'll be using?</p>
http://stackoverflow.com/questions/803219/flv-playback-scaling-and-smoothing-vs-hi-res1FLV Playback - scaling and smoothing vs. hi-res?justinbachhttp://stackoverflow.com/users/424502009-04-29T16:35:15Z2009-12-31T15:40:21Z
<p>Hi guys,</p>
<p>I'm building a flash site (as3) with large videos that act as transitions from section to section. The videos don't scale; in order to accommodate users with large monitors, we're planning on playing back HD video and only showing users the center of the frame (depending on their screen size). That is, there will be a central area of roughly 1024x768 that we'll assume that all users will be able to view and where most of the information will reside, but we'll want users with big screens to be able to view all of the information and the entire scene around it as well.</p>
<p>My question is this: does it make more sense from a performance perspective to encode the video as hi-def FLV and play it back without modification, or to encode it at a reasonable resolution and then scale it to hi-def (with smoothing) on the fly? Loading time is not an issue as all clips will only be a few seconds long and will preload completely prior to playback, so the bottleneck will likely be on the playback side of things.</p>
<p>Many thanks!</p>
http://stackoverflow.com/questions/803219/flv-playback-scaling-and-smoothing-vs-hi-res/1985863#19858630Answer by justinbach for FLV Playback - scaling and smoothing vs. hi-res?justinbachhttp://stackoverflow.com/users/424502009-12-31T15:40:21Z2009-12-31T15:40:21Z<p>Ultimately, we needed to play back video at 1680 x 1050, which is too hi-res for most of our audience's computers to play back natively. What we ended up doing is encoding the video in HD using On2's VP6-S codec's 720p presets and scaling to the desired resolution. The quality is more than acceptable and playback is decent on most computers, even when the whole video is visible (for users with smaller screens, the video is centered, not scaled to their screen size, so they just see a smaller portion of the video).</p>
<p>Anyway, ours is a fairly unusual set of circumstances, but hopefully this information will be helpful to someone else down the road.</p>
http://stackoverflow.com/questions/1985777/reset-flvplayback-component-for-playback-with-same-source0Reset FLVPlayback component for playback with same sourcejustinbachhttp://stackoverflow.com/users/424502009-12-31T15:13:36Z2009-12-31T15:23:17Z
<p>I'm using the same FLVPlayback component to play many page transition videos throughout a large flash site I'm building. On each transition, I'm setting the component's source using <code>myFLVPlayback.source</code> and listening for the <code>fl.video.VideoEvent.READY</code> event before proceeding with each page transition. This works fine as long as the transition between every pair of pages uses a different video.</p>
<p>Unfortunately, I'm running into a problem when the same page-to-page transition video needs to get invoked for two consecutive transitions. When playing the same video twice in a row, setting the <code>source</code> property of the component to the value it already has doesn't seem to do anything, meaning that my listeners for <code>fl.video.VideoEvent.READY</code> never fire. I could do something hackish like setting the <code>source</code> to a tiny, never-used-elsewhere FLV before setting it to the FLV that I'm actually using for the transition as a means of "resetting" the component, but I'd like to know what best practices are in a situation like this (insofar as best practices with something like the FLVPlaybackComponent can be discussed with a straight face). </p>
<p>I've perused the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html#source" rel="nofollow">livedocs</a> for the component but came up empty-handed, and manually using NetStream, NetConnection, and Video objects at this late stage isn't really an option.</p>
<p>Thanks for your consideration, and happy new year!</p>
<p>Justin</p>
http://stackoverflow.com/questions/1862370/php-errors-are-not-displaying-on-the-page-you-are-developing-you-only-have-sftp/1862400#18624000Answer by justinbach for PHP errors are not displaying on the page you are developing. You only have SFTP Access to change files. How do you display the errors?justinbachhttp://stackoverflow.com/users/424502009-12-07T19:41:17Z2009-12-07T19:41:17Z<p>You can set the error reporting level on a page-by-page basis by using the error_reporting() function. </p>
<p>E.g.
<code>error_reporting(E_ALL);</code></p>
<p>Will tell the interpreter to display any errors and warnings it encounters.</p>
http://stackoverflow.com/questions/1849038/simple-preloader-question-for-as2-site1simple preloader question for AS2 sitejustinbachhttp://stackoverflow.com/users/424502009-12-04T19:08:51Z2009-12-04T19:21:07Z
<p>I was asked to add a preloader to a rather messily constructed AS2 website. I'm using the preloader-in-the-first-frame approach--there are tons of references to _root throughout the site so I can't load the main site externally as another swf. My approach just involved creating a new frame at the beginning of the timeline, bumping all the existing content to the right one frame, and adding to the first frame one of the millions of throwaway preloaders available on the web.</p>
<p>The problem I'm having is that for whatever reason, 99% of the site weight is being exported in the first frame (as reported by "Generate Size Report..."), despite the fact that a) there's nothing on the stage but the preloader in frame 1 and b) I've got my actionscript classes exporting on frame 2. There are very few library items with linkage, and all that are linked are set to export in frame 2. Obviously, the preloader isn't working as desired, because it doesn't show up until everything's already been loaded.</p>
<p>What am I missing here?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1702441/rails-modeling-converting-habtm-to-has-many-through3Rails modeling: converting HABTM to has_many :throughjustinbachhttp://stackoverflow.com/users/424502009-11-09T17:18:30Z2009-11-10T13:16:44Z
<p>I'm doing maintenance work on an existing Rails site and am having some problems stemming from many-to-many associations. It looks like the site was initially built using <code>has_and_belongs_to_many</code> for a few relationships that have since gotten more complicated in the business logic, so I need to use <code>has_many :through</code> instead to support additional fields in the relationship table. However, the join table that was initially used for HABTM doesn't have a primary key, and I've got to add one to support separate relationship modeling using <code>has_many :through</code>.</p>
<p>What's the best way to add a primary key to an existing table with lots of data? Is there another way to do what I'm trying to? </p>
<p>Incidentally, the system is running on Oracle.</p>
<p>Thanks!</p>
<p>Justin</p>
<p>UPDATE 11/9/09 3:58pm: I'm not an Oracle expert and have been getting lost in the wilds of Oracle's versions of not null, auto-increment, and so forth. Initially I tried doing what Mike and Corey recommended by adding a new field as a primary key, but Oracle wouldn't let me add a non-null field to a non-empty table (ORA-01758). I then exported the data as SQL, dropped the rows, added the PK and set it to be non-null, then tried to import the data, but I kept getting errors to the tune of "cannot insert NULL into id..." (ORA-01400). </p>
<p>Finally, I tried using a migration as Corey suggests in his comment, but rake hit the same errors that Oracle was throwing when I altered the database manually ("cannot add non-null field to non-empty table"). I cleared the table, ran the migration (which worked), and then attempted to re-import the data, but I got the same errors last time I'd tried to import ("cannot insert NULL into id..."). How can I save my data and add the primary keys I need? I know that the possibility of writing a rake task was suggested, but I'm unsure as to how to proceed on that front. Any ideas?</p>
http://stackoverflow.com/questions/1684239/rails-modeling-question-relationships-and-primary-keys1Rails Modeling Question - Relationships and Primary Keysjustinbachhttp://stackoverflow.com/users/424502009-11-05T22:55:44Z2009-11-06T20:38:10Z
<p>I'm working on a rails site that I've inherited and am trying to troubleshooting some sub-optimal model behavior. I have users, songs, and songs_download, each of which is its own model. </p>
<p>Here's the relevant line from the users model:</p>
<pre><code>has_and_belongs_to_many :downloaded_songs, :class_name => 'Song', :join_table => :song_downloads
</code></pre>
<p>From the songs model:</p>
<pre><code>has_and_belongs_to_many :downloaded_users, :class_name => 'User', :join_table => :song_downloads
</code></pre>
<p>And from the song_downloads model:</p>
<pre><code>belongs_to :user
belongs_to :song
</code></pre>
<p>Here's the code to create a new song_download record when a user downloads a song (in the songs controller):</p>
<pre><code>SongDownload.create( :song_id => @song.id,
:user_id => current_user.id,
:download_date => Date.today )
</code></pre>
<p>The problem I'm having is that once a user downloads a song, if I try to invoke the downloaded users from the interactive console, by, say, typing the following:</p>
<pre><code>Song.find(<some id>).downloaded_users
</code></pre>
<p>I get back the complete record of the user, but the id in the returned objected is the primary key of the SongDownload, not the primary key of the User. All of the other fields are accurate, but the ID is not. </p>
<p>I didn't come up with this modeling scheme and it seems to me that <code>:has_and_belongs_to_many</code> might be more appropriately used with no explicitly modeled SongDownload object, but I'd rather not overhaul the codebase if I can help it. Are there any ways to get back the right user id given the current modeling scheme?</p>
<p>Thanks very much for your time and consideration!</p>
<p>Justin</p>
http://stackoverflow.com/questions/1668581/multi-vendor-shopping-cart-software0Multi-vendor shopping cart softwarejustinbachhttp://stackoverflow.com/users/424502009-11-03T16:44:58Z2009-11-03T17:10:20Z
<p>I'm looking into building a web app that allows multiple e-commerce stores to coexist on the same installation and lets allows each individual vendor manage their own products, pricing, sales reports, etc. I know that there have been a number of previous questions on the Stack regarding the best shopping cart software, but this is a bit of an unusual twist and I couldn't find it answered elsewhere. </p>
<p>Obviously, open source is better from a pricing standpoint, but I've got no problem with spending money on a quality product that meets my needs. The ideal package would allow each store to be uniquely skinned, would minimize the amount of time that it takes to get a new store up and running, and would include payment gateway and shipping integration.</p>
<p>I've run across a few things in my scouring of the web, but haven't found "the one" yet--I know that osCommerce sort of supports what I'm trying to do, but I'm looking for something designed with this functionality in mind. Any ideas?</p>
<p>Thanks!</p>
<p>Justin</p>
http://stackoverflow.com/questions/1661924/tools-for-optimizing-minimizing-swf-filesize1Tools for optimizing / minimizing swf filesizejustinbachhttp://stackoverflow.com/users/424502009-11-02T15:25:00Z2009-11-02T22:25:30Z
<p>Hi guys,</p>
<p>I'm working on a big flash site with lots of component swfs and a ton of heavy multimedia (video, audio, image) content. File sizes are quickly getting ridiculous and I'm looking around for solutions--I want to minimize user wait time as much as possible (and my art direction is such that minimizing multimedia isn't an option). Obviously, there are steps that can be taken to minimize assets before bringing them into Flash (video compression, etc), but are there any third-party tools that you'd recommend using to analyize and further optimize compiled swfs? </p>
<p>A quick <a href="http://www.google.com/search?hl=en&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=fbJ&q=swf+optimizer&aq=0&oq=swf+optimi&aqi=g10" rel="nofollow">google search</a> yields a ton of hits, most of which seem to be of dubious pedigree; what sorts of approaches have you found useful in the past?</p>
<p>Thanks,</p>
<p>Justin</p>
http://stackoverflow.com/questions/1644625/preloader-size-guidelines0Preloader size guidelinesjustinbachhttp://stackoverflow.com/users/424502009-10-29T15:40:42Z2009-10-29T18:38:19Z
<p>Hi guys,</p>
<p>I'm working on a high-end flash site (AS3) with lots of video, hi-res graphics, and sound effects; needless to say, the initial preloader's got a lot of work to do (just to get the site to a point where additional assets can be loaded on the fly as needed). Because it'll be displayed for a while on most connection speeds, it's pretty intricately designed, with lots of animation, sound effects, etc, and weighs in at a hefty 300k. I'm sure I'll be able to knock it down with further asset optimization, but I'm not sure what my target should be. What's the biggest file size for a preloader swf that you might reasonably expect a user to download?</p>
<p>On the other hand, I'm not blind to the multiple ironies of having a preloader for my preloader, but I'm not entirely opposed to it, either, especially if it's something lightweight like a logo or small image. Is this a ludicrous proposition, or do people actually do this sort of thing? If so, what guidelines might you recommend?</p>
<p>Thanks!</p>
<p>Justin</p>
http://stackoverflow.com/questions/1643336/newbie-git-question0Newbie Git Questionjustinbachhttp://stackoverflow.com/users/424502009-10-29T12:22:03Z2009-10-29T13:52:44Z
<p>Hi guys,</p>
<p>I've got two branches--master and development. Development contains a few completed new features and a couple unfinished modifications--nothing's committed yet, though. Master hasn't changed since the creation of the dev branch. I want to commit the completed features to dev and merge those back into the master branch for deployment, but leave the unfinished modifications on dev uncommitted for now.</p>
<p>Incidentally, there aren't any files that span both categories (e.g. nothing was changed/added as part of a new complete feature that was later modified to be part of an as yet incomplete feature).</p>
<p>My gut instinct is that I should manually add all the implicated files in the finished feature set to the git queue, commit those to dev, and then switch branches to master and do a merge...will that save my work on uncommitted features in the dev branch? Or is this one of those situations that calls for stashing? If so, what's the right order to do things?</p>
<p>Thanks a lot!</p>
<p>Justin</p>
http://stackoverflow.com/questions/1608981/oracle-problems-in-rails-with-rake-but-not-with-site1Oracle problems in Rails with rake, but not with sitejustinbachhttp://stackoverflow.com/users/424502009-10-22T18:04:48Z2009-10-26T18:06:22Z
<p>Hi guys,</p>
<p>I'm working on a Rails site that connects to an Oracle database, and though I didn't build the site from scratch, I'm doing maintenance work. The site uses the <a href="http://stackoverflow.com/questions/567407/ocierror-ruby-on-rails">delayed_jobs</a> plugin to handle some background tasks and I'd like to be able to run <code>rake jobs:work</code> on the development server to periodically process all jobs in the queue (due to the server's configuration, running a daemonized version of the script on the development server isn't an option). However, whenever I try running the command, I get the following classic Oracle error:</p>
<p><code>error while trying to retrieve text for error ora-12154</code></p>
<p>Ordinarily, I'd think this would be an authentication problem (e.g. incorrect credentials in database.yml), but the site is up and running fine (and doing lots of database stuff). I've tried adding <code>RAILS_ENV=production</code> as a parameter to <code>rake</code> to force it to run in in the production environment, but got the same error (there are two separate rails installations for the production and development versions of the site, and I've set the "development" and "production" credentials in development's db config file to be identical).</p>
<p>I'm not sure what could be causing this error, and I don't have a ton of experience using Oracle with rails. Any suggestions?</p>
<p>Thanks a lot!</p>
<p>Justin</p>
<p>EDIT (10/26/09): Still can't figure out what's causing the problem here. The app continues to run (and talk to the database) without a problem, but rake keeps throwing DB errors. So does script/console, which shows a prompt but first complains with the same Oracle error message. I'm going to keep looking, but I'm running out of ideas...</p>
<p>EDIT(10/26/09, later): Following the advice of <a href="http://rubyforge.org/forum/message.php?msg%5Fid=40193" rel="nofollow">this link</a>, I set both <code>ORACLE_HOME</code> and <code>TNS_ADMIN</code> to point to the directory where tnsnames.ora lives. Just setting <code>ORACLE_HOME</code> had no obvious effect, but now that <code>TNS_ADMIN</code> points to the right place, I've started getting segmentation faults whenever I try to open the console or run rake:</p>
<p><code>/usr/local/lib/ruby/site_ruby/1.8/oci8.rb:184: [BUG] Segmentation Fault</code></p>
<p>and get booted unceremoniously back to the prompt. Any further ideas?</p>
http://stackoverflow.com/questions/2454734/rails-different-behavior-on-dev-and-production/2455455#2455455Comment by justinbach on Rails: Different behavior on dev and productionjustinbachhttp://stackoverflow.com/users/424502010-03-16T15:10:57Z2010-03-16T15:10:57ZThanks for the response, jonnii...much appreciated! I didn't write the code myself--I'm just debugging it--but your solution is much more elegant. Also, it turns out that the problem was with Phusion Passenger; I'd renamed the old version of the file to 'vendors_controller_031610.rb' in case I needed to revert quickly and it turns out that Phusion was using the outdated controller, even after being restarted. Deleting the old file solved the problem. Strange, eh?http://stackoverflow.com/questions/2147162/feature-or-bug-3d-perspective-in-flash-player-10-changes-as-objects-are-added-to/2148374#2148374Comment by justinbach on Feature or bug? 3D perspective in Flash Player 10 changes as objects are added to the stagejustinbachhttp://stackoverflow.com/users/424502010-01-27T17:00:17Z2010-01-27T17:00:17ZSpot on! I never would have guessed that's what was going on, but as it happens, for masking reasons I'd been caching most of the application as a bitmap. I turned off the caching as soon as it was no longer needed and the bizarre behavior vanished. Many thanks!http://stackoverflow.com/questions/2102071/flash-as3-error-when-importing-3d-tweened-movieclip/2102264#2102264Comment by justinbach on Flash AS3 error when importing 3D-tweened movieclipjustinbachhttp://stackoverflow.com/users/424502010-01-20T15:31:33Z2010-01-20T15:31:33ZGeorge, thanks for the response. I'm not actually modifying the moveiclip via actionscript--all I'm doing is dynamically instantiating it (e.g. it lives in the library and I'm doing a new IntroAnimation()) in the code...http://stackoverflow.com/questions/2102071/flash-as3-error-when-importing-3d-tweened-movieclipComment by justinbach on Flash AS3 error when importing 3D-tweened movieclipjustinbachhttp://stackoverflow.com/users/424502010-01-20T15:20:04Z2010-01-20T15:20:04ZLes - I tried what you suggested and created a simplest-case on-stage 3D tween in the fla and it threw the same errors as the intro animation. Do you know what classes I need to explicitly import?http://stackoverflow.com/questions/2050590/de-capistrano-a-rails-app/2051203#2051203Comment by justinbach on De-capistrano a rails app?justinbachhttp://stackoverflow.com/users/424502010-01-12T18:16:38Z2010-01-12T18:16:38Zjonnii, thanks for the response. What do you mean by vendoring my rails directory?
I'm definitely aware that this isn't the best-practices approach, and in the future I'm going to be using git, capistrano, and passenger in rails dev/deployment, but I need to get this site live by the end of the day.http://stackoverflow.com/questions/1985777/reset-flvplayback-component-for-playback-with-same-source/1985809#1985809Comment by justinbach on Reset FLVPlayback component for playback with same sourcejustinbachhttp://stackoverflow.com/users/424502009-12-31T15:31:28Z2009-12-31T15:31:28Zthank you sir! worked like a charm.http://stackoverflow.com/questions/1702441/rails-modeling-converting-habtm-to-has-many-through/1702793#1702793Comment by justinbach on Rails modeling: converting HABTM to has_many :throughjustinbachhttp://stackoverflow.com/users/424502009-11-09T18:26:09Z2009-11-09T18:26:09ZThanks for the response, Corey. Is there a way to autopopulate the id #'s for all the preexisting records?http://stackoverflow.com/questions/1684239/rails-modeling-question-relationships-and-primary-keys/1684298#1684298Comment by justinbach on Rails Modeling Question - Relationships and Primary Keysjustinbachhttp://stackoverflow.com/users/424502009-11-06T17:04:37Z2009-11-06T17:04:37ZThanks for the response! Hmm...problem is, I've got multiple song<->user relationships, because users can also (for example) be notified of the release of new songs (e.g. through notified_users). How can I specify the nature of the song<->user relationship in Song.find(<some id>).users?http://stackoverflow.com/questions/1684239/rails-modeling-question-relationships-and-primary-keys/1684298#1684298Comment by justinbach on Rails Modeling Question - Relationships and Primary Keysjustinbachhttp://stackoverflow.com/users/424502009-11-06T13:39:23Z2009-11-06T13:39:23ZEmFi, thanks! So far, so good--your recommendations are in place. Just one thing: whenever I execute <code>Song.find(<some id>).downloaded_users</code>, I get back an array of associations, not an array of user objects. How do I get the array of users?http://stackoverflow.com/questions/1661924/tools-for-optimizing-minimizing-swf-filesize/1664134#1664134Comment by justinbach on Tools for optimizing / minimizing swf filesizejustinbachhttp://stackoverflow.com/users/424502009-11-03T13:38:59Z2009-11-03T13:38:59Zthanks! I'm surprised I wasn't already aware of this functionality but very glad to know it exists...http://stackoverflow.com/questions/1661924/tools-for-optimizing-minimizing-swf-filesize/1662523#1662523Comment by justinbach on Tools for optimizing / minimizing swf filesizejustinbachhttp://stackoverflow.com/users/424502009-11-02T17:25:08Z2009-11-02T17:25:08ZAndy, thanks for the response. As I said in the question, though, I'm already factoring the site into different swfs for each page (I'm using the Gaia framework), and much of the media is loaded on demand. I'm looking for tools to help me analyze the heaviest swfs and figure out ways to reduce their size.http://stackoverflow.com/questions/1644625/preloader-size-guidelines/1645732#1645732Comment by justinbach on Preloader size guidelinesjustinbachhttp://stackoverflow.com/users/424502009-10-30T12:43:44Z2009-10-30T12:43:44Z-1? That's not nice! Irrespective of my particular circumstance, it's still a valid question, and general guidelines for preloader size aren't anywhere to be found yet on the Stack.
And yes, I am the victim of overzealous art direction. :p What can you do? http://stackoverflow.com/questions/1643336/newbie-git-question/1643395#1643395Comment by justinbach on Newbie Git Questionjustinbachhttp://stackoverflow.com/users/424502009-10-29T13:08:30Z2009-10-29T13:08:30ZI'm not sure I entirely understand what you mean by rebase-ing in this context--could you clarify? My understanding of rebase is that it's usually for bringing a development branch up to speed with changes made independently on a master branch, by importing the new version of the master and then rolling out the changes from development on top. How would I use it in this context?
Thanks!http://stackoverflow.com/questions/1608981/oracle-problems-in-rails-with-rake-but-not-with-site/1609218#1609218Comment by justinbach on Oracle problems in Rails with rake, but not with sitejustinbachhttp://stackoverflow.com/users/424502009-10-22T19:16:24Z2009-10-22T19:16:24ZYeah, I can connect to the DB fine using identical credentials to those supplied by database.yml. Hence the head-scratchery...http://stackoverflow.com/questions/1433374/actionscript-3-queuing-up-flvs-using-netstatus-and-cuepoints/1433418#1433418Comment by justinbach on Actionscript 3: Queuing up FLVs using netstatus and cuepointsjustinbachhttp://stackoverflow.com/users/424502009-09-16T20:04:07Z2009-09-16T20:04:07ZWow! I can't believe it, but FLVPlayback definitely came to the rescue on this one. Ordinarily I steer clear of that thing like it's week-old dirty laundry, but today it helped me out. Your suggested workflow was perfect and resolved all the glitching...thanks so much!