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!
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!
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!
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...
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...
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...
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...
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
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.
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...
...movieNames[3] = "movieFour_mc";
movieNames[4] = "movieFive_mc";
// GENERATE RANDOM NUMBER BETWEEN 0 AND 4
randomNumber = Math.floor(Math.random()*(5-0))+0
// PLAY MOVIE FUNCTION BASED ON RANDOM NUMBER
playMovie = function(index){
_root[movieNames[index]].play();
}
// CALL PLAY MOVIE...
...= 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
Doing the same thing with no variables will be done like this:
(Stage.width/100)*75
Anyways, that should do it for you, but you will have...
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...
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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.