User John Isaacks - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T18:01:20Zhttp://stackoverflow.com/feeds/user/46011http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080106/flex-center-window0Flex: center Window?John Isaacks2009-07-03T16:47:11Z2009-11-25T10:46:09Z
<p>I am trying to center a launched window in flex, there is a NativeWindow.x and NativeWindow.y but flex uses the Window class which does not have these properties, so does anyone know how to center a window? Thanks!!</p>
http://stackoverflow.com/questions/1764178/javascript-alert-when-user-exits-site0JavaScript: Alert when user exits site?John Isaacks2009-11-19T15:40:32Z2009-11-20T16:36:41Z
<p>My boss wants our site to show an alert if a customer tries to exit the site with items in the cart.</p>
<p>How can I show an alert when the user tries to exit our site? Also I don't want to show the alert if they are just navigating to another page on our site, but only if they are navigating completely away from our site.</p>
<p>P.S. I am not using any frameworks.</p>
http://stackoverflow.com/questions/1730436/css-make-row-background-span-accross-all-columns0CSS: make Row background span accross all columns?John Isaacks2009-11-13T16:44:41Z2009-11-19T13:53:32Z
<p>I have a row <code><tr></code> that has a few columns <code><td></code> in it. I have a background image set to the <code><tr></code> but it restarts the background image for each <code><td></code> as if it were individually set for each <code><td></code>. I would like the one image to span across the background for all the columns in that row.</p>
<p>Is there a way to do that?</p>
<p>here is my code:</p>
<pre><code><tr bgcolor="#993333" style="color:#ffffff; background:url(images/customer_orders/bar.gif) no-repeat;">
<td><strong>Product(s)</strong></td>
<td width="7%"><div align="center"><strong>Qty</strong></div></td>
<td width="11%"><div align="center"><strong>Total</strong></div></td>
</tr>
</code></pre>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1750028/mysql-why-is-this-query-running-so-slow1MySql: Why Is this Query running so slow?John Isaacks2009-11-17T16:22:51Z2009-11-17T16:32:45Z
<p>OK So I have this list of products that are in the cart. I am trying to retrieve all the related items to the items in the cart without pulling any items that are in the cart.</p>
<p>I wrote this query and it pulls exactly what I want, but its taking like 8 seconds to run.</p>
<pre><code>SELECT * FROM cart_product
WHERE product_id
IN(
SELECT product_related_related_id FROM `cart_product_related`
WHERE product_related_product_id
IN (5401,5402,4983,5004)
)
AND product_id
NOT IN(5401,5402,4983,5004)
</code></pre>
<blockquote>
<p>Showing rows 0 - 2 (3 total, Query
took 7.9240 sec)</p>
</blockquote>
<p>Is there some way I can optimize this to make it run faster?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1749345/flex-make-advanced-data-grid-height-of-rows0Flex: Make advanced data grid height of rows?John Isaacks2009-11-17T14:42:25Z2009-11-17T15:36:25Z
<p>I have an ADG along with some other components in a VBox. The number of rows of items in the ADG is variable. I want the height of the ADG to be however tall it needs to be to show all the rows without scrolling. This is because I want the containing VBox to handle all the scrolling. </p>
<p>The reason being, is because sometimes there is a horizontal scroll bar on the VBox, in this case you have to scroll all the way to the right to reveal the scroll bar for the ADG before you can scroll the ADG.</p>
<p>So is there a way to do this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1554601/flex-debugger-wont-launch-only-on-particular-project0Flex Debugger wont launch - Only on particular project.John Isaacks2009-10-12T13:30:24Z2009-11-14T18:00:02Z
<p>When trying to launch Flex debaugger on my project, it does not launch and I get an error instead. Every other project in different workspaces launches just fine. This is the only one giving me an issue.</p>
<p>Here is the error:</p>
<blockquote>
<p>Process terminated without
establishing connection to debugger.</p>
<p>Command:</p>
<p>"C:\Program Files\Adobe\Flex Builder
3\sdks\3.2.0\bin\adl.exe"
D:\fromLapTop\lapDocs\Flex\Workspaces\MothersRings\MothersRingsAir\bin-debug\MothersRingsAir-app.xml
D:\fromLapTop\lapDocs\Flex\Workspaces\MothersRings\MothersRingsAir\bin-debug</p>
<p>Output from command:</p>
<p>PreloadSwf paths must be local
trusted:
D:/fromLapTop/lapDocs/Flex/Workspaces/WebRequestNotifier/.metadata/.plugins/com.adobe.flash.profiler/ProfilerAgent.swf?host=localhost&port=9999error
while loading initial content</p>
</blockquote>
<p>Anyone have any ideas on how I can fix this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1725483/link-to-shipping-tracking-from-website0Link to shipping tracking from website?John Isaacks2009-11-12T21:18:01Z2009-11-12T21:24:39Z
<p>When a customer views an order. We show them the carrier and the tracking number. But based on this information is there a way to generate a link directly to the tracking page for that carrier/shipment?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1703263/flex-make-columns-aligned-between-2-datagrids0Flex: Make columns aligned between 2 DataGrids?John Isaacks2009-11-09T19:42:24Z2009-11-09T20:28:13Z
<p>I have 2 advanced data grids, one above the other. They both have the exact number of columns, and pertain to each other in the same way. But each is showing different data, which is why I split into 2 grids. However, on each one you can resize the columns, what I would like is to make it so that if you resize a column on either datagrid the same column on the opposite datagrid resizes as well, so they are both always lined up.</p>
<p>Is there a way to do this?</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1703263/flex-make-columns-aligned-between-2-datagrids/1703560#17035602Answer by John Isaacks for Flex: Make columns aligned between 2 DataGrids?John Isaacks2009-11-09T20:28:13Z2009-11-09T20:28:13Z<pre><code>private function onColumnStretch(e:AdvancedDataGridEvent):void
{
(adg1.columns[e.columnIndex] as AdvancedDataGridColumn).width = (adg2.columns[e.columnIndex] as AdvancedDataGridColumn).width;
}
</code></pre>
<p>Add to dategrid:</p>
<pre><code>columnStretch="onColumnStretch(event)"
</code></pre>
http://stackoverflow.com/questions/1676212/flex-component-lifecycle-validatenow-validatedisplaylist-invalidatedisplallist2Flex Component Lifecycle: validateNow, validateDisplayList, invalidateDisplalList, commitProperties, etc.John Isaacks2009-11-04T19:57:32Z2009-11-09T07:37:08Z
<p>I am extending VBox to make a Calendar component. What method should I override to add the code to draw itself? What is the difference between all these methods? Is there something I should be putting in each one, or is there a specific method I can just override, add my drawing code, and have it work?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1683667/flex-adding-removing-component-from-hbox-rawchildren-causes-horizontalalign-to-f0Flex: adding/removing component from HBox.rawChildren causes horizontalAlign to fail?John Isaacks2009-11-05T21:15:51Z2009-11-08T01:07:57Z
<p>I have an HBox displaying a series of canvases. I am removing a child of a canvas and adding it to the rawChildren of the containing HBox, so I can position it, and make it appear to shift outside the bounds of the canvas.</p>
<p>Here is the code from the canvas:</p>
<pre><code>private function onMouseOver(e:MouseEvent):void
{
(this.parent as HBox).rawChildren.addChild(dateLabel);
dateLabel.x = (this.parent as HBox).localToGlobal(new Point(this.x,0)).x - 18;
}
private function onMouseOut(e:MouseEvent):void
{
addChild(dateLabel);
dateLabel.x = 0;
}
</code></pre>
<p>It works, but if the containing HBox.horizontalAlign is set to "right", when I add the child back to the Canvas, the HBox stops displaying correctly and puts all the child canvases overlapping on the right. There is no issue if the HBox is aligned "left" tho.</p>
<p>Is this a bug? Is there a work around?</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1688996/flex-list-displaying-wrong-until-scrolled0Flex: List displaying wrong until scrolled.John Isaacks2009-11-06T17:13:53Z2009-11-07T20:20:50Z
<p>I have a List, that is not showing any items until you scroll, then the items show up. Does anyone know how to fix this? I tried calling <strong>list.invalidateDisplayList();</strong> and <strong>list.invalidateList();</strong> But with no luck.</p>
<p>Any ideas?</p>
<p>Thanks.</p>
<p>EDIT: Here is some code:</p>
<pre><code><mx:Script>
<![CDATA[
[Bindable]
private var _xmlList:XMLList = new XMLList();
override public function set data(value:Object):void
{
this.setStyle('borderColor','#cc6666');
var xmllist:XMLList = XML(value).children();
_xmlList = xmllist;
}
]]>
</mx:Script>
<mx:List id="list" width="100%" height="100%" labelField="@user" dataProvider="{_xmlList}" itemClick="onItemClick(event)"/>
</code></pre>
<p>I found that if I add <strong>creationComplete="{list.dataProvider = _xmlList }"</strong> It solves the problem.</p>
http://stackoverflow.com/questions/1573692/php-turn-html-table-into-spread-sheet1PHP: Turn HTML table into spread sheet?John Isaacks2009-10-15T16:56:45Z2009-11-05T18:12:30Z
<p>I am generating an HTML table full of data. They need it to be an editable spreadsheet though that they can save and edit.</p>
<p>I currently have it exactly as they want but as an HTML table, is there anyway I can convert this to an excel spread sheet that they can download?</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/722908/what-programming-language-is-used-for-video-games6What programming language is used for video games?John Isaacks2009-04-06T19:50:55Z2009-11-05T10:07:07Z
<p>What kind of languages and IDEs are used to develop video games? like Xbox 360 games?</p>
<p>Are they OOP?</p>
<p>Thanks.</p>
<p>UPDATE:
Great answers guys, I am sorry I can only mark 1 as answer, you have all provided great feedback!</p>
http://stackoverflow.com/questions/1659210/how-do-you-design-a-myspace-page0How do you design a myspace page? [closed]John Isaacks2009-11-02T02:45:54Z2009-11-02T03:20:10Z
<p>I am trying to design a myspace profile theme. Is there a FAQ for developers somewhere? Or a list of CSS classes and what they are, to ease development?</p>
<p>I add things like:</p>
<pre><code>body{color:#ff0000 !important;}
</code></pre>
<p>With absolutely no effect.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1644063/mysql-select-the-closest-match1MySQL: select the closest match?John Isaacks2009-10-29T14:18:45Z2009-10-29T14:48:59Z
<p>I want to show the closest related item for a product. So say I am showing a product and the style number is SG-sfs35s. Is there a way to select whatever product's style number is closest to that?</p>
<p>Thanks.</p>
<p>EDIT: to answer your questions. Well I definitely want to keep the first 2 letters as that is the manufacturer code but as for the part after the first dash, just whatever matches closest. so for example SG-sfs35s would match SG-shs35s much more than SG-sht64s. I hope this makes sense whenever I do <strong>LIKE product_style_number</strong> it only pulls the exact match.</p>
http://stackoverflow.com/questions/1639036/php-get-next-13-dates-from-date1PHP: get next 13 dates from date?John Isaacks2009-10-28T18:06:45Z2009-10-28T18:38:03Z
<p>I am trying to get an array of a date plus the next 13 dates to get a 14 day schedule starting from a given date.</p>
<p>here is my function:</p>
<pre><code>$time = strtotime($s_row['schedule_start_date']); // 20091030
$day = 60*60*24;
for($i = 0; $i<14; $i++)
{
$the_time = $time+($day*$i);
$date = date('Y-m-d',$the_time);
array_push($dates,$date);
}
</code></pre>
<p>But it seems to be repeating a date when the month switches over..</p>
<p>this is what I get:</p>
<blockquote>
<p>2009-10-30|2009-10-31|2009-11-01|2009-11-01|2009-11-02|2009-11-03|2009-11-04|2009-11-05|2009-11-06|2009-11-07|2009-11-08|2009-11-09|2009-11-10|2009-11-11</p>
</blockquote>
<p>Notice that 2009-11-01 is repeated. I cannot figure out why?</p>
<p>What am I doing wrong?</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1632302/php-mysql-duplicate-series-of-rows-but-change-1-column0PHP, MySQL: Duplicate series of rows, but change 1 column?John Isaacks2009-10-27T17:10:40Z2009-10-27T17:46:41Z
<p>I have a table called scheduler_sched which has several columns, including a column called schedule_id. </p>
<p>I need a function where I can pass 2 ids (copy_from_id, copy_to_id) as parameters. And what I need to do is take every row where schedule_id = copy_from_id AND duplicate it but change the copy_from_id to the copy_to_id</p>
<p>So basically I want to to the equivalient of this:</p>
<pre><code>UPDATE scheduler_sched SET schedule_id = 32 WHERE schedule_id = 28
</code></pre>
<p>Only I do not want to UPDATE any rows, I want to create duplicates with the new ID's </p>
<p>Does this make sense?</p>
<p>How can I do this?</p>
<p>THANKS!</p>
<p>(By the way schedule_id is not a unique/index field on this table)</p>
http://stackoverflow.com/questions/1615441/flex-add-total-column-for-advanceddatagridcolumngroup0Flex: Add TOTAL column for AdvancedDataGridColumnGroup? John Isaacks2009-10-23T19:27:01Z2009-10-23T20:43:01Z
<p>I have an AdvancedDataGrid that has a couple AdvancedDataGridColumnGroup's I would like each group to have an extra column, that shows the total of all the other columns in the group. I also need to use my own calc function to calculate the totals. Is there anyway to do this? I hope I explained this well.</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1615441/flex-add-total-column-for-advanceddatagridcolumngroup/1615779#16157790Answer by John Isaacks for Flex: Add TOTAL column for AdvancedDataGridColumnGroup? John Isaacks2009-10-23T20:43:01Z2009-10-23T20:43:01Z<p>I found the answer here: <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=advdatagrid%5F10.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=advdatagrid%5F10.html</a> </p>
http://stackoverflow.com/questions/1614606/flex-calculate-hours-between-2-times0Flex: Calculate hours between 2 times?John Isaacks2009-10-23T16:38:40Z2009-10-23T17:41:23Z
<p>I am building a scheduling system. The current system is just using excel, and they type in times like 9:3-5 (meaning 9:30am-5pm). I haven't set up the format for how these times are going to be stored yet, I think I may have to use military time in order to be able to calculate the hours, but I would like to avoid that if possible. But basically I need to be able to figure out how to calculate the hours. for example 9:3-5 would be (7.5 hours). I am open to different ways of storing the times as well. I just need to be able to display it in an easy way for the user to understand and be able to calculate how many hours it is.</p>
<p>Any ideas?</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1602823/mysql-left-join-select-all-from-table-1-even-if-not-there-in-table-20MySQL: LEFT JOIN.. select all from table 1 even if not there in table 2?John Isaacks2009-10-21T18:50:26Z2009-10-21T18:56:22Z
<p>I am joining a few tables for a selection</p>
<p>If there isnt anything matching in the 2nd, 3rd, 4th tables I still want to pull the results as long as the first table has a match. I thought LEFT JOIN did this, but it is not.</p>
<p>Here is the full query:</p>
<pre><code>SELECT cart_product.*, prod_drop_products.prod_drop_product_name, everlon_sheet.*, cart_product.product_id AS product_id
FROM cart_product
LEFT JOIN everlon_sheet ON cart_product.product_id = everlon_sheet.product_id
LEFT JOIN prod_drop_products ON cart_product.product_id = prod_drop_products.product_id
LEFT JOIN prod_drop ON prod_drop.prod_drop_id = prod_drop_products.prod_drop_id
WHERE prod_drop.prod_drop_name = "Carat Weight" AND cart_product.product_brand = "everlon"
ORDER BY cart_product.product_manufacturer_num
</code></pre>
<p>which pulls 316 results</p>
<p>Here is the query without the joins:</p>
<pre><code>SELECT cart_product.*
FROM cart_product
WHERE cart_product.product_brand = "everlon"
ORDER BY cart_product.product_manufacturer_num
</code></pre>
<p>which pulls 362 results</p>
<p>I have a hunch this is happening because of my <strong>WHERE prod_drop.prod_drop_name = "Carat Weight"</strong> clause in the JOIN qry. But is there a way to pull what I need in my query above but still pull everything from the first (most left, cart_product) table even if nothing matches in the other tables?</p>
<p>Thanks!! </p>
http://stackoverflow.com/questions/1596715/turn-off-a-particular-warning-in-flex-builder-30Turn off a particular warning in Flex Builder 3?John Isaacks2009-10-20T19:11:43Z2009-10-21T05:24:05Z
<p>I keep getting this warning:</p>
<p><strong>warning: unable to bind to property 'image' on class 'XML' (class is not an IEventDispatcher)</strong></p>
<p>Is there a way I can turn off this type of warning (but keep the others) as it is driving me crazy when I try to trace something else.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1597105/flex-caching-images-in-list-item-renderer0Flex: Caching images in list item renderer?John Isaacks2009-10-20T20:28:59Z2009-10-20T22:15:29Z
<p>I have a List and the item renderer displays an image. Whenever you scroll the list, and the item renderer refreshes, it redownloads the image. Causing there to always be a delay. Is there some way of caching it so it doesn't have to redownload every time causing a delay in showing the image every time you scroll the list?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1590936/html-specify-print-pages4HTML specify print pages?John Isaacks2009-10-19T20:26:13Z2009-10-19T20:52:26Z
<p>I am making a table of data that needs to printed out. I want the header to be at the top of each page. SO I am thinking the best way to do this is to repeat the header maybe every 30 columns or so, and break it into sections. But theres still no way to ensure that each section gets printed on its own page that I know of. Does anyone know how to do what I am trying to do? Main concern is just making the header at the top of each page when printing out the table of data.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1574210/php-how-to-embed-image-in-an-excel-column-generated-from-php0PHP: How to embed image in an excel column generated from PHP?John Isaacks2009-10-15T18:29:46Z2009-10-15T18:39:05Z
<p>I am echoing TSV data and turning it into an excel file via header()</p>
<p>This works fine, but 1 of the columns needs to be an image. How can I embed the image as one of the columns?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1572701/css-thin-banner-on-top-of-page-like-the-orange-one-on-this-page2CSS: Thin banner on top of page (like the orange one on this page)John Isaacks2009-10-15T14:25:27Z2009-10-15T14:40:50Z
<p>I need to put a thin banner on the top of the page kinda like the orange notification one on this page. I need it to be absolutely positioned though, because when you click on it it needs to drop down (over the current page, not pushing the current page down). The banner needs to stretch the entire width of window but the content needs to be within 800px in the middle. I have it already made but I am having trouble with the CSS positioning of it.</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1568110/php-breaking-out-of-php-for-html-but-return-as-value-instead-of-print-on-page1PHP: Breaking out of PHP for HTML but return as value instead of print on page?John Isaacks2009-10-14T18:25:13Z2009-10-14T18:32:26Z
<p>I am generating a lot of HTML code via PHP, but I need to store it in a variable, not display it immediately. But I want to be able to break out of PHP so my code isnt a giant string. </p>
<p>for example (but actual code will be much larger):</p>
<pre><code><?php
$content = '<div>
<span>text</span>
<a href="#">link</a>
</div>';
?>
</code></pre>
<p>I want to do something like this:</p>
<pre><code><?php
$content =
?>
<div>
<span>text</span>
<a href="#">link</a>
</div>
<?php
;
?>
</code></pre>
<p>But I know this will not return the html as a value it will just print it to the document. </p>
<p>But is there a way to do this tho?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1368122/flex-sort-writing-a-custom-comparefunction0Flex: Sort -- Writing a custom compareFunction? John Isaacks2009-09-02T14:42:13Z2009-10-12T21:00:15Z
<p>OK I am sorting an XMLListCollection in alphabetical order. I have one issue tho, If the value is "ALL" I want it to be first in the list. Most cases this happens already but values that are numbers are being sorted before "ALL" ...I want "ALL" to always be the first selection in my dataProvider and then the rest alphabetical.</p>
<p>So I am tryint to write my own sort function, is there a way I can check if one of the values is all, and if not tell it to do the regular compare on the values?</p>
<p>here is what I have:</p>
<pre><code>function myCompare(a:Object, b:Object, fields:Array = null):int
{
if(String(a).toLowerCase() == 'all')
{
return -1;
}
else if(String(b).toLowerCase() == 'all')
{
return 1;
}
// NEED to return default comparison results here?
}
//------------------------------
var sort:Sort = new Sort();
sort.compareFunction = myCompare;
</code></pre>
<p>Does anyone have a solution for what I am trying to do?</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/1544747#15447471Answer by John Isaacks for What coding mistakes are a telltale giveaway of an inexperienced programmer?John Isaacks2009-10-09T16:15:37Z2009-10-09T16:15:37Z<p>When someone spends hours repeating a task when they could take 5 minutes to write a script to do it for them and never have to do it again.</p>
http://stackoverflow.com/questions/1750028/mysql-why-is-this-query-running-so-slow/1750053#1750053Comment by John Isaacks on MySql: Why Is this Query running so slow?John Isaacks2009-11-17T16:34:58Z2009-11-17T16:34:58ZPerfect, thanks!http://stackoverflow.com/questions/1688996/flex-list-displaying-wrong-until-scrolledComment by John Isaacks on Flex: List displaying wrong until scrolled.John Isaacks2009-11-06T21:15:27Z2009-11-06T21:15:27Z@greg added code samplehttp://stackoverflow.com/questions/1676212/flex-component-lifecycle-validatenow-validatedisplaylist-invalidatedisplallist/1676238#1676238Comment by John Isaacks on Flex Component Lifecycle: validateNow, validateDisplayList, invalidateDisplalList, commitProperties, etc.John Isaacks2009-11-05T16:17:47Z2009-11-05T16:17:47ZThat was a great read, thanks for sharing!http://stackoverflow.com/questions/1639036/php-get-next-13-dates-from-date/1639064#1639064Comment by John Isaacks on PHP: get next 13 dates from date?John Isaacks2009-10-28T18:15:16Z2009-10-28T18:15:16ZThat makes since, so what should I do instead? Thanks.http://stackoverflow.com/questions/1632302/php-mysql-duplicate-series-of-rows-but-change-1-column/1632454#1632454Comment by John Isaacks on PHP, MySQL: Duplicate series of rows, but change 1 column?John Isaacks2009-10-27T17:47:46Z2009-10-27T17:47:46ZActually I using 4.1.22, sorry for not specifyinghttp://stackoverflow.com/questions/1632302/php-mysql-duplicate-series-of-rows-but-change-1-column/1632425#1632425Comment by John Isaacks on PHP, MySQL: Duplicate series of rows, but change 1 column?John Isaacks2009-10-27T17:45:32Z2009-10-27T17:45:32ZThis is not a unique/index key. http://stackoverflow.com/questions/1614606/flex-calculate-hours-between-2-times/1614617#1614617Comment by John Isaacks on Flex: Calculate hours between 2 times?John Isaacks2009-10-23T19:28:33Z2009-10-23T19:28:33ZThanks, I removed the Math.ceil() in my version as I didnt want to do rounding, but to show the hour as a decimal.http://stackoverflow.com/questions/1602823/mysql-left-join-select-all-from-table-1-even-if-not-there-in-table-2/1602869#1602869Comment by John Isaacks on MySQL: LEFT JOIN.. select all from table 1 even if not there in table 2?John Isaacks2009-10-21T19:15:24Z2009-10-21T19:15:24ZHi, this is half of what I need. If there is a prod_drop but its not "carat weight" I still want to select whats from cart_product I just dont want to select anything from prod_drop. Also FYI they can have several drop_prods that match, but I only want to pull data from the drop_prod if the name is carat weight. If there is no drop_prod, or there is a drop_prod with a different name, then I just want to pull from cart_product. Does that make sense... would this be better to just break into multiple querys?http://stackoverflow.com/questions/1602823/mysql-left-join-select-all-from-table-1-even-if-not-there-in-table-2/1602861#1602861Comment by John Isaacks on MySQL: LEFT JOIN.. select all from table 1 even if not there in table 2?John Isaacks2009-10-21T19:06:04Z2009-10-21T19:06:04ZHi thanks, This does jump me up to 340. There is I know what stopping the rest but im not sure how to fix it.. they can have several prod_drop.prod_drop_name set to them, so if they have one that is set but is not CARAT WEIGHT, i still want to pull whats from cart_product, just not pull whats from prod_drop. I got bumped to 340 because its now added the ones that have no drop_prod, but the ones that do have drop_prod just not a carat weight drop_prod, i still want to select, I just dont want to pull the drop_prod, make sense? Is there a way to do that? THANKS!!!http://stackoverflow.com/questions/1574210/php-how-to-embed-image-in-an-excel-column-generated-from-php/1574250#1574250Comment by John Isaacks on PHP: How to embed image in an excel column generated from PHP?John Isaacks2009-10-15T18:43:08Z2009-10-15T18:43:08ZThanks, do you know of any I can install without having access to PHP.INI? Thankshttp://stackoverflow.com/questions/1574210/php-how-to-embed-image-in-an-excel-column-generated-from-php/1574256#1574256Comment by John Isaacks on PHP: How to embed image in an excel column generated from PHP?John Isaacks2009-10-15T18:42:16Z2009-10-15T18:42:16ZI looked into that, but you have to have excess to the PHP.INI file which I unfortunately do not.http://stackoverflow.com/questions/1573692/php-turn-html-table-into-spread-sheet/1573737#1573737Comment by John Isaacks on PHP: Turn HTML table into spread sheet?John Isaacks2009-10-15T18:27:10Z2009-10-15T18:27:10ZI figured out why it wasn't working, I was using \n but I needed to use \r\nhttp://stackoverflow.com/questions/1573692/php-turn-html-table-into-spread-sheet/1573737#1573737Comment by John Isaacks on PHP: Turn HTML table into spread sheet?John Isaacks2009-10-15T17:16:23Z2009-10-15T17:16:23ZI tried this and it does let me save it as an Excel file :) ...however when trying to open the excel file I am told it is formatted wrong. So I removed all the HTML tags and made it pure TSV and save it as excel that way. Still it does save as an excel file but then tells me its formated wrong when trying to open it?http://stackoverflow.com/questions/1462138/js-event-listener-for-when-element-becomes-visible/1462278#1462278Comment by John Isaacks on JS: event listener for when element becomes visible?John Isaacks2009-09-24T14:31:22Z2009-09-24T14:31:22ZI didnt mark you as answer but thanks for posting.http://stackoverflow.com/questions/1462138/js-event-listener-for-when-element-becomes-visibleComment by John Isaacks on JS: event listener for when element becomes visible?John Isaacks2009-09-23T12:51:24Z2009-09-23T12:51:24Z@kangax, thank you. But since its not widely implemented I think I'm going to scratch the whole event listener idea and go a different route.