User mofle - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T19:32:12Zhttp://stackoverflow.com/feeds/user/64949http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1829339/best-way-to-fade-in-out-image0Best way to fade in/out imagemofle2009-12-01T22:17:39Z2009-12-01T22:31:11Z
<p>What is the best (least resource heavy) way to fade an image in and out every 20 seconds with a duration of 1 second, against a black background (screensaver), in C# ?</p>
<p>(an image about 350x130px).</p>
<p>I need this for a simple screensaver that's going to run on some low level computers (xp).</p>
<p>Right now I'm using this method against a pictureBox, but it is too slow:</p>
<pre><code> private Image Lighter(Image imgLight, int level, int nRed, int nGreen, int nBlue)
{
Graphics graphics = Graphics.FromImage(imgLight);
int conversion = (5 * (level - 50));
Pen pLight = new Pen(Color.FromArgb(conversion, nRed,
nGreen, nBlue), imgLight.Width * 2);
graphics.DrawLine(pLight, -1, -1, imgLight.Width, imgLight.Height);
graphics.Save();
graphics.Dispose();
return imgLight;
}
</code></pre>
http://stackoverflow.com/questions/1637870/best-approach-to-slideup-and-tabs-with-jquery0Best approach to slideup and tabs with jQuerymofle2009-10-28T15:05:24Z2009-11-29T05:27:06Z
<p>I'm creating a page with an image at the top, and a menu below. When the user clicks on on of the 3 menu buttons, the image slideUp and the page scrolls down so the menu is at the top of the page, then the right .content div fades in. The slideUp should only happen the first time the user clicks on of the buttons.<br /><br /></p>
<p><b>What the absolute best way to do this with jQuery?</b> (no plugins)
<br /><br /></p>
<p>I also need to know how I can't prevent it to fade in the page that is already visible if i click the same button twice?</p>
<p>I'm using <em>rel</em> instead of <em>href</em>, since the href made the page jump, even with <em>return false</em>.</p>
<p>This is what I have so far:</p>
<pre><code><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
imgVisible = true;
$('#mainmenu a').click(function(){
var $activeTab = $(this).attr('rel');
if(!imgVisible){
$('html:not(:animated),body:not(:animated)').animate({scrollTop:$('#mainmenu').offset().top-20},500);
$('.content').hide();
$($activeTab).fadeIn();
} else{
$('#imgholder').slideUp(500,function(){
imgVisible = false;
$('#mainmenu a[rel="'+$activeTab+'"]').click();
});
}
return false;
});
});
</script>
<div id="imgholder"><img src="image.jpg" /></div>
<div id="mainmenu">
<ul>
<li><a rel="#tab1"></a></li>
<li><a rel="#tab2"></a></li>
<li><a rel="#tab3"></a></li>
</ul>
</div>
<div id="container">
<div class="content" id="tab1">
content
</div>
<div class="content" id="tab2">
content
</div>
<div class="content" id="tab3">
content
</div>
</div>
</code></pre>
http://stackoverflow.com/questions/1737848/change-title-of-mfmailcomposeviewcontroller1Change title of MFMailComposeViewControllermofle2009-11-15T15:34:14Z2009-11-24T07:13:19Z
<p>I'm using MFMailComposeViewController for in-app email in my app, but I'm not able to change the title. As default it's showing the subject in the title, but I would like to set the title to be something else. How can I do that?</p>
<p>I've tried:</p>
<pre><code>controller.title = @"Feedback";
</code></pre>
<p>but it didn't work.</p>
<p>Here's my code:</p>
<pre><code>- (IBAction)email {
NSArray *array = [[NSArray alloc] initWithObjects:@"myemail@gmail.com", nil];
MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init];
[[controller navigationBar] setTintColor:[UIColor colorWithRed:0.36 green:0.09 blue:0.39 alpha:1.00]];
controller.mailComposeDelegate = self;
controller.title = @"Feedback";
[controller setSubject:@"Long subject"];
[controller setMessageBody:@""
isHTML:NO];
[controller setToRecipients:array];
[self presentModalViewController:controller animated:YES];
[controller release];
[array release];
}
- (void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error {
[self becomeFirstResponder];
[self dismissModalViewControllerAnimated:YES];
}
</code></pre>
http://stackoverflow.com/questions/747336/parse-and-add-url-from-clipboard0Parse and add url from clipboardmofle2009-04-14T12:37:55Z2009-11-23T08:40:18Z
<p>I need a javascript bookmark to take the url I have in the clipboard parse out the 2 numbers and create a new url, and add a link to the top of the page, that when clicked adds the url to my bookmark menu.</p>
<p>Say I have url's like these</p>
<pre>http://www.website.com/frontpageeditor.jhtml?sectionID=2844&poolID=6276</pre>
<pre>javascript:getPoolPageUrl(9800,22713)</pre>
<p>Then I need to add the numbers to this url</p>
<pre>javascript:frames['content'].getPoolPageUrl(9800,22713)</pre>
<p>and then add the url to the top of the frame "content".</p>
<p>I have tried forever on this, but I can't figure out it out.</p>
<p><br /><br />
<b>Update</b><br />
I've put something together, to show you what I need. This one doesn't work though. <br /><br />Any ideas why?</p>
<pre><code>var url = window.clipboardData.getData('Text');
var reg = /(\d+)/g;
var matches = url.match(reg); //returns ["2844","6276"]
var newUrl = "javascript:frames['content'].getPoolPageUrl("+matches[0]+","+matches[1]+")";
var link = document.createElement('a');
link.src = newUrl;
frames['content'].document.body.appendChild(link);
</code></pre>
<p><br /><br />
<b>Update2</b><br />
This works. Any changes I can do to make it even better?</p>
<pre><code>var url = window.clipboardData.getData('text');
var matches = url.match(/(\d+)/g);
var link = frames['content'].document.createElement('a');
link.href = "javascript:frames['content'].getPoolPageUrl("+matches[0]+","+matches[1]+")";
link.innerHTML = document.title;
frames['content'].document.body.appendChild(link);
</code></pre>
http://stackoverflow.com/questions/1775068/hover-using-jquery/1775559#17755591Answer by mofle for Hover using jQuerymofle2009-11-21T13:58:48Z2009-11-21T13:58:48Z<pre><code>$('div.bar').hover(function(){
$(this).toggleClass('hover');
},function(){
$(this).toggleClass('hover');
});
</code></pre>
http://stackoverflow.com/questions/649613/read-variable-from-another-function0Read variable from another functionmofle2009-03-16T08:17:15Z2009-11-16T02:05:40Z
<p>How can I access an variable from another function?</p>
<p>I have a function that sets and variable:</p>
<pre><code>private function create () {
var str:String = "hello";
}
private function take() {
var message:String = str;
}
</code></pre>
http://stackoverflow.com/questions/1634417/changing-mfmailcomposeviewcontrollers-toolbar-color/1737858#17378581Answer by mofle for Changing MFMailComposeViewController's toolbar colormofle2009-11-15T15:38:06Z2009-11-15T15:38:06Z<p>Here you go:</p>
<pre><code>[[picker navigationBar] setTintColor:[UIColor blackColor]];
</code></pre>
http://stackoverflow.com/questions/1673936/jquery-slidedown-with-easing1jQuery slideDown with easingmofle2009-11-04T14:04:37Z2009-11-04T15:12:59Z
<p>How can use the slideDown() function with easing?</p>
<p>Maybe extend it somehow?</p>
<p>I'm looking for something like this:</p>
<pre><code>jQuery.fn.slideDown = function(speed, easing, callback) {
return ...
};
</code></pre>
<p>So i can use it slide this<br /></p>
<pre><code>$('.class').slideDown('400','easeInQuad');
</code></pre>
<p>or this<br /></p>
<pre><code>$('.class').slideDown('400','easeInQuad',function(){
//callback
});
</code></pre>
http://stackoverflow.com/questions/1657034/free-html-editor-for-windows1Free HTML editor for Windowsmofle2009-11-01T12:22:16Z2009-11-01T16:14:45Z
<p>I'm looking for a free HTML editor for Windows that support combined syntax highlighting. </p>
<p>Basically it means that if I have a HTML document open with both JavaScript and CSS, it would add HTML syntax highlighting to the HTML part, JavaScript syntax to the JavaScript part, and CSS syntax to the CSS part.</p>
http://stackoverflow.com/questions/1554494/can-i-make-the-browser-follow-a-link-after-a-certain-amount-of-time-with-jquery/1555809#15558090Answer by mofle for Can I make the browser follow a link after a certain amount of time with jQuery?mofle2009-10-12T17:16:55Z2009-10-12T22:08:12Z<p>I like this way of doing it:</p>
<p><br />
On document ready:</p>
<pre><code>$(function(){
window.location = $('#link').attr('href');
});
</code></pre>
<p><br />
2 seconds after document ready:</p>
<pre><code>$(function(){
setTimeout(function(){
window.location = $('#link').attr('href');
},2000);
});
</code></pre>
http://stackoverflow.com/questions/1028556/realtime-duplicate-of-movieclip0Realtime duplicate of MovieClipmofle2009-06-22T17:46:01Z2009-10-11T16:08:50Z
<p>I have a MovieClip containing an image.
The image can be dragged around inside the MC.
The MC has a mask, let say round, so not all of the image is visible all the time, depends on where you drag the image.</p>
<p>What I need is a real-time duplicate of this MC as a smaller thumbnail. When I drag the image around in the MC, the duplicate thumbnail MC should be updated in real-time.</p>
<p>Anyone know how to do this?</p>
http://stackoverflow.com/questions/1550761/update-dom-after-insert-in-jquery/1550833#15508332Answer by mofle for Update DOM after insert in jQuerymofle2009-10-11T14:36:26Z2009-10-11T14:36:26Z<p>Use <a href="http://docs.jquery.com/Events/live" rel="nofollow">live</a> like this:</p>
<pre><code> $(".view").live("click",function(){
$(this).parent().load("view");
});
</code></pre>
http://stackoverflow.com/questions/959936/global-variable-problem1Global variable problemmofle2009-06-06T15:32:12Z2009-10-07T00:22:30Z
<p>I load an image and add it to the MC someMC. If "something" is true, the someVariable gets the someMC scaleX number. Let's say its 0.82.</p>
<p>What I need is to get that number into the s.value in my Slider object. Since I want the Slider value to be where my image scale is.</p>
<p>This of course doesn't work because of variable scope limitations.</p>
<p>I have tried setting the variable at the top of the code like this:
var someVariable:Number;
but that didn't work either.</p>
<p>Here's the code:</p>
<pre><code>function completeHandler(event:Event):void{
if (something) {
var someVariable:Number = this.someMC.scaleX;
}
}
var s:Slider = new Slider();
s.maximum = 500;
s.minimum = 10;
s.value = someVariable;
</code></pre>
<p>Any thoughts?</p>
<p><br /><b>Update</b><br />
I'm looking for a solution without having to use package and class, since I'm not that steady with AS3 yet.
<br /><br /></p>
<p><b>Update 2</b><br />
<a href="http://pastebin.com/m7c37b3cf" rel="nofollow">I've uploaded all the code to Pastebin. Take a look ;)</a></p>
http://stackoverflow.com/questions/1403888/get-url-parameter-with-jquery0Get URL parameter with jQuerymofle2009-09-10T07:46:19Z2009-09-25T18:25:53Z
<p>I'm looking for a jQuery plugin that can get url parameters, and support this search string without outputting Javascript error: malformed URI sequence. If there isn't a jQuery plugin that supports this, I need to know how to modify it to support this.</p>
<pre>?search=%E6%F8%E5</pre>
<p>The value of the url parameter, when decoded, should be:</p>
<pre>æøå</pre>
<p>(the characters are norwegian).</p>
<p>I don't have access to the server, so I can't modify anything on it.</p>
http://stackoverflow.com/questions/1448652/run-function-once-per-event-burst-with-jquery0Run function once per event burst with jQuerymofle2009-09-19T14:28:50Z2009-09-23T09:31:53Z
<p>I'm using jQuery to listen to DOMSubtreeModified event, and then execute a function. What I need is a way to only run a function once per event burst. So in this case, the event will only run after 1 second, and again after 3 seconds. What is the best way to do this?
<br /><br /></p>
<p>jQuery</p>
<pre><code>$(function(){
setTimeout(function(){
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
},1000);
setTimeout(function(){
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
},3000);
$('#container').bind('DOMSubtreeModified',function(){
console.log('event');
functionToRun();
});
});
</code></pre>
<p>HTML</p>
<pre><code><div id="container"></div>
</code></pre>
<p><br />
<b>Update</b><br />
The setTimeout function are there just to emulate my problem. I need a solution without changing the setTimeout code. The problem I'm having is that I get burst of DOMSubtreeModified events, and I need to get only one per burst.</p>
http://stackoverflow.com/questions/1448652/run-function-once-per-event-burst-with-jquery/1448824#14488241Answer by mofle for Run function once per event burst with jQuerymofle2009-09-19T15:59:22Z2009-09-23T09:31:53Z<p>Solved it myself.</p>
<pre><code>$(function(){
setTimeout(function(){
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
},1000);
setTimeout(function(){
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
},1100);
setTimeout(function(){
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
$('#container')[0].innerHTML = 'test';
},3000);
addDivListener();
});
function addDivListener() {
$('#container').bind('DOMSubtreeModified',function(){
functionToRun();
$(this).unbind('DOMSubtreeModified');
setTimeout(addDivListener,10);
});
}
function functionToRun(){
console.log('event');
}
</code></pre>
<p>This prints out <i>event</i> 3 times in the Firebug console, and is accurate down to 100 ms.</p>
http://stackoverflow.com/questions/1449666/create-a-jquery-special-event-for-content-changed4Create a jQuery special event for content changedmofle2009-09-19T22:17:42Z2009-09-20T18:28:35Z
<p>I'm trying to create a jQuery special event that triggers when the content that is bound, changes. My method is checking the content with a setInterval and check if the content has changed from last time. If you have any better method of doing that, let me know. Another problem is that I can't seem to clear the interval. Anyway, what I need is the best way to check for content changes with the event.special.</p>
<pre><code>(function(){
var interval;
jQuery.event.special.contentchange = {
setup: function(data, namespaces) {
var $this = $(this);
var $originalContent = $this.text();
interval = setInterval(function(){
if($originalContent != $this.text()) {
console.log('content changed');
$originalContent = $this.text();
jQuery.event.special.contentchange.handler();
}
},500);
},
teardown: function(namespaces){
clearInterval(interval);
},
handler: function(namespaces) {
jQuery.event.handle.apply(this, arguments)
}
};
})();
</code></pre>
<p>And bind it like this:</p>
<pre><code>$('#container').bind('contentchange', function() {
console.log('contentchange triggered');
});
</code></pre>
<p>I get the console.log 'content changed', but not the console.log 'contentchange triggered'. So it's obvious that the callback is never triggered.</p>
<p>I just use Firebug to change the content and to trigger the event, to test it out.</p>
<p><b>Update</b><br />
I don't think I made this clear enough, my code doesn't actually work. I'm looking for what I'm doing wrong.</p>
<p><br /></p>
<p><b>Here is the finished code for anyone interested</b></p>
<pre><code>(function(){
var interval;
jQuery.event.special.contentchange = {
setup: function(){
var self = this,
$this = $(this),
$originalContent = $this.text();
interval = setInterval(function(){
if($originalContent != $this.text()) {
$originalContent = $this.text();
jQuery.event.handle.call(self, {type:'contentchange'});
}
},100);
},
teardown: function(){
clearInterval(interval);
}
};
})();
</code></pre>
<p>Thanks to Mushex for helping me out.</p>
http://stackoverflow.com/questions/1435185/screensaver-in-c-with-fading-image0Screensaver in C++ with fading imagemofle2009-09-16T20:08:08Z2009-09-17T16:54:32Z
<p>How can I make a screensaver in C++ that fades an image in and out at random places on the screen with a specified time delay on the fade out?</p>
<p>Multimonitor support would be awesome.</p>
<p>If you have a working code or know where I can get it, it would be great. Otherwise point me in the right direction. I'm looking for a method that has a smooth and not laggy og flickery fade. The screensaver is for Windows XP.</p>
<p>I dont know C++, but I do know AS3, Javascript, and PHP. So I was hoping to relate some of that knowledge to C++.</p>
<p>What should I use to compile it?</p>
http://stackoverflow.com/questions/1428645/search-through-a-big-list-fast-with-jquery0Search through a big list fast with jQuerymofle2009-09-15T17:46:38Z2009-09-16T19:28:36Z
<p>I'm using this code to search trough about 500 li tags.</p>
<pre><code>$(function() {
$.expr[":"].containsInCaseSensitive = function(el, i, m){
var search = m[3];
if (!search) return false;
return eval("/" + search + "/i").test($(el).text());
};
$('#query').focus().keyup(function(e){
if(this.value.length > 0){
$('ul#abbreviations li').hide();
$('ul#abbreviations li:containsInCaseSensitive(' + this.value + ')').show();
} else {
$('ul#abbreviations li').show();
}
if(e.keyCode == 13) {
$(this).val('');
$('ul#abbreviations li').show();
}
});
});
</code></pre>
<p>And here is the HTML:</p>
<pre><code><input type="text" id="query" value=""/>
<ul id="abbreviations">
<li>ABC<span>description</span></li>
<li>BCA<span>description</span></li>
<li>ADC<span>description</span></li>
</ul>
</code></pre>
<p>This script is very slow with this many li tags.</p>
<p>How can I make it faster, and how can I search trough only the ABC text in the li, and not the span tags (without changing the html) ?</p>
<p>I know about the existing plugins, but I need a small implementation like this.
<br /><br /></p>
<p><b>Here's the finished code for anyone interested</b></p>
<pre><code>var abbrs = {};
$('ul#abbreviations li').each(function(i){
abbrs[this.firstChild.nodeValue] = i;
});
$('#query').focus().keyup(function(e){
if(this.value.length >= 2){
$('ul#abbreviations li').hide();
var filterBy = this.value.toUpperCase();
for (var abbr in abbrs) {
if (abbr.indexOf(filterBy) !== -1) {
var li = abbrs[abbr];
$('ul#abbreviations li:eq('+li+')').show();
}
}
} else {
$('ul#abbreviations li').show();
}
if(e.keyCode == 13) {
$(this).val('');
$('ul#abbreviations li').show();
}
});
</code></pre>
http://stackoverflow.com/questions/1383725/is-this-a-valid-xml1Is this a valid XML?mofle2009-09-05T16:37:02Z2009-09-09T21:19:24Z
<p>I have a feeling this XML is not valid, can someone please explain why?</p>
<p>I think it has something todo this the dot i the element name?</p>
<pre>estate_price.price_suggestion</pre>
<p>Any thing else not valid about this XML?</p>
<p>XML</p>
<pre><code> \\ <?xml version="1.0" encoding="UTF-8"?>
<iad>
<DataTag>
<element id="0">
<changed_string>content</changed_string>
<no_of_bedrooms>content</no_of_bedrooms>
<published_string>content</published_string>
<mmo>content</mmo>
<postcode>content</postcode>
<utmx>content</utmx>
<utmy>content</utmy>
<disposed>content</disposed>
<property_type>content</property_type>
<isprivate>content</isprivate>
<heading>content</heading>
<published>content</published>
<estate_price.price_suggestion>content</estate_price.price_suggestion>
<ownership_type>content</ownership_type>
<estate_size.useable_area>content</estate_size.useable_area>
<adid>content</adid>
<address>content</address>
<sqmtrprice>content</sqmtrprice>
<estate_size.primary_room_area>content</estate_size.primary_room_area>
<location>content</location>
<changed>content</changed>
<orgname>content</orgname>
</element>
<element id="1">
<changed_string>content</changed_string>
<no_of_bedrooms>content</no_of_bedrooms>
<published_string>content</published_string>
<mmo>content</mmo>
<postcode>content</postcode>
<utmx>content</utmx>
<utmy>content</utmy>
<disposed>content</disposed>
<property_type>content</property_type>
<isprivate>content</isprivate>
<heading>content</heading>
<published>content</published>
<estate_price.price_suggestion>content</estate_price.price_suggestion>
<ownership_type>content</ownership_type>
<estate_size.useable_area>content</estate_size.useable_area>
<adid>content</adid>
<address>content</address>
<sqmtrprice>content</sqmtrprice>
<estate_size.primary_room_area>content</estate_size.primary_room_area>
<location>content</location>
<changed>content</changed>
<orgname>content</orgname>
</element>
</DataTag>
</iad>
</code></pre>
http://stackoverflow.com/questions/1376182/image-scaling-and-smoothing1Image scaling and smoothingmofle2009-09-03T21:58:30Z2009-09-09T06:16:14Z
<p>I'm importing some images dynamically into a SWF from an external site using AS2.
It works perfectly when I load my images from my computer, but when I try to load them from the external server the smoothing doesn't work.</p>
<p>My code:</p>
<pre><code> var imageLoad:MovieClipLoader = new MovieClipLoader();
imageLoad.addListener({
onLoadInit:function (target:MovieClip) {
target._quality = "BEST";
target._width = 160;
target._yscale = target._xscale;
if (target._height>105) {
target._height = 105;
target._xscale = target._yscale;
}
target.forceSmoothing = true;
}
});
imageLoad.loadClip(imageURL,imageMC);
</code></pre>
<p>I have tried out every solution I could find on the net, and no one worked with smoothing...</p>
<p>Any solution to this?</p>
http://stackoverflow.com/questions/1384590/as3-code-feedback0AS3 code feedbackmofle2009-09-06T00:36:16Z2009-09-06T10:39:48Z
<p>I have just started coding in AS3 and it would be really great to get some feedback from the experts; on my coding style, things I'm doing wrong, thing I can improve on, best practises, and so on... Also if you have some extra tips or tricks, that would be great.</p>
<p>Here's my first bit of AS3 code, took me 5 hours, puh:</p>
<pre><code>package {
import flash.display.Sprite;
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.events.*;
import flash.errors.*;
import flash.display.MovieClip;
import gs.*;
import flash.display.Loader;
import net.stevensacks.preloaders.CircleSlicePreloader;
public class FlatSelector extends MovieClip {
var preloader:CircleSlicePreloader = new CircleSlicePreloader();
var imageLoader:Loader = new Loader();
var globalXML:XML;
public function FlatSelector() {
stage.addEventListener(Event.ENTER_FRAME, init);
building.alpha = 0;
}
public function init(event:Event):void {
stage.removeEventListener(Event.ENTER_FRAME, init);
var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, handleXML);
loader.load(new URLRequest('http://localhost/boligvelger/flats.xml'));
TweenLite.to(building, 2, {alpha:1});
TweenLite.to(building.flat, 2, {alpha:0.5, tint:0x00FF23});
//var myTween:TweenLite = TweenLite.to(mc, 1, {x:200});
//var myTween:TweenLite = new TweenLite(mc, 1, {x:200});
}
public function handleXML(e:Event):void {
var xml:XML = new XML(e.target.data);
globalXML = xml;
for (var i:Number = 0; i < xml.leiligheter.leilighet.length(); i++) {
var flatName = xml.leiligheter.leilighet[i].navn;
if(movieClipExists(building[flatName])) {
building[flatName].addEventListener(MouseEvent.MOUSE_UP, flatMouseClick);
building[flatName].addEventListener(MouseEvent.MOUSE_OVER, flatMouseOver);
building[flatName].addEventListener(MouseEvent.MOUSE_OUT, flatMouseOut);
building[flatName].alpha = 0;
TweenLite.to(building[flatName], 2, {alpha:0.5, tint:0x00FF23});
}
}
}
public function showInfoBox():void {
}
public function showFlat(flatName:String):void {
trace('flatName: '+flatName);
trace('flat shown');
var imageURL;
for (var i:Number = 0; i < globalXML.leiligheter.leilighet.length(); i++) {
if(globalXML.leiligheter.leilighet[i].navn == flatName) {
imageURL = globalXML.leiligheter.leilighet[i].plantegning;
}
}
trace(imageURL);
loadImage(imageURL);
}
public function showBuilding():void {
TweenLite.to(imageLoader, 0.5, {alpha:0, onComplete:function(){
removeChild(imageLoader);
}});
}
public function flatMouseClick(e:MouseEvent):void {
trace('clicked');
TweenLite.to(building, 0.7, {alpha:0, onComplete:showFlat(e.target.name)});
TweenLite.to(building, 2, {y:stage.stageHeight, overwrite:0});
}
public function flatMouseOver(e:MouseEvent):void {
TweenLite.to(building[e.target.name], 0.5, {tint:0x62ABFF});
building[e.target.name].buttonMode = true;
}
public function flatMouseOut(e:MouseEvent):void {
TweenLite.to(building[e.target.name], 0.5, {tint:0x00FF23});
}
public function showPreloader():void {
preloader.x = (stage.stageWidth-preloader.width)/2;
preloader.y = (stage.stageHeight-preloader.height)/2;
preloader.alpha = 0;
addChild(preloader);
TweenLite.to(preloader, 0.5, {alpha:1});
}
public function hidePreloader():void {
TweenLite.to(preloader, 0.5, {alpha:0, onComplete:function(){
removeChild(preloader);
}});
}
public function loadImage(url):void {
imageLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loaderProgressStatus);
imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, loaderComplete);
var imageURL:URLRequest = new URLRequest(url);
imageLoader.load(imageURL);
showPreloader();
function loaderProgressStatus(e:ProgressEvent) {
//trace(e.bytesLoaded, e.bytesTotal);
}
function loaderComplete(e:Event) {
hidePreloader();
imageLoader.alpha = 0;
imageLoader.y = (stage.stageHeight-imageLoader.height)/2;
addChild(imageLoader);
TweenLite.to(imageLoader, 2, {alpha:1});
}
}
public function movieClipExists(mc:MovieClip):Boolean {
return mc != null && contains(mc);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1323389/xml-parsing-with-as20XML parsing with AS2mofle2009-08-24T16:27:09Z2009-08-30T00:33:16Z
<p>I'm using an XMLparser class to convert XML into an object.</p>
<p>The problem is that the XML I have contains a dot in the nodeName (estate_size.primary_room_area). This of course doesn't work since it uses the dot notation for the object path already.</p>
<p>Some ideas, but have no idea how to do them:<br />
-Replace the dot in the name somehow<br />
-Change the name.<br />
-Any better?</p>
<p>I can't use the native childNodes and stuff, since the XML isn't always in the right order.
I don't have access to edit the XML.
<br /><br /></p>
<p><b>Anyone have a solution to this?</b></p>
<p><br /></p>
<p>XML:</p>
<pre><code><iad>
<DataTag>
<element id="0">
<changed_string>2009-08-20T10:56:00Z</changed_string>
<estate_price.price_suggestion>2500000</estate_price.price_suggestion>
<estate_size.primary_room_area>117</estate_size.primary_room_area>
</element>
</DataTag>
</iad>
</code></pre>
<p>AS2:</p>
<pre><code> var xml:XMLParser = new XMLParser();
xml.loadXML("file.xml");
xml.onXMLLoad = function () {
_root.estate_size.text = xml.data.iad.DataTag.element[0].estate_size.primary_room_area;
}
</code></pre>
<p>XMLparser:</p>
<pre><code>//import net.za.mediumrare.xmlPackage.XMLParser;
//var myObject:XMLParser = new XMLParser ();
//myObject.loadXML ("content.xml");
//myObject.onXMLLoad = function () {
// listAll (myObject.data);
//};
// IMPORTED DEPENDENCIES
//
import mx.utils.Delegate;
import mx.events.EventDispatcher;
//
class XMLParser {
//
// PRIVATE PROPERTIES
//
private var xml:XML;
public var data:Object;
//
//
//
public function get _xml():XML {
return xml;
}
public function set _xml(x:XML) {
xml = x;
}
public function get _data():Object {
return data;
}
public function set _data(o:Object):Void {
trace("ERROR - \"XMLParser\" _data property is read-only and connot be set.");
}
//
// CONSTRUCTOR
//
public function XMLParser(s:String) {
initXML(s);
//data = new Object();
EventDispatcher.initialize(this);
}
//
// PRIVATE METHODS
//
public function buildObject (n){
var o = new String (n.firstChild.nodeValue), s, i, t;
for (s = (o == "null") ? n.firstChild : n.childNodes[1]; s != null; s = s.nextSibling) {
t = s.childNodes.length > 0 ? arguments.callee (s) : new String (s.nodeValue);
for (i in s.attributes) {
t[i] = s.attributes[i];
}
if (o[s.nodeName] != undefined) {
if (!(o[s.nodeName] instanceof Array)) {
o[s.nodeName] = [o[s.nodeName]];
}
o[s.nodeName].push (t);
}
else {
o[s.nodeName] = t;
}
}
data=o;
xml = new XML();
return data;
};
private function initXML(s:String):Void {
if (s == undefined) {
xml = new XML();
xml.ignoreWhite = true;
} else {
xml = new XML(s);
xml.ignoreWhite = true;
}
xml.onLoad = Delegate.create(this, xmlOnLoad);
}
private function xmlOnLoad(success:Boolean):Void {
if (success) {
trace("SUCCESS - xml loaded successfully.");
//xml.ignoreWhite = true;
this.dispatchEvent({type:"onXMLLoad", target:this});
buildObject(xml);
this.onXMLLoad();
} else {
trace("ERROR - xml could not load");
return;
}
}
//
// PUBLIC METHODS
//
public function loadXML(url:String):Void {
xml.load(url);
}
public function getBytesTotal():Number {
return xml.getBytesTotal();
}
public function getBytesLoaded():Number {
return xml.getBytesLoaded();
}
public function getPercentLoaded():Number {
return Math.floor((this.getBytesLoaded() / this.getBytesTotal()) * 100);
}
//
// EVENTS
//
public function onXMLLoad():Void {
// onLoad proxy for internal xml object
}
public function onXMLParse():Void {
// called when xml is finished parsing
}
function addEventListener() {
// Used by EventDispather mixin
}
function removeEventListener() {
// Used by EventDispather mixin
}
function dispatchEvent() {
// Used by EventDispather mixin
}
function dispatchQueue() {
// Used by EventDispather mixin
}
//
}
</code></pre>
http://stackoverflow.com/questions/1263205/search-zip-codes-fast-with-jquery0Search zip-codes fast with jQuerymofle2009-08-11T22:00:40Z2009-08-13T08:06:22Z
<p>I have a list of zip-codes that I need to search trough using jQuery.</p>
<p>I have the zip-codes in a CSV file like this:</p>
<pre>
2407;ELVERUM
2425;TRYSIL
2427;TRYSIL
2446;ENGERDAL
2448;ENGERDAL
</pre>
<p>The list is pretty big, over 4000 entries, zip-code and corresponding city.</p>
<p>What the fastest way to search trough the list in the browser?
JSON? If that's the case, how can I convert the list to JSON or another format if better?</p>
<pre>
{
"2407": "ELVERUM",
"2425": "TRYSIL"
}
</pre>
<p>Can someone show me the mest way to do this?</p>
<p><b>Update</b>
Would it be possible/faster to search the loaded CSV file with just Regex?<br /></p>
<p><b>Update2</b>
I'm looking for an exact match, and it's only going to search when it has 4 numbers.</p>
<p><b>Update3</b>
Here is my code:</p>
<pre><code>$('#postnummer').keyup(function(e) {
if($(this).val().length == 4) {
// Code to search the JSON for an exact match.
}
});
$.getJSON("data.json",function(data){
});
</code></pre>
<p>Can anyone show me using this code?</p>
http://stackoverflow.com/questions/1247947/gradient-trick-changed-in-iphone-3-0-sdk0Gradient trick changed in iPhone 3.0 SDK?mofle2009-08-08T04:10:09Z2009-08-08T05:15:02Z
<p>I'm using a trick to get gradient on my table cells.</p>
<p>After I upgraded to the iPhone 3.0 SDK i noticed that the gradient highlighting, when I select a cell, no longer works.</p>
<p>iPhone 2.2.1<br />
<img src="http://i32.tinypic.com/fkbldv.jpg" /></p>
<p>iPhone 3.0<br />
<img src="http://i32.tinypic.com/2i6dnyp.jpg" /></p>
<p><br />
Here's the gradient code:</p>
<pre><code> - (void)drawContentView:(CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
UIColor *textColor = [UIColor whiteColor];
// Apply gradient fill
CGFloat locations[2] = { 0.0, 0.75 };
CGFloat components[8] = {0.50, 0.50, 0.50, 1.0, // Start color
0.23, 0.23, 0.23, 1.0}; // End color
if (self.selected) {
components[0] -= 0.10;
components[1] -= 0.10;
components[2] -= 0.10;
components[4] -= 0.10;
components[5] -= 0.10;
components[6] -= 0.10;
}
CGColorSpaceRef myColorspace = CGColorSpaceCreateDeviceRGB();
CGGradientRef myGradient = CGGradientCreateWithColorComponents (myColorspace, components, locations, 2);
CGPoint start = CGPointMake(0, 0);
CGPoint end = CGPointMake(0, rect.size.height);
CGContextDrawLinearGradient(context, myGradient, start, end, 0);
[textColor set];
CGSize mainTextSize = [self.mainText sizeWithFont:(markedRead ? mainTextReadFont : mainTextFont) constrainedToSize:CGSizeMake(288, 200) lineBreakMode:UILineBreakModeWordWrap];
[self.mainText drawInRect:CGRectMake(6, 4, mainTextSize.width, mainTextSize.height) withFont:(markedRead ? mainTextReadFont : mainTextFont)];
[[UIColor lightGrayColor] set];
[self.subText drawAtPoint:CGPointMake(6, mainTextSize.height + 2) forWidth:288 withFont:subTextFont lineBreakMode:UILineBreakModeTailTruncation];
}
</code></pre>
<p>If it isn't obvious, the code in <code>if (self.selected) {</code> decides the hightlight color.
<br /><br />
<br />
<b>Anyone know what might cause this, possible a solution?</b></p>
http://stackoverflow.com/questions/1247947/gradient-trick-changed-in-iphone-3-0-sdk/1248034#12480343Answer by mofle for Gradient trick changed in iPhone 3.0 SDK?mofle2009-08-08T05:15:02Z2009-08-08T05:15:02Z<p>Actually solved this myself.</p>
<p><code> if (self.selected) {</code>
<br />
has changed to<br />
<code> if (self.highlighted) {</code>
<br />
in iPhone 3.0</p>
http://stackoverflow.com/questions/614064/hide-a-link-with-a-specific-class-and-attribute1Hide a link with a specific class and attributemofle2009-03-05T09:16:21Z2009-07-31T04:07:57Z
<p>I have this html.</p>
<pre><code><a class="link" href="www.website.com?id=233253">test1</a>
<a class="link" href="www.website.com?id=456456">test2</a>
</code></pre>
<p>How can I hide one of these links by using the href attribute, and just the last numbers (233253), to hide the link with this href attribute and the class "link"?</p>
<p>This is not a working code, just something i put together to explain it better.
getElementsByTagName('a').class('link').href="*233253"</p>
<p>Update:
Unfortunately it has to be pure javascript, not using a library, and it has to work on IE6.</p>
<p>Update2:
I don't have access to the html</p>
http://stackoverflow.com/questions/1130699/search-a-dropdown0Search a dropdownmofle2009-07-15T10:50:14Z2009-07-21T00:02:57Z
<p>I have this HTML dropdown:</p>
<pre><code><form>
<input type="text" id="realtxt" onkeyup="searchSel()">
<select id="select" name="basic-combo" size="1">
<option value="2821">Something </option>
<option value="2825">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Something </option>
<option value="2842">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Something </option>
<option value="2843">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_Something </option>
<option value="15999">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_Something </option>
</select>
</form>
</code></pre>
<p>I need to search trough it using javascript.
This is what I have now:</p>
<pre><code>function searchSel() {
var input=document.getElementById('realtxt').value.toLowerCase();
var output=document.getElementById('basic-combo').options;
for(var i=0;i<output.length;i++) {
var outputvalue = output[i].value;
var output = outputvalue.replace(/^(\s|&nbsp;)+|(\s|&nbsp;)+$/g,"");
if(output.indexOf(input)==0){
output[i].selected=true;
}
if(document.forms[0].realtxt.value==''){
output[0].selected=true;
}
}
}
</code></pre>
<p>The code doesn't work, and it's probably not the best.</p>
<p>Can anyone show me how I can search trough the dropdown items and when i hit enter find the one i want, and if i hit enter again give me the next result, using plain javascript?</p>
http://stackoverflow.com/questions/738168/filter-array-odd-even1Filter array - odd evenmofle2009-04-10T16:31:42Z2009-07-09T18:40:51Z
<p>How can a filter out the array entries with an odd or even index number?</p>
<pre><code>Array
(
[0] => string1
[1] => string2
[2] => string3
[3] => string4
)
</code></pre>
<p>Like, i want it remove the [0] and [2] entries from the array.
Or say i have 0,1,2,3,4,5,6,7,8,9 - i would need to remove 0,2,4,6,8.</p>
http://stackoverflow.com/questions/1090948/change-url-parameters-with-jquery3Change URL parameters with jQuery?mofle2009-07-07T08:05:02Z2009-07-07T09:47:20Z
<p>I have this URL:
site.fwx?position=1&archiveid=5000&columns=5&rows=20&sorting=ModifiedTimeAsc</p>
<p>what I need is to be able to change the 'rows' url param value to something i specify, lets say 10. And if the 'rows' doesn't exist, I need to add it to the end of the url and add the value i've already specified (10).</p>
<p>Anyone know the easiest way to do this with jQuery?</p>
http://stackoverflow.com/questions/1737848/change-title-of-mfmailcomposeviewcontroller/1785574#1785574Comment by mofle on Change title of MFMailComposeViewControllermofle2009-11-24T18:33:22Z2009-11-24T18:33:22ZThank you, just wanted to know how to something like that. After talking with some more people, I've decided to change my subject of the email to something that fits. Anyway, thanks :)http://stackoverflow.com/questions/1737848/change-title-of-mfmailcomposeviewcontroller/1737990#1737990Comment by mofle on Change title of MFMailComposeViewControllermofle2009-11-15T20:35:25Z2009-11-15T20:35:25ZOk, maybe your right, but I still like to know how to do it :) ?http://stackoverflow.com/questions/1737848/change-title-of-mfmailcomposeviewcontroller/1737990#1737990Comment by mofle on Change title of MFMailComposeViewControllermofle2009-11-15T16:49:24Z2009-11-15T16:49:24ZI know, but my question wasn't if it was allowed, my question was; is it possible? and how? ;-)http://stackoverflow.com/questions/1637870/best-approach-to-slideup-and-tabs-with-jquery/1682971#1682971Comment by mofle on Best approach to slideup and tabs with jQuerymofle2009-11-05T22:44:45Z2009-11-05T22:44:45ZFound out it happens if i first click a link and while animating click another one.http://stackoverflow.com/questions/1637870/best-approach-to-slideup-and-tabs-with-jquery/1652934#1652934Comment by mofle on Best approach to slideup and tabs with jQuerymofle2009-11-05T22:34:46Z2009-11-05T22:34:46ZYes, I've run the code now. It actually does work. I thought of something like this before, but I didn't think fadeIn would work, since it was inside the slideUp. Anyway, thanks :Dhttp://stackoverflow.com/questions/1637870/best-approach-to-slideup-and-tabs-with-jquery/1682971#1682971Comment by mofle on Best approach to slideup and tabs with jQuerymofle2009-11-05T22:28:28Z2009-11-05T22:28:28ZFound one bug: If you click the <a>'s in the mainmenu fast back and forth, 2 of the buttons will loose their function, and don't do anything when clicked. any ideas why?http://stackoverflow.com/questions/1657034/free-html-editor-for-windows/1657046#1657046Comment by mofle on Free HTML editor for Windowsmofle2009-11-04T16:53:05Z2009-11-04T16:53:05ZI don't get any javascript syntax highlighting in a html file, how do you do it?http://stackoverflow.com/questions/1657034/free-html-editor-for-windows/1657046#1657046Comment by mofle on Free HTML editor for Windowsmofle2009-11-01T14:37:37Z2009-11-01T14:37:37Zyes, I'm using the newest version.http://stackoverflow.com/questions/1657034/free-html-editor-for-windows/1657046#1657046Comment by mofle on Free HTML editor for Windowsmofle2009-11-01T12:50:25Z2009-11-01T12:50:25ZHow did you get that to work with Notepad++? I use Notepad++ every day, but I have never found out how to get more than one syntax highlighting at the time.http://stackoverflow.com/questions/1637870/best-approach-to-slideup-and-tabs-with-jquery/1652934#1652934Comment by mofle on Best approach to slideup and tabs with jQuerymofle2009-11-01T12:12:15Z2009-11-01T12:12:15ZI do have a large image on top, so I need the animated scrolling. And the slideUp only happens once, and since the fadeIn code is a callback of the slideUp, it only fades in the first time you click, that's wrong. The point is, the slideUp should only happen the first time the user click on of the buttons.http://stackoverflow.com/questions/1637870/best-approach-to-slideup-and-tabs-with-jqueryComment by mofle on Best approach to slideup and tabs with jQuerymofle2009-10-28T17:01:44Z2009-10-28T17:01:44ZPhil: without plugins, this tutorial uses jQuery UI tabs...http://stackoverflow.com/questions/1637870/best-approach-to-slideup-and-tabs-with-jqueryComment by mofle on Best approach to slideup and tabs with jQuerymofle2009-10-28T15:12:23Z2009-10-28T15:12:23Z2 reasons. I want to learn how to do it myself. And it's a bit overkill to use plugins for something as simple as this.http://stackoverflow.com/questions/1355480/preventing-a-uitabbar-from-applying-a-gradient-to-its-icon-images/1356560#1356560Comment by mofle on Preventing a UITabBar from applying a gradient to its icon imagesmofle2009-09-27T17:46:01Z2009-09-27T17:46:01ZCan anybody show me how I can implement this code in a new "Tab Bar application" project?http://stackoverflow.com/questions/1449666/create-a-jquery-special-event-for-content-changed/1449755#1449755Comment by mofle on Create a jQuery special event for content changedmofle2009-09-20T18:24:33Z2009-09-20T18:24:33ZThanks :) Good to know that I was close.http://stackoverflow.com/questions/1449666/create-a-jquery-special-event-for-content-changed/1449755#1449755Comment by mofle on Create a jQuery special event for content changedmofle2009-09-20T13:21:44Z2009-09-20T13:21:44ZMy script doesn't work. Would be great if you could help me make it work :) And by the way, thanks for the other approach.