How do I come up with this, the sidebar and the top sliding bit:
Apple iPad Page
Scriptaulous or jQuery, etc.
I'd like this for one of my pages on my website to do the effects on load.
Thanks :)
Right now, I'm trying to separate out a set of constantly changing classes into their own dll and dynamically load them using MEF. My problem is that whenever I try and overwrite the dll while the app is running, it says it's in use.
Is there anyway to configure MEF to let me overwrite the dll and pick up the changes while the app is still running?
Instead of executable code all it does is create files that don't do anything, even if the files are made executable.
TARGETS = load list show add delete btree
all: $(TARGETS)
%: %.cpp
g++ $< -g -o $@ -MM -MF [email protected]
sed "s/$@\.o:/$@:/" [email protected] > [email protected]
-@rm [email protected]
DEPS=$(TARGETS:%=%.d)
-include $(DEPS)
Hello,
when I run my speech recognition c# app, the Microsoft Speech Recognition is started.
In the c# code I load one grammar.
But words like Copy, Paste, Cut, Start Menu, etc. are recognized besides they aren't in my grammar rules.
How can I do for the Microsoft Speech Recognition only recognize my grammar?
Thanks in advance
What I mean is, do animators work on an animation in say Flash (or some other kind
of key frame animation program) and then export it to the iphone somehow?
For example, say I am an animator and I want to create a person waving for an iphone
game. What type of external program would I use and then what libraries on the iphone
sdk would I use to load them in?
I am grabbing data through a jQuery Ajax call, and displaying it on the page. I need to wait for both the DOM to load and for the Ajax call to complete before I can use the data to display it on the page. Can an Ajax call ever complete before the DOM has loaded? I'm just trying to determine where I need to put my method that will manipulate the DOM and use the data I'm getting back.
Hi, I am using this code to refresh the data inside of the div:
<script>
$(function() {
$("#refresh").click(function() {
$("#new").load("/new.php")
})
})
</script>
Except it loads the who page inside of the div, instead of just the information that is inside of the div.
How do I make it refresh only the data that is inside of the div? Is there a way of doing it other than putting the information for that div in a seperate page?
Is there any way to load window inside the background worker thread without using showdialog()? the background worker only terminate only after getting some input from the window. Here the issue is window shown but the button and other controls are not rendered even we don't have control over any of the window.
I am trying to grab the value of my href in jquery how is it done'?
This is what I have done:
$('#playbackbutton').click(
function() {
$("#playbackdiv").load("$('a:href').val();", [], function(){
$("#playbackdiv").dialog("open");
}
);
return false;
}
I need to get the value of the href in my a tag.
here is the html:
<a href="/record/123.wav">play</a>
The Apache Module mod_status allows you to view the current average requests per second being served. It measures this average over a fairly long period of time however (I don't know exactly how long). Is it possible to modify this length to something shorter so that I can get a more accurate idea of the current load on the server?
I am new to iphone development.i want to check whether the image is loaded in the image view and if the image view is nil then load the image.i want to implement this in cell for row at index path so that i can increase the scrolling performance of the table , How can i do that ? please help me out.Thanks.
If I have a Facebook app, and my users agree to allow my app to access their information, photos, friends, etc, is it ethical to grab their information when they log in, and then saving it in memory so that the next time he goes to my app, it can load faster?
If so, what about when the user logged off? Is the right thing to do to is to delete all the cached information and photos that the user provided?
Has Facebook got any way to detect that we're doing this (saving their information, etc)?
Hi all,
I am doing some improvements to an application in vs2008 in c++.
When i try to edit resources (for example add an entry in the string table), the vs2008 editor changes the rc file language from LANG_ENGLISH to LANG_NEUTRAL and a non english text is replaced with question marks.
If i edit the rc file externally (in notepad), and then load it to the vs2008 it works fine.
can anybody help me solve this?
thanks
Shimon
I am using reccomended app. structure ( http://framework.zend.com/manual/1.10/en/project-structure.filesystem.html ) in Zend Framework but I cant get each module config working.
It just doesn't load modules/mymodule/configs/application.ini file into configuration.
I have two frames I need to a load the second frame based on the button click event which is there in the first frame, and need to hide the first frame once the second frame is loaded.
Hi,
I am looking for a free/cheap SQLite editor that can handle BLOB type for Mac OS X. Basically, I just need to create a database that contains images, then load it to an iPhone app bundle. No need for fancy queries. Could someone recommend the best editor available out there for this purpose?
Thanks a lot
Hello, I am developing a new Java Desktop app. Something like a media player. I want to load most of the resources in the background when the computer starts up. But the users can turn this option off form within the app or using some other utility. So, what I want to do is if a ban instance of the app is already running and the user starts the app again then I can communicate with the already running instance so that it can launch a new window?
I have this in my schema:
create_table "robots_matches", :force => true do |t|
t.integer "robot_id"
t.integer "match_id"
and I think I want to be able to load a robot and match from within my robots_match model so I can do something like this:
robots_match.find(:id).get_robot().Name
My attempt in the robots_matches model was this:
def get_robot
Robot.find(this.id)
end
I am super new to rails, so feel free to correct my architectural decision here.
http://stackoverflow.com/questions/840213/how-do-i-load-a-mov-file-into-flash-9
I checked this post out and it looks like the normal way for adding a flv, but it tried it on some sample .movs from apple and doesnt seem to work.
Do movs have to be encoded specially for playback in flash?
I'm using a big Background image on hover which is set in css background {....}
It takes time to load first time upon mouse over so I want to preload this background image.
What is the best option to do this?
Hi,
I want to load a single XML file of 1.2Mb in android through assets folder as raw file. I heard that there is a limitation in android of 1Mb for a single xml file. How can i get rid of it? Is there any option to overcome this issue? please provide me some help UrGently!!!!!!!!!!!!.
Thanks in advance.
Praween
I am fetching a db zip on initial startup of an AIR app (after 1st install), which I then unpack via FZip.
After this operation I immediately need to load data from the generated sqlite db, which fails since I seem not able to determine when the zip is completely unpacked and/or the sqlite has been created.
Any suggestions? Thx!
Hello,
I'm trying to get the dojo tree widget working. It works with a small json object, but when i try it with a large json object it goes wrong. There is no error, just the root node. Is this a normal behavior? Is there a maximum of objects you can load? My json object contains around 800 entries.
Thanks,
Ewout