|
if i remember rightly FF users need to download a plugin.
|
|
|
|
|
hi, i've downloaded the windows media player 11 plugin but the error is still the same.
|
|
|
|
|
not sure then I'm afraid. You could try removing sections of you r code till you find the offending line. I presume it was working before?
|
|
|
|
|
its not working before.
|
|
|
|
|
Well the only thing I can suggest is using a different player. Personally I found that having to download another plugin puts off many users. So I started using flash (it's already on 95% of computers or something). Plus flash allows you to edit the player to fit in better with the site.
There are other options however. But you will need to research them. Silverlight for example is now on many machines.
If you do choose to go the flash route there are good tutorials on http://gotoAndLearn.com[^]
When developing a media player always publish for slightly older versions - if you don't want users installing plugins. I.e:
Current Flash version is 10. So publish to 8.
Current silverlight is 2 ( I think). SO publish to 1.
|
|
|
|
|
we are going to upgrade our system and we will use silverlight. but for the meantime we are using wmp. the video that we are playing is drm protected. i can't use flash.
|
|
|
|
|
You should use Flash or silverlight to show the video. Media player is old concept.
If you still want to use Media player, use embed tag than object. As most of the browsers doesnt support object tags. It is IE specific.
|
|
|
|
|
i already placed embed tag.
|
|
|
|
|
hello there:
Am using accordion with panes inside it, i want to alert the user to get confirmation form him that he is sure that he wants to change pane and then i should validate things and inform the user of the of the changes. But I could not know how to do that since there is no OnSelectedIndexChange Event. I searched a lot but i did not understand the proposed solution could any body tell how this could be solved. I would like to know also how to use it in JS.
|
|
|
|
|
not sure if its the same but for the select tag you can use selceted index:
var dropdown = document.getElementById("saved_style");
var index = dropdown.selectedIndex;
if (index == 0){
//do nothing
} else if (index == 1){
}
|
|
|
|
|
Well This Might Work on JS and i will check it now but how about server events. There is something written on js let me post the code and you can check it and please if you understood it tell me
function pageLoad(sender, args)
{
var accordEx1 = $find('MyAccordion_AccordionExtender');
accordEx1.add_selectedIndexChanged(onSelectedIndexChanged);
}
function onSelectedIndexChanged(sender, args)
{
var behavior = $find('MyAccordion_AccordionExtender');
var i = behavior.get_SelectedIndex();
var control_clientId='<%= GetControlClientID() %>';
if(control_clientId != "null")
{
var text= $get(control_clientId);
text.value="i am "+i;
}
}
sure some of the code is related to the writers project but in general is this related to a solution for what am searching for???
|
|
|
|
|
yeah I kind a get that but I'm a php guy I'm afraid..
|
|
|
|
|
Dont worry explain it if you knew it i need solution so badly
|
|
|
|
|
Hi
i devoloped a web site which have coding and css class.but it display proper in opera browser but
when i open with IE6 it display diffeent like alignment,text size etc.plz provide me soliution for this.
thanks
|
|
|
|
|
If you are using PHP you could always parse css as php, then check the users environment (browser) and select the appropriate css:
Parse CSS as PHP[^]
|
|
|
|
|
|
can anybody tel wht a content management system is???
|
|
|
|
|
Your question itself has the answer.
Put in further details on what type of contect management system are you looking for.
|
|
|
|
|
Yes it is a system for managing content. Literally. So it covers a whole wide range of software from client relationship management software to wikis to Virtual Learning environments.
Examples of CMS:
Wikipedia, Facebook, Drupal, Moodle, Joomla, Amazon.
|
|
|
|
|
Yes, google can. Have you tried it?
Bob
Ashfield Consultants Ltd
Proud to be a 2009 Code Project MVP
|
|
|
|
|
I've been looking off and on for a few days now, and have several solutions none of which work in IE. I would love to be able to make a single item's text italic. I can change its fore color, bg color. and i can make it do just about anything in firefox.
ddl.Items[1].Attributes.Add("Style", "font-style:italic;");
ddl.Items[1].Attributes.Add("class", "bold");
yes i'm sure that item 1 exists, I've tried every different way of turning italics on that i can find, but IE just wont render it. FireFox 3.5 will work with either of the above. any help would be appreciated. I havent done anything special in the HTML, just gave it an ID and set runat=server. And i manually add each item in the code behind.
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
|
|
|
|
|
I'm pretty sure that IE simply doesn't support italics within drop down list items.
You might consider using a <div> tag with your options that you could popup upon a click. Something like this[^]?
|
|
|
|
|
Mike Ellison wrote: I'm pretty sure that IE simply doesn't support italics within drop down list items.
thats what i was begining to think, i dont understand why they do that kinda crap. I'm looking at the page you sent, seems like a lot of work just for an italic item but i'll probably end up using it.
Thanks for the help.
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
|
|
|
|
|
it's a bit more work but if you havent used it, you'll be suprised what you can do with jquery. And just to confirm: IE doesn't let you use italics in dropdowns.
|
|
|
|
|
Hi,
i need to ask every hour a online database if some data has expired.
The database is a Ms Sql Server at the Provider Webspace.
How could this be solved?
Could i use a WebService? But how to start the trigger?
Must there be a Daemon written? But how to install this at the Provider?
Any Suggestion would be greate.
Thanks
:k:
|
|
|
|