-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I'm currently learning Flash (CS4, AS3) and am creating a game. I have currently 1 flv file with 4 scenes, I then move from left to right and then to scene 2 and go from left to right. This is the game where items pop up that need to be clicked on and you get points.
Is there any way I can…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a div, set to 800px wide, that will automatically scroll horizontally if the browser window is resized to < 800px. The behavior I would like, is to have the browser window scroll instead of the div. It would seem simple but for some reason I'm getting hung up on it. Any ideas?
The page…
>>> More
-
as seen on ASP alliance
- Search for 'ASP alliance'
A few weeks ago, I was working on an ASP.NET web application and needed a simple horizontal menu with a submenu. I decided to use ASP.NET's Menu control: Just drag and drop the control on to the page. Simple enough, but the control did not provide access key and target window support on menu items…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Thank you for your help.
My code looks like:
var CatItems = "";
for(var x=0; x < data.PRODUCTS.length; x++) {
if (x % 3 === 0) CatItems += '<li class="jcarousel-item jcarousel-item-horizontal jcarousel-item-'+[x]+' jcarousel-item-'+[x]+'-horizontal jcarousel-item-placeholder jcarousel-item-placeholder-horizontal">';
CatItems…
>>> More
-
as seen on Super User
- Search for 'Super User'
When I played my old computer before I got this one, I was able to use the horizontal span. (Nvidia Geforce 6200 I believe) However, with this new computer, using vista and the 8800, the horizontal span option is gone, and all I have is dual veiw, which doesn't suit my needs.
I play World of Warcraft…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm working with a project that contains about 30 unique modules. It wasn't designed too well, so it's common that I create circular imports when adding some new functionality to the project.
Of course, when I add the circular import, I'm unaware of it. Sometimes it's pretty obvious I've made a circular…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a legacy Java (not my native language) app that I'm trying to build in Eclipse Galileo.
As it's not my own, I can't speak to the quality of the design, but I am coming across a number of instances where I'll have something like this:
In a project called, say, "lib_a", I'll have a file containing…
>>> More
-
as seen on Dot net Slackers
- Search for 'Dot net Slackers'
how to make a WPF circular progress indicator that resembles Silverlights loading animation read moreBy Michael DetrasDid you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Unlike Java, Perl uses reference count for garbage collection. I have tried searching some previous questions which speak about C++ RAII and smart pointers and Java GC but have not understood how Perl deals with the circular referencing problem.
Can anyone explain how Perl's garbage collector deals…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I have a domain where an Organization has People.
Organization Entity
public class Organization {
private readonly List<Person> _people = new List<Person>();
public Person CreatePerson(string name) {
var person = new Person(organization, name);
_people.Add(person);
…
>>> More