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 SkipVought 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. DJCordel

    Decent STS 2003 USER manual

    Here is the download link where you can get the admin guide for SharePoint. http://www.microsoft.com/downloads/details.aspx?FamilyID=a637eff6-8224-4b19-a6a4-3e33fa13d230&DisplayLang=en Hope it helps!
  2. DJCordel

    Clip running wild. Help!

    Hello... Place your code on the timeline instead of on the movieclip itself, and then use something like this: YourMovie_mc.onEnterFrame = function(){ YourMovie_mc._y += 5; if (YourMovie_mc._y > Stage.height){ delete YourMovie_mc.onEnterFrame; } } Hope that helps!
  3. DJCordel

    Newbie - Creating Team Site Template?

    Hello... If you are running SharePoint v2, go to the top level administration and you will find a link that says "Save site as template". After saving, when you go to create a new site, you will see your templete in the list. Hope that helps!
  4. DJCordel

    Making a logo rotate.

    Well oldnewbie, what I do think is that you should be more focused on providing help to the person that asked the question, instead of taking shots at the other people that have provided posts. I think your second post would have been sufficiant to this thread, and been alot more befenifial to...
  5. DJCordel

    Making a logo rotate.

    Hello... Make it a movieclip, give it an instance name, and put this code on the same timeline that has said movieclip on it. yourInstanceName_mc.onEnterFrame = function(){ this._rotation++; } This will be tied directly to the frame rate of the movie, so if you need to speed it up or...
  6. DJCordel

    Announcement and Date

    As for the first part of the question, I believe you will need FrontPage 2003 to perform this modification. You may try some of the modifications under "Modify Web Part", but I dont think you will be able to do it from the browser. As for the second half, I have never done it myself, but I...
  7. DJCordel

    Home page customization

    Ok, there is a couple of ways to do this. If you want to heavily modify the home page, you will need FrontPage 2003 to do so. There are some things that can be done from right inside the browser, but nothing to advanced. As far as using a different page as the home page, to achieve this in the...
  8. DJCordel

    Installing WSS on Existing IIS 6.0 Web Site

    Hello... Here is a link to the SharePoint Administration Guide. You should be able to find the answer to your first question in there. http://www.microsoft.com/downloads/details.aspx?FamilyID=a637eff6-8224-4b19-a6a4-3e33fa13d230&DisplayLang=en
  9. DJCordel

    Saving a Word Document

    Are you using Office 2003? If you are not, this will not work. http://www.tek-tips.com/viewthread.cfm?SQID=872340&SPID=820&page=1 Hope that helps!
  10. DJCordel

    Office 2003 vs 2000

    Nope, your not missing anything. Office 2000 does not have this functionality. To use some of the more current or advanced features of SPS, you need to have Office 2003.
  11. DJCordel

    Adding a response/comments field to a SharePoint list

    Hello... Are you using SharePoint v2? Cause if you are, there is a custom list found in the create menu called "Issues". This will allow you to do exactly what it is that you are talking about. When the issue is created, you assign it to somebody, give it a category, and even link it to a...
  12. DJCordel

    play random movieClips???

    Hello... Here is a little something you can use to do that. You will just have to adapt it to whatever system you are using. // SETUP ARRAY TO HOLD MOVIE NAMES var movieNames = new Array(); movieNames[0] = "movieOne_mc"; movieNames[1] = "movieTwo_mc"; movieNames[2] = "movieThree_mc"...
  13. DJCordel

    Percentage in A.S.

    Hello... You can set up variables to hold the stage width info, and then reference whenever (or on the fly with no variables): xPercentile = Stage.width/100 yPercentile = Stage.height/100 So for example, to reference 75% of the stage, you can just use something like this. xPercentile*75...
  14. DJCordel

    WSS Sharepoint Login problems

    Hello... To use active directory, you would have to install SharePoint in Server Farm mode, and then hook up your databases afterwards. As I see from your post, you installed the WMSDE database, which would have defaulted you to the standard account mode. When you install in Server Farm mode...
  15. DJCordel

    action script cheat sheet

    Well, I would say the second option will fit you best then. By using the "+" menu, you can easily navigate to the "on" command found in GLOBAL FUNCTIONS >> MOVIE CLIP CONTROL, or you can use the keyborad shortcut "ESC+ON". Once you have done this, you will get the drop down in your actions panel...
  16. DJCordel

    action script cheat sheet

    The same functionality can be found in the behaviors panel. You can pull up this panel by selecting "SHIFT+F3". Most of the actions found in here are pretty basic, but may be exactly what your looking for. If you want to use more complex actions, another easy way would be to select the "+" plus...
  17. DJCordel

    What's your best install/config scenario for SPS2003?

    Hello... Well, all sounds good to me except having Office 2003 on the server itself. I dont run any of that software on my servers because for the most part, the client connecting to the server will be required to have Office 2003 installed to take advantage of the functionality. But I would...
  18. DJCordel

    can't access SharPoint from the internet. Intranet only

    Hello... You are going to have to open port 80 on your firewall (if it exists) so that outside web traffic can enter your network. Once you have done that, you should be able to access the server by its IP address providing it is on a static address. If it is not, and your internet connection...
  19. DJCordel

    Flash games for website

    If your looking for multi-user, you will probably need to look toward Flash Communication Server, or maybe even an XML socket server. You can probably find the XML option for cheap or even free, but working with the XML maybe pretty difficult. As with the Flash Comm Server, you can set up a...
  20. DJCordel

    Text Scrolling... need some help here

    Hello... Create two movieclips for your up and down arrows and place this code on them (needs to be movieclips, not buttons). Make sure you place them on the movieclips themselves and not the timeline. // FOR THE UP ARROW onClipEvent (enterFrame) { if (this.hitTest(_root._xmouse...

Part and Inventory Search

Back
Top