Posts

charts - Flex 3 prevent duplicate stacking in ColumnChart control -

here problem: i'm using columnchart display 6 label/value pairs. when 2 labels same, chart stacks them up, 1 on top of other. want display these duplicates side side, value might same or might distinct. my first thought append unique id label, that's not possible according client. so, there way tell chart take hidden id consideration? someone suggested sort of grouping, need display each chart separate, if distinct charts. the chart's data provider array of these objects: obj.description = "des"; obj.countv = 3;//some arbitrary number obj.id = 2; //a unique id... the chart code: ...

Finding C++ multimedia editing graph-like frameworks? -

i'm searching multimedia editing graph-like frameworks can create graph elements c++ , can build graphs app needs elements of framework. so far know there gstreamer directshow quicktime qt phonon (cross-platform wrapper around first 3) i wonder see else out there - there proprietary or open source, cross-platform or platform-dependent alternatives , main goals? microsoft media foundation -- more or less replacement directshow. don't see drastic improvements, if want use (for example) microsoft's new h.264 decoder, you're pretty stuck it. can undoubtedly guess name, it's windows only. perhaps less obviously, it's supported on vista , later. another sort of fits description ffmpeg .

c - How can I disable the Start button (but not the Taskbar) on Windows 7? -

Image
on windows xp, possible disable start button following code: htray = findwindow (text("shell_traywnd"), null); if (htray) { hstartbutton = findwindowex(htray, null, text("button"), null); if (hstartbutton) showwindow(hstartbutton, false); } for public-access computer configuration, need able on windows 7. start button must disabled (not hidden), , remainder of taskbar must still visible , usable. hiding taskbar along start button not option. running full-screen not option. using "start killer" won't work because doesn't disable start button, hides (users can still use hotkeys pull start menu). i have tried method uses findwindowex 0xc017 third parameter , tries disable window. doesn't work. method works if whole taskbar disabled first. need method only disables start menu, code reproduced above in xp. any appreciated. the "correct" version windows 7 shown below: hwnd hstartbtn = findwindowex(null, null...

iphone - Under iOS, does anyone know how UUID's are generated for executables and what information may be encoded therein? -

applications compiled on ios assigned identifiers (uuid's) @ compile time. these identifiers may revealed dwarfdump tool. know how uuid's generated , information may encoded within them? almost they're generated corefoundation uuid machinery, creates them based off of mac address of ethernet card, timestamp, , other miscellaneous information. can generate own uuids running uuidgen . information encoded in them, that's there fragments of mac address. pretty relevance has may theoretically possible determine multiple uuids generated on same machine, don't know if that's possible.

php looping array - html table -

i have array of n elements, of form: array ( array ("foo", "bar"), array ("foo", "bar"), array ("foo", "bar")... ) i loop on array , display them on html table. <? $bigarray = array( array("foo", "bar"), array("foo", "bar"), array("foo", "bar") ); ?> <table> <? foreach($bigarray $a) { ?> <tr><? for($j=0; $j <= 5; ++$j) { ?><td><?= $a[$j] ?></td><? } ?></tr> <? } ?> </table> the advantage of approach can prototype favorite html editor , plug commands in. note works when server supports short_tags.

What's the reason/primary benefit of jQuery 1.5's jqXHR? -

i'm curious, intentions of jqxhr wrapper? there improves development? it implements xhr-like functionality non-xhr transports (think jsonp, etc.) also, allows promises. best place read on right in docs: http://api.jquery.com/jquery.ajax/#jqxhr

ios - iPhone HTTP streaming server components -

hi setting http live streaming ios. rtsp stream on udp , pass on mediastreamsegmenter. questions are: -do need mac based server mediastreamsegmenter tool can job? if yes have alternatives? -can pass remote machine address mediastreamsegmenter store segmented files , index file? i cant afford server , mac server matter.... replies appreciated. you don't need mac server. in fact, if use amazon s3, can combine cloudfront rtmp streaming of files s3 user. check out: http://aws.amazon.com/cloudfront/#highlights you can pass stream address media stream segmenter, , you're go.