I have a text box that the contents change on page reload, but what I was wondering is how to make it change after a specified amount of time. Is this possible without flash?
Is there an API available for grabbing Google Streetview images at a particular location (and direction)? I see that its possible to get and position the Flash control, but I'd prefer something that just gave me a JPEG (or some other bitmap format).
i have built jQuery drop-down menu which is having problems floating over the UI header. Flash and everything else is fine, menu has no problem floating over anything except UI headers, i have tried messing with z-index in css files but it seems that jQuery script is over writing all of my css. the JS files are minified so i can not edit them. I think a JS solution is necessary but i do not know how to solve this with JS.
URL: http://patel.mine.nu/live%20site/metanoia/
Okay, so I've figured out how to get my external ip using wget:
wget -q -O - http://whatismyip.com/automation/n09230945.asp
that outputs the ip to the command console. adding currentip.txt to the end will write it to a text file. But what I want to do is use
netsh interface ip set address name="Local Area Connection 2" source=static addr=[WHAT DO I PUT HERE]
Also, a way to make the command prompt not flash would be nice too :)
Does anybody know the VB or C# code to programmatically download a video from YouTube?
I have gone through all related questions on this site and the only code I have found (which uses the WebClient Class webclient.DownloadFileAsync) returns the text source of the video, but not the Flash video (.flv) file that needs to be downloaded?
Do you know any SDK or library which can help?
I have also downloaded the GoogleAPI (YouTube DLL) but have not found a way of doing it.
I would like to flash a success message on my page.
I am using the jQuery fadeOut method to fade and then remove the element. I can increase the duration to make it last longer, however this looks strange.
What I would like to happen is have the element be displayed for five seconds, then fade quickly, and finally be removed.
How can you animate this using jQuery?
Well i got this job offer and they expect alot i say. i know most of this but, i would like to know what type of pay i should expect. I dont well to sell short you know.
with Web Designer: Dreamweaver, HTML, JavaScript, Graphic Design/Manipulation, Templates, Layouts, Navigation, Flash/Multimedia Objects. Programmer: PHP, Web Application Development, MVC, Joomla, AJAX, JQuery, My SQL (SQL, Database).
I am developing a Flex application that will need to 'pull' information from an ERP system such as SAP or Peoplesoft via the clients web service.
My application will need to pass credentials & query to a Query_URL and receive the returned data. I saw a Flash Builder 4 presentation where the Adobe evangelist created a similar application using Twitter.
Insights or links to example code would be appreciated.
The argument to my method func() must implement the two unrelated interfaces IFoo and IBar. Is there a better way of doing this than declaring another interface only for this purpose that inherits from IFoo and IBar and using that interface as the argument type?
public interface IFooBar implements IFoo, IBar {
}
public function func(arg:IFooBar):void {
}
I'm developing for Flash Player 9.
I've just started to work with DoubleClick Studio. I've successfully created a Flash expanding ad with CS4 that is mostly scripted and uses the Document class option.
Now for some reason the back end of DoubleClick Studio thinks I've imported the Enabler component twice.
I've checked my files numerous of times but can't find the root cause.
Any help is much appreciated :)
I hear all this stuff about crazy ways to build iPhone apps using Ruby or C# under .NET or the like. Even stuff about developing apps on Windows using Java, or auto-generated apps using Flash CS5 or something.
Now, I've never really spent any time at all investigating these claims—I just brushed them off as clumsy or cumbersome or down-right claptrap—but I'm a proud Objective-C programmer who's perhaps a little worried as to whether there's any truth in all of this?
I have made a flashLike button with jquery via this code:
$(document).ready(function() {
$('#navigation li a').append('<span class="hover"></span>').each(function () {
var $span = $('span.hover', this).css('opacity', 0);
$(this).hover(function () {
$span.stop().fadeTo(500, 1);
}, function () {
$span.stop().fadeTo(500, 0);
});
});
});
But can we add sound to button in hover like flash buttons?
Thanks in advance
Relating to this question, http://stackoverflow.com/questions/117810/upload-files-directly-to-amazon-s3-from-asp-net-application, is there any way to do this and have a progress bar?
---- EDIT ----
Two days later and still no luck with a direct way. Found one thing that looks promising but not free: http://www.flajaxian.com/
Uses flash to upload directly to S3 with a progress bar.
Hi,
how get USB flash(key) manufacturer name with C#?
for example WD, Hama, Kingston...
Now i with: "disk["Manufacturer"]", get: "Standard disk driver"
string drive = "h";
ManagementObject disk = new ManagementObject("Win32_LogicalDisk.DeviceID=\"" + drive + ":\"");
disk.Get();
Console.WriteLine(disk["VolumeSerialNumber"].ToString());
Console.WriteLine(disk["VolumeName"].ToString());
Console.WriteLine(disk["Manufacturer"].ToString());
Hi,
Is there any good control or plug-in for uploading multiple photos with preview? As far as I understand it is impossible to preview photo on local computer using just JavaScript. So it has to use Flash or Java.
Thanks, also, I use ASP.NET.
I am trying to block all default methods except create and update in my users controller using declerative_authorization. But at the time I add filter_resource_access or filter_access_to into my usersController i always get "Couldn't find User without an ID". Anyone care to explain why this could be happening?
class UsersController :new
end
end
def show
@user = @current_user
end
def edit
@user = @current_user
end
def update
@user = @current_user # makes our views "cleaner" and more consistent
if @user.update_attributes(params[:user])
flash[:notice] = "Account updated!"
redirect_to account_url
else
render :action = :edit
end
end
end
Does anybody know if it's possible to call a webservice with an attachment from Flex Webservices?
I was looking around, and it seems that you can do that in Flash Player 10... any clue? Any documentation?
Thanks in advance!
I am looking for iPhone-like "picker" control which can be used in the web.
Without using any third party control or Flash\silverlight. Only HTML,Style sheet,javascript\jquery etc. are allowed.
I will appreciate if anyone helps me.
Thanks in advance....
i have some knowledge of css,jQuery,Grails,django,servlets and jsp still i can't see me designing good professional looking websites .what am lacking ? should i start learning jQUery ui ,should i get into adobe products like flash i am pretty confused. i am pretty bad in the userinterface part,
I'm not satisfied with the answers given by the SOAP vs REST questions notably here:
http://stackoverflow.com/questions/106546/performance-of-soap-vs-xml-rpc-or-rest
because it's just general philosophical answers and not pragmatic answers with some study cases.
Nobody can give precise cases of when soap would be more suitable than rest, especially as for performance point of view ?
For example let's say I have a flash client for a financiall simulation wizard calling legacy code. Should I use SOAP or REST ? Why ?
I have a control for uploading an image and above it is an image control.
When User clicks 'Upload' button, image turns to an animated image displaying 'WAIT' message, after the image is uploaded, the image source changes to that image.
I want to do this using simple AJAX, JAVASCRIPT (xmlHTTP objects) , ASP.NET, VB.NET.
Can anyone help me out???
Don't wanna use iframe or flash besides above four.
I've already tried System.IO.DriveType. But it only provides to me with the information of whether it's a removable drive such as floppy disc or a USB flash drive. And a USB external hard drive will be recognized as a local non-removable drive in this case.
Furthermore, since there are more than one kinds of external hard drive, for example, USB and IEEE 1394. It's really hard to figure it out from ports.
Any information will be appreciated.
Basically I have 2 questions regarding grails filters.
According to grails documentation you can do something like below in a filter
if (userId != paramsUserId) {
flash.message = "You can only modify yourself"
redirect(action: 'list')
return false
}
If the above condition is true then how will the return statement get executed ?
Can I have a redirect in my filter to a some action which also has a redirect ?
Hi guys, I want to be a web developer and mobile web developer...I know HTML
I've done some research and read that XML and XHTML are necessary. Are there any other languages that I need to know? Would knowledge of Flash help me in my quest?