Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dmears1

    Unable to play streaming video

    ISSUE RESOLVED: I was including the filename in the netconnection.connect method's URI
  2. dmears1

    Unable to play streaming video

    I am trying to stream video from a Flash Media Server using AS3. I am getting an error that I cannot figure out. In my NetStatusEventHandler I am getting event code "NetStream.Play.Failed". The error is: "Invalid tincan object name (stream ID: 1)" This means absolutely nothing to me and I have...
  3. dmears1

    SSL and Load Balancing

    I have a web farm which contains 3 web servers. I have a web site in IIS and have assigned it to a dedicated IP. I have installed a SSL Certificate for this site. However, the only way to get https to work is to set the IP address in the Multiple SSL Identites section to "All Unassigned". Once I...
  4. dmears1

    Enabling .NET

    Launch IIS Manager, expand the Web Sites folder and then click on the Web Service Extensions. Verify that the ASP.Net v2.0 (or whichever version of .net you are using) extension is allowed and not prohibited.
  5. dmears1

    Creating Websites in IIS6.0

    Right click on the Web Sites folder above the Default Web Site and choose "new Site". This link may help: http://content.techrepublic.com.com/2346-10878_11-6665-4.html
  6. dmears1

    ColumnName = Keyword??

    SELECT [Function], count(*) FROM Space GROUP BY [Function];
  7. dmears1

    SSL Help?

    Here are a couple of options: Purchase a SSL for www.site.com and then update any links to the pages/folders you would like secured with https://www.site.com/secureme.html Create a subdomain (http://securearea.site.com) and then purchase a SSL for the subdomain. You could then put your secure...
  8. dmears1

    Disable rows in Gridview

    Here's the solution I came up with: Private Sub grdContent_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles grdContent.RowDataBound If grdContent.EditIndex <> -1 And e.Row.RowType = DataControlRowType.DataRow And e.Row.RowState...
  9. dmears1

    Disable rows in Gridview

    Thank you both for the help. Isadore: I have spent half a day googling try to find an answer but can't seem to find exactly what I need. GoogleGroups is something I hadn't look through. Thanks for the link. jbenson001: I have tried doing this on RowDataBound and actually came close to what I am...
  10. dmears1

    Disable rows in Gridview

    I would like disable rows in a gridview when a row is in edit mode. Sample code follows: <asp:GridView ID="grdContent" runat="server" AllowPaging="true" AllowSorting="false" AutoGenerateColumns="false" Width="100%" CssClass="GridLines" GridLines="None" DataSourceID="objDSContent"...
  11. dmears1

    Populate List box

    You might take a look at the AJAX control toolkit's AutoComplete: http://www.asp.net/AJAX/Control-Toolkit/Live/AutoComplete/AutoComplete.aspx
  12. dmears1

    LoadMovie Causing Projector file to Lag

    Thanks for all the help. I will have to look for a different solution.
  13. dmears1

    LoadMovie Causing Projector file to Lag

    I am guessing so. The external SWFs are ads which are created by someone else. I only receive the SWF with no other info relating to them.
  14. dmears1

    LoadMovie Causing Projector file to Lag

    It shows I'm in frame 1 of each of the movieclips. For example: MovieClip: _level0.ad0 Frame #: 1 MovieClip: _level0.ad1 Frame #: 1 MovieClip: _level0.ad2 Frame #: 1 I thought that the root timeline for the movieclip would be the same as the root of the external swf.
  15. dmears1

    LoadMovie Causing Projector file to Lag

    Thanks for all the help Kenneth. I've tried gotoAndPlay(1), nextFrame(), play(), all out of desperation. None are working. Here's an example of how I'm using them: function firstImage() { _root["ad"+p].gotoAndPlay(1); _root["ad"+p]._alpha = 100; _root["ad"+(p+(arrTotal-1))]._alpha = 0...
  16. dmears1

    LoadMovie Causing Projector file to Lag

    The issue I'm running into is that the external swfs I'm loading in have several frames w/stop commands in their last frames. Once I've loaded them into the empty movieclips, they play once and then stop. When the parent movie loops through the movieclips (using the the firstImage() &...
  17. dmears1

    LoadMovie Causing Projector file to Lag

    Follow Up Question: Is there a way to control the main timeline on an external swf if I have no way of knowing the any instance names in the external swf? The updated code is as follows: delay = 15000; function loadXMLAds(loaded) { if (loaded) { xmlNode = this.firstChild; image = []...
  18. dmears1

    Format Tooltip Text

    Could you post your code for the Tooltip Control?
  19. dmears1

    LoadMovie Causing Projector file to Lag

    Thanks for the tip Kenneth. I'll give it a try and post back with an update.
  20. dmears1

    LoadMovie Causing Projector file to Lag

    I have a flash projector file which is loading in 2 xml files: one containing text only, the other containing URL to both SWF & image files. This projector runs pretty much 24/7. We are running into issues where after 2-3 days the projector files starts lagging when loading in the images and/or...

Part and Inventory Search

Back
Top