HELPE ME OUT I REALLY NEED SOME HELP ON MOTION!!!

Hi I'm a high school student and I'm having a problem on motion. I need help on page 350 on step #6. Well my problem is that the lesson book tells me to select the sweep behavior and duplicate it, But there is no disclosure triangle to see the behaviors from. but the weird thing is that the the behavior is still working in the project when I play it, I just cant select it to duplicate it. so can you please help me. =)

Is it one of these?
http://www.google.com/search?client=opera&rls=en&q=motion3book&sourceid=opera&ie=utf-8&oe=utf-8
-DH

Similar Messages

  • Anybody who can help me? I really need your help

    I've tried to execute J2ee tutorial examples.
    I don't know why this sample didn't execute...I've already finished to set up J2EE and enviornment variables.
    I was trying this part from j2ee tutorial titled as "Packing Web modules".
    Whenever I type "asant create-war" to make web modules in command window. I always got error.
    Packaging Web Modules(From J2ee tutorial for your information)
    A web module must be packaged into a WAR in certain deployment scenarios and whenever you want to distribute the web module. You package a web module into a WAR using the Application Server deploytool utility, by executing the jar command in a directory laid out in the format of a web module, or by using the asant utility. This tutorial allows you to use use either the first or the third approach. To build the hello1 application, follow these steps:
    In a terminal window, go to <INSTALL>/j2eetutorial14/examples/web/hello1/.
    Run asant build. This target will spawn any necessary compilations and will copy files to the <INSTALL>/j2eetutorial14/examples/web/hello1/build/ directory.
    To package the application into a WAR named hello1.war using asant, use the following command:
    asant create-war
    This command uses web.xml and sun-web.xml files in the <INSTALL>/j2eetutorial14/examples/web/hello1 directory.
    To learn how to configure this web application, package the application using deploytool by following these steps:
    Start deploytool.
    Create a web application called hello1 by running the New Web Component wizard. Select FileNewWeb Component.
    In the New Web Component wizard:
    Select the Create New Stand-Alone WAR Module radio button.
    In the WAR File field, enter <INSTALL>/j2eetutorial14/examples/web/hello1/hello1.war. The WAR Display Name field will show hello1.
    In the Context Root field, enter /hello1.
    Click Edit Contents to add the content files.
    In the Edit Contents dialog box, navigate to <INSTALL>/j2eetutorial14/examples/web/hello1/build/. Select duke.waving.gif, index.jsp, and response.jsp and click Add. Click OK.
    Click Next.
    Select the No Component radio button and click Next.
    Click Finish.
    Select FileSave.
    A sample hello1.war is provided in <INSTALL>/j2eetutorial14/examples/web/provided-wars/. To open this WAR with deploytool, follow these steps:
    Select FileOpen.
    Navigate to the provided-wars directory.
    Select the WAR.
    Click Open Module.
    I guess this step is for checking my system about setup information. I not sure how to change it.
    the result from execution of ansnt command in dos
    D:\J2ee\j2ee-1_4-doc-tutorial_7\j2eetutorial14\examples\web\hello1>asant create- war Buildfile: build.xml
    j2ee-home-test:
    BUILD FAILED D:\J2ee\j2ee-1_4-doc-tutorial_7\j2eetutorial14\examples\common\targets.xml:10: T he j2ee.home property is not properly set in <INSTALL>/j2eetutorial14/examples/c ommon/build.properties.
    Set the j2ee.home property to the location of your Application Server installati on.
    On Windows, you must escape any backslashes in the j2ee.home property with anoth er backslash or use forward slashes as a path separator. So, if your Application Server installation is C:\Sun\AppServer, you must set j2ee.home as follows:
    j2ee.home = C:\\Sun\\AppServer
    or
    j2ee.home=C:/Sun/AppServer
    j2ee.home is currently set to:
    Total time: 0 seconds
    D:\J2ee\j2ee-1_4-doc-tutorial_7\j2eetutorial14\examples\web\hello1>
    I've installed J2ee sdk in C:\Sun\AppServer
    PATH: %J2EE_HOME%\bin;%JAVA_HOME%\bin;
    CLASSPATH: %J2EE_HOME%\lib\j2ee.jar;C:\Java\jre1.6.0_05\lib\ext\QTJava.zip;C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\lib\ojdbc14.jar
    J2EE_HOME: C:\Sun\AppServer
    JAVA_HOME: C:\Sun\AppServer\jdk
    I've installed J2ee with administration 4848, HTTP: 8089 HTTP: 8090
    I guess this could refer the target.xml and build.properties. So, I've tried after changing some value, which is fit for my setup.
    but, still doesn't work.
    targets.xml
    <path id="classpath">
    <fileset dir="${j2ee.home}/lib">
    <include name="j2ee.jar"/>
    </fileset>
    </path>
    <target name="j2ee-home-test" >
    <!-- Test if j2ee.home is set properly by looking for j2ee.jar -->
    <available file="${j2ee.home}/lib/j2ee.jar" type="file" property="j2ee.jar.present" />
    <fail unless="j2ee.jar.present">
    The j2ee.home property is not properly set in <INSTALL>/j2eetutorial14/examples/common/build.properties.
    Set the j2ee.home property to the location of your Application Server installation.
    On Windows, you must escape any backslashes in the j2ee.home property with another backslash or use forward slashes as a path separator. So, if your Application Server installation is C:\Sun\AppServer, you must set j2ee.home as follows:
    j2ee.home = C:\\Sun\\AppServer
    or
    j2ee.home=C:/Sun/AppServer
    j2ee.home is currently set to: ${j2ee.home}
    </fail>
    </target>
    <target name="clean" >
    <delete dir="${build}" />
    <delete dir="${dist}" />
    <delete dir="${assemble}" />
    <delete file="${ear.name}" />
    <delete file="${war.name}" />
    <delete file="${war.file}" />
    <delete file="${client.jar.name}" />
    </target>
    <path id="db.classpath">
    <fileset dir="${db.root}/lib">
    <include name="*.jar"/>
    </fileset>
    </path>
    <target name="create-db_common"
    depends="init,start-db,delete-db"
    description="Create database tables and populate database." >
    <sql driver="${db.driver}"
    url="${db.url}"
    userid="${db.user}"
    password="${db.password}"
    classpathref="db.classpath"
    delimiter="${db.delimiter}"
    autocommit="false"
    onerror="abort" >
    <transaction src="${sql.script}"/>
    </sql>
    </target>
    <target name="delete-db"
    description="Deletes the database tables." >
    <sql driver="${db.driver}"
    url="${db.url}"
    userid="${db.user}"
    password="${db.password}"
    classpathref="db.classpath"
    delimiter="${db.delimiter}"
    autocommit="false"
    onerror="continue" >
    <transaction src="${delete.sql.script}"/>
    </sql>
    </target>
    <target name="ping-db"
    description="Checks to see if Derby is running." >
    <java classname="org.apache.derby.drda.NetworkServerControl"
    fork="yes"
    resultproperty="db.ping.result">
    <jvmarg line="${db.jvmargs}" />
    <arg line="ping" />
    <classpath refid="db.classpath" />
    </java>
    <condition property="db.running">
    <equals arg1="${db.ping.result}" arg2="0" />
    </condition>
    </target>
    <target name="start-db"
    unless="db.running"
    description="Starts the Derby databse server."
    depends="ping-db">
    <sun-appserv-admin
    explicitcommand="start-database" />
    </target>
    <target name="stop-db"
    description="Stops the Derby database server."
    depends="ping-db"
    if="db.running">
    <sun-appserv-admin
    explicitcommand="stop-database" />
    </target>
    <target name="admin_command_common">
    <echo message="Doing admin task ${admin.command}"/>
    <sun-appserv-admin
    command="${admin.command}"
    user="${admin.user}"
    passwordfile="${admin.password.file}"
    host="${admin.host}"
    port="${admin.port}"
    asinstalldir="${j2ee.home}" />
    </target>
    <target name="create-jdbc-resource_common">
    <antcall target="admin_command_common">
    <param name="admin.command"
    value="create-jdbc-resource
    --connectionpoolid ${conpool.name} ${jdbc.resource.name}" />
    </antcall>
    </target>
    <target name="delete-jdbc-resource_common">
    <antcall target="admin_command_common">
    <param name="admin.command"
    value="delete-jdbc-resource ${jdbc.resource.name}" />
    </antcall>
    </target>
    <target name="deploy-war">
    <antcall target="admin_command_common">
    <param name="admin.command"
    value="deploy ${war.file}" />
    </antcall>
    </target>
    <target name="undeploy-war">
    <antcall target="admin_command_common">
    <param name="admin.command"
    value="undeploy ${example}" />
    </antcall>
    </target>
    <property environment="env" />
    <target name="listprops"
    description="Displays values of some of the properties of this build file">
    <property file="../../common/admin-password.txt" />
    <echo message="Path information" />
    <echo message="j2ee.home = ${j2ee.home}" />
    <echo message="j2ee.tutorial.home = ${j2ee.tutorial.home}" />
    <echo message="env.Path = ${env.Path}" />
    <echo message="env.PATH = ${env.PATH}" />
    <echo message="" />
    <echo message="Classpath information" />
    <echo message="classpath = ${env.CLASSPATH}" />
    <echo message="" />
    <echo message="Admin information" />
    <echo message="admin.password = ${AS_ADMIN_PASSWORD}" />
    <echo message="admin.password.file = ${admin.password.file}" />
    <echo message="admin.host = ${admin.host}" />
    <echo message="admin.user = ${admin.user}" />
    <echo message="admin.port = ${admin.port}" />
    <echo message="https.port = ${https.port}" />
    <echo message="" />
    <echo message="Domain information" />
    <echo message="domain.resources = ${domain.resources}" />
    <echo message="domain.resources.port = ${domain.resources.port}" />
    <echo message="" />
    <echo message="Database information" />
    <echo message="db.root = ${db.root}" />
    <echo message="db.driver = ${db.driver}" />
    <echo message="db.host = ${db.host}" />
    <echo message="db.port = ${db.port}" />
    <echo message="db.sid = ${db.sid}" />
    <echo message="db.url = ${db.url}" />
    <echo message="db.user = ${db.user}" />
    <echo message="db.pwd = ${db.pwd}" />
    <echo message="url.prop = ${url.prop}" />
    <echo message="ds.class = ${ds.class}" />
    <echo message="db.jvmargs = ${db.jvmargs}" />
    </target>
    build.properties ����
    j2ee.home=
    j2ee.tutorial.home=
    asinstall.dir=${j2ee.home}
    admin.password.file=${j2ee.tutorial.home}/examples/common/admin-password.txt
    admin.host=localhost
    admin.user=admin
    admin.port=4848
    https.port=8181
    domain.resources="domain.resources"
    domain.resources.port=8080
    # Derby configuration settings
    db.delimiter=;
    db.root=${j2ee.home}/derby
    db.driver=org.apache.derby.jdbc.ClientDriver
    db.datasource=org.apache.derby.jdbc.ClientDataSource
    db.host=localhost
    db.port=1527
    db.sid=sun-appserv-samples
    db.url=jdbc:derby://${db.host}:${db.port}/${db.sid};create=true;
    db.user=APP
    db.pwd=APP
    db.jvmargs=-ms16m -mx32m
    Is there anyone who can tell me how to change it? I really need your help....
    Thank you in advance.

    ok,
    First of all make sure your tutorial folder is installed from the root:
    C:\javaeetutorial5
    or
    D:\javaeetutorial5
    it makes things so simple.
    Secondly:
    set your jee tutorial home
    JAVAEE.TUTORIAL.HOME =
    C:/javaeetutorial5
    Thirdly: check in:
    C:\javaeetutorial5\examples\bp-project
    make a copy of the build.properties.sample save it as build.propropties, as a property file,
    edit the properties file as in:
    build.properties
    As follows:
    # uncomment the property javaee.home, and add the path
    # to your GlassFish Java EE 5 SDK installation
    javaee.home=c:/Sun/SDK
    javaee.tutorial.home=c:/javaeetutorial5
    # Uncomment the property j2ee.server.username,
    # and replace the administrator username of the app-server
    javaee.server.username=admin
    # Uncomment the property j2ee.server.passwordfile,
    # and replace the following line to point to a file that
    # contains the admin password for your app-server.
    # The file should contain the password in the following line:
    AS_ADMIN_PASSWORD=admin1234and so fourth. Some of the settings as the application server name is all done for you
    and then test it again.
    Take care of editing the property file. It can give you headache.
    Note also that this is for application server 9.1 - JEE5.
    eve

  • Ok I REALLY need some help

    Please post anyhting you can to help me out, I've had this ipod for so long now... and recently itunes has just been being incredibly stupid for me. So here is how it all began, few days ago i connect my ipod... and it auto syncs it, even when that function was turned off... replacing all of my music with the ones in my library ( completely different) k few days later i turn it on again, i got a new HD recently since my old one busted and i redownload itunes v8 and i cant put songs on my ipod. I try and put one on and it automatically puts it in my normal Itunes library, then in the shuffle playlist all you see is this 1 song being duplicated 111 times.... so now this Itunes has deleted over 30 GB of info off my ipod... all movies and songs.. so its completely clean which really makes me angry. I can't fix this.. i dont know what this is.. please help me >< i have already tried reinstalling it, unless there is some sort of function in options to actually get my god dan songs on without them duplicated 100 times and get this ipod working agian please I need help... i've spent all my day trying to fix this.. thanks for your feedback

    I know this is a IPod forum
    Actually it's not. It's a forum for feedback about Apple's discussions forums, as the title implies. I suggest you post your message again here:
    http://discussions.apple.com/forum.jspa?forumID=800

  • I am the biggest "Newb" on this site,  and I really need some help please..

    Ok, the short of it.... I started training on Database programming about 2 weeks ago. I still don't really know a thing, or even understand the concepts. Now, my boss wants me to fix a bug in Oracle, and I haven't a clue. The ONLY help I've gotten was a link to this forum, and a speech about how I need to help myself. I told him I have the same chance of fixing anything, as monkeys typing hamlet. Anyone up for a challenge?
    When I go to Application System, then Application Entry and enter the password a dialog box appears.... "FRM-40039: Cannot attatch library Empower while opening from APPUSRAPP."
    That's what I have to fix. I have no clue. I don't even really know how to click around in this program. Please help, someone.
    UPDATE: I've been told that everyone's pretty much going to be a jerk to me for asking this, and I'm currently searching old threads and can't find a way to delete this one I posted. So, you could just ignore the post, or jump in and be the internet tough-guy and tell me what I already know.... I'm a newb.
    Edited by: user11033020 on Apr 14, 2009 11:41 AM

    As this appears to be a Forms error (the error begins with FRM) you might get a better response by posting this in the Forms forum:
    Forms
    The Community Feedback forum isn't meant for product-related questions (as it says in the title).
    Still, you should consider searching Metalink as well. If you've paid for support, you have every right to use it.

  • Problems with the address book server! Really need some help here!

    Hello everyone!
    for about some time now, we're having some troubbles with the address book server located on our Mac Pro Server running SL Server. The connected clients somehow show multiple entries of groups, contacts and everything else address book can show. Sometimes you see one group or contact about 20-30 times or even more.
    How can the addressbook server on SL Server be configured that these faults won't show up again. With this present, using address book server is useless. As far as my knowledge goes, I've tried everything I can. I deleted the address book account set up on each client, readded it, but no help. I stopped the address book server on the Mac pro, but no help either.
    For your further information: we're connecting 14 clients. Moste of the rum Lion, three run ML and several iDevices connect via WiFi.
    Please help me, as this really is frustrating!
    Looking forward for your help.
    Regards,
    Moritz

    james211 wrote:
    I have been trying to convince my landlord for months to get Fios in the building.   
    If your landlord doesn't want FIOS in the building, then it's not going to happen.
    Vote with your wallet and move.

  • Storage:  I got a 32gig iPad for Christmas - I really need some help.

    Storage:  I got a 32gig iPad for Christmas, and literally I am already down to 2 gigs of storage left.  I believe my iPad is a 4th generation, and currently on my device I only have a 10 apps, 6 photos, 3 personal family videos 10mins in length each, and about 10 disney channel tv shows for my kids.  I also have my work email, but I set it to only go back two weeks. 
    I am not sure what I am doing to eat through this much space so quickly.  I realized after downloading 4 tv shows for my daughter I was getting HD, so I did change the other 6 to SD which I know takes less space.  However it hasn't really helped.  Recently I started using the camera to take a few short movies of my kids 3 videos about ten mins in length each and that ate through space in no time.
    My iPad is 32gigs but really only started with 28 gigs capacity. 
    Is there something I can do?  Am I doing something wrong?  Sorry I am not the most technically inclined, but a co-worker of mine has an older iPad with thousands of pics, hundreds of songs, plenty of movies, at least 20 apps, etc and her 32 gig iPad still has 12 gigs left.  She has WAY more stuff on hers than mine.
    I really appreciate any help someone can provide.  Thank You.  

    Ok. Do you know if I delete a show from iTunes on my device can I still redownload it for free?  Seems that 13.7 gigs taken up are those disney channel shows.  If I delete them I can always just redownload them no? 
    I appreciate your help.  Thanks.

  • Pulling out my Hair, need some help from experts out there

    Hi - I have been struggling with an issue for a week now and I was wondering if one of you can help me to solve my issue. I have done numerous searches on this topic which got me somewhat in the right direction but I'm still not getting the results I want. The end objective is simple, a non-stuttering video on YouTube. Sounds simple right?
    here is what I did:
    I have recorded some aerial footage with a GoPro 3+, added some effects in After effects, brought the results over in Premiere pro for some minor editing and then used Media encoder to get it to a format that youtube likes. My detailed steps are as follows:
    -Take GoPro footage (59.94 fps, 1920 x 1080 in H.264 codec) and transcode it through GoPro studio using the CineForm codec so it plays nice with AE (I keep my 59.94 fps and same dimensions (1920 x 180).
    -Load transcoded footage in AE (I checked if my composition settings are the same as the imported transcoded footage)
    -Apply effects (3d camera tracking, add some 3d text, some lights, environment layer) and render the clip out as a quicktime lossless file (PNG) – result is 3 clips from AE that I now want to bring into Premiere Pro for some editing
    -Import PNG file in Premiere Pro (I drag the clip to new sequence item so the sequence matches the clip I import in Premiere pro)
    -I make some minor edits in Premiere Pro (some transitions between clips, nothing fancy)
    -I then render out the footage using media encoder (or directly from Premiere, tried both) with the following settings:
    Format: h.264
    Preset: custom
    Export video and audio
    TV standard: NSTC
    Frame width: 1920
    Frame height: 1080
    FPs: 29.97 or 59.94 (results/problem is the same with both fps settings)
    Field order: progressive (greyed out – can’t change it)
    Pixel aspect ratio: 16:9 – widescreen
    Profile: main
    Level: 4.2 or 5.1 (same result for both settings)
    Render at maximum depth: checked
    Bitrate encoding: VBR, 2 pass
    Target bitrate: 8 or 20 (same result with both settings but obviously larger file with higher target rate)
    Maximum bitrate: 8 or 25 (same results for both settings)
    Use maximum render quality: checked
    Audio, multiplexer etc: standard settings, no change
    The rendered video runs smoothly on my mac but when uploading this video to youtube, the video stutters. I have tried multiple settings and can’t get the video to play smooth. Any tips or suggestions are welcome!
    You can watch the video here:
    Furnace lake edit 1 - YouTube
    Thanks.

    sanderx1 wrote:
    Hi - I have been struggling with an issue for a week now and I was wondering if one of you can help me to solve my issue. I have done numerous searches on this topic which got me somewhat in the right direction but I'm still not getting the results I want. The end objective is simple, a non-stuttering video on YouTube. Sounds simple right?
    Thanks.
    Rick has given you what you need, he always does.
    But the task you've described is not simple at all. It's not really an After Effects issue.
    There are many sites that offer good recommendations for maximizing your youtube workflow so your video looks the best and plays flawlessly. Youtube offers a good set of parameters. Some of this stuff is worthless, too. You've got to be selective.
    Starting out delivering a full 1080HD clip is not necessarily going to work out for you. Try rendering out to a 720 file. It's far smaller so it will be compressed much less by it's upload processor. The playback may be smoother and your audience is not going to be able to tell the difference between the 720 and a 1080 clip, most of the time. 
    Encourage you to drop back someday and let us know how you made out with Rick's advice.
    How to Make Professional Quality YouTube Videos: 6 Steps
    How to Make Good YouTube Videos for Video Marketing: 8 Steps
    How To Make Videos Look Great on YouTube - YouTube
    How to Make YouTube Videos Look Great
    Video quality - YouTube Help
    Tips of Getting Best YouTube Video Format for YouTube Uploading

  • GS60 2PE Hopeless really need some help here!!!

    Hey MSIer, I just did a complete wipe on my hard drive and  now there's totally nothing left on the drive like really nothing so what I wanna ask is that how do I get back all the pre installed software including windows 8.1 itself, how?
    Does anyone out there don't mind taking some time to help list down a guide on how to get back to how the laptop originally was(all the pre installed software including windows 8.1 iitself)? Your help is really much much much muchhhh appreciated!!! T_T

    Quote from: Syrellaris;112053
    You should be able to restore using the Recovery Discs you made(if you made them..) or by pressing the F3 key during bootup.
    Though, if you wiped all partitions on the hard drive, including the normally hidden recovery partition you are kind of screwed.. in that case you need to send it in for repair, but it will not be fixed under warranty.(if you dont have Recovery disc's)
    Quote from: JakeSully;112055
    Yeah best option when getting a new laptop it is to create a recovery dic or USB recovery and atleast .iso recovery to that way incase you wipe everything on hard disk you can restore every partitions that was wiped including recovery partition that has copy of windows 8.1 64 bit that comes pre-installed.
    I didn't do any recovery disc and have yet to try the F3 button that you mention. So let say even if the F3 is not working I'm totally screwed right?

  • I really need some help here....Please?

    Hey guys i have posted numerous threads regarding this issue but to no avail so im going to try one last time.
    Basically, Itunes works fine UNTIL i start to sync, Then it freezes up for a while then starts to sync a little bit...Then freezes and syncs a little bit..And so on..
    It took me 2 WHOLE days to sync 15 episodes of southpark.
    I transfered some movies and songs to my wifes laptop and it sync'd everything in around 50 seconds flat, So its now obvious that it must be my PC.
    I have USB 2 and i have 6 slots, I have tried ALL the different USB slots and it stays the same.
    Does anyone have ANY idea what this could be?
    I spoke to the guy who built my PC and he is changing the USB ports, He also said if that doesn't work he will change my motherboard..
    Is there a simple solution to this? Am i going to have to change Motherboard? ANY help would really be greatful.

    Hold your horses....
    Have you done some "rule out" testing? How do you know that the USBs are bad? How do you know that the MB is bad?
    1/ do all ports work when you plug a mouse in them?
    2/ what is a throughput when you plug a flash drive into these USBs (try 1 at a time) and copy a large file onto it? Test all the ports and compare speeds - are they at least 5-10 MB per sec? If yeah, then they are OK - system wise.
    If the USBs don't work and it's a PCI card, look for drivers and if no luck, buy a new card.
    If the USBs are built into the MB, then you have no other choice but to replace it, but only as the very last resort. Seems to me that he's trying ot hose you, my friend.....
    IN any case, it could be the drivers! Or..iTunes. Did you try to remove & reinstall?

  • Fried RAM slot?  Really need some help quick.

    Hi guys. I have a major problem on my hands, that I hope you may be able to help me solve...
    I have been working on a deadline for the production of a DVD that will be used as part of a mental health outreach program, and all had seemingly been going well, albeit slow with my OEM 512MB of RAM. I therefore decided to upgrade my RAM, first buying two 512MB DIMMS from macsolutuons, but these DIMMS produced crashes almost religiously after 5 or so minutes of uptime. After receiving a new shipment, ensuring they were from the same batch, all seemed to be well. The computer stayed up for days without crash - but when I put a load on it, namely video encoding to DV stream and to MPEG-2, poof - hard crashes.
    I decided the RAM from macsolutions looked generic and suspected if I bought some real RAM I'd be safe. I purchased Viking RAM form macmall, three 512MB DIMMS, overnighted so I can make this deadline.
    Here's the catch...
    If I use all three DIMMS, the computer crashes in less than 5 minutes of uptime religiously. If I use two of them, the computer seems to stay up without problems, but when it sees a load like video conversion places on the system, it locks up. When I remove all RAM, so only one 512MB DIMM is present, I can encode video, and I don't seem to get crashes.
    When I bought the machine from Apple some two years ago, it came with one 512MB DIMM. I'm only hypothesizing here, but is there a chance that I received a machine that has a RAM slot 1 that's fine, but there's something wrong with slot 2 (or even 2, 3, 4)? In theory, when just surfing or using standard apps, the first slot meets the RAM need, but when more RAM allocation is needed under hard processes, and the system feeds off of slots beyond #1, then I crash. MenuMeters is installed so I can monitor RAM use, and sure enough, I mainly get crashes as my used RAM approaches 480-500MB.
    It's really urgent that I get to the bottom of this issue sooner than later, so I can finish this project to meet my deadline. Assuming slot 2 and so forth are bad, could I use a single 1GB DIMM module?
    Any advice is greatly appreciated. If i can repay the favor in any way, I'd be glad to.

    I suspected the RAM as well, however when I use only one DIMM I get zero crashes. I have used each of the three DIMMS for one day each now, and no crashes, but the second I add another ino the configuration crashes occur. While I agree that cheap RAM is often the culprit, to me all signs point to a faulty slot 2.
    I think I'll try getting a 1G RAM DIMM and only use slot 1 and see how that goes. Too bad, because I could really use more than 1G.

  • I really need some help!!! ipod touch 4th gen 8g help needed

    my ipod touch 4th gen wont let me turn on it's wifi, use video camera(although i can take pics with both cameras), play music/ no sound or bluetooth, it was dropped into a toilet a long time ago, and i dont have the money to buy new parts, plus its a hand-me-down... any suggestions, i noticed that the motherboard had some corrosion near the wifi antenna's solder location so i wiped it off, and cleaned everything with a dry napkin but i think there are some capaceters ruined. i put it back together and that didnt help. also the wifi is greyed out, there is no internet status bars whatsoever. its not slow, and the apps work just fine. please please help, i've been wanting an ipod for over two years now, and i finally got it, just not the way i wanted it... HELP!

    could it be possible its only the motherboard that needs replacing, i'm good with tech' but i dont quite understand the ipod yet

  • Really Need Some Help with CME 8.6 using IOS as Firewall and Anyconnect VPN on Phones

    Hello,
    I have a 2911 Router with IOS Security and Voice enabled and we are using CME 8.6.  I am using a built-in Anyconnect VPN on 3 phones that are for remote users and thus I needed to enable security zones on the router which works because the remote phones will boot up, get their phone configs and I am able to call those remote phones from an outside line.
    The issue I am having is that when I try to dial a remote phone connected via the VPN through port g0/0 from and internal office phone, i.e., NOT involving the PSTN then there is no audio.  It's as if no audio is going back and forth.  When I take off the security zones from the virtual-template interface and the g0/0 interface then the audio works great and I can reach the phone from internal as I am supposed to.
    Could someone take a peek at my security config and see why audio would not be traveling through the VPN when I have my security zones turned on?
    clock timezone PST -8 0
    clock summer-time PST recurring
    network-clock-participate wic 0 
    network-clock-select 1 T1 0/0/0
    no ipv6 cef
    ip source-route
    ip cef
    ip dhcp excluded-address 192.168.8.1 192.168.8.19
    ip dhcp pool owhvoip
     network 192.168.8.0 255.255.248.0
     default-router 192.168.8.1 
     option 150 ip 192.168.8.1 
     lease 30
    multilink bundle-name authenticated
    isdn switch-type primary-ni
    crypto pki server cme_root
     database level complete
     grant auto
     lifetime certificate 7305
     lifetime ca-certificate 7305
    crypto pki token default removal timeout 0
    crypto pki trustpoint cme_root
     enrollment url http://192.168.8.1:80
     revocation-check none
     rsakeypair cme_root
    crypto pki trustpoint cme_cert
     enrollment url http://192.168.8.1:80
     revocation-check none
    crypto pki trustpoint TP-self-signed-2736782807
     enrollment selfsigned
     subject-name cn=IOS-Self-Signed-Certificate-2736782807
     revocation-check none
     rsakeypair TP-self-signed-2736782807
    voice-card 0
     dspfarm
     dsp services dspfarm
    voice service voip
     allow-connections h323 to h323
     allow-connections h323 to sip
     allow-connections sip to h323
     allow-connections sip to sip
     fax protocol t38 version 0 ls-redundancy 0 hs-redundancy 0 fallback none
     vpn-group 1
      vpn-gateway 1 https://66.111.111.111/SSLVPNphone
      vpn-trustpoint 1 trustpoint cme_cert leaf
     vpn-profile 1
      host-id-check disable
    voice class codec 1
     codec preference 1 g711ulaw
    voice class custom-cptone jointone
     dualtone conference
      frequency 600 900
      cadence 300 150 300 100 300 50
    voice class custom-cptone leavetone
     dualtone conference
      frequency 400 800
      cadence 400 50 200 50 200 50
    voice translation-rule 1
     rule 1 /9400/ /502/
     rule 2 /9405/ /215/
     rule 3 /9410/ /500/
    voice translation-rule 2
     rule 1 /.*/ /541999999/
    voice translation-rule 100
     rule 1 /^9/ // type any unknown plan any isdn
    voice translation-profile Inbound_Calls_To_CUE
     translate called 1
    voice translation-profile InternationalType
     translate called 100
    voice translation-profile Local-CLID
     translate calling 2
    license udi pid CISCO2911/K9 sn FTX1641AHX3
    hw-module pvdm 0/0
    hw-module pvdm 0/1
    hw-module sm 1
    username routeradmin password 7 091649040910450B41
    username cmeadmin privilege 15 password 7 03104803040E375F5E4D5D51
    redundancy
    controller T1 0/0/0
     cablelength long 0db
     pri-group timeslots 1-12,24
    class-map type inspect match-any sslvpn
     match protocol tcp
     match protocol udp
     match protocol icmp
    class-map type inspect match-all router-access
     match access-group name router-access
    policy-map type inspect firewall-policy
     class type inspect sslvpn
      inspect 
     class class-default
      drop
    policy-map type inspect outside-to-router-policy
     class type inspect router-access
      inspect 
     class class-default
      drop
    zone security trusted
    zone security internet
    zone-pair security trusted-to-internet source trusted destination internet
     service-policy type inspect firewall-policy
    zone-pair security untrusted-to-trusted source internet destination trusted
     service-policy type inspect outside-to-router-policy
    interface Loopback0
     ip address 192.168.17.1 255.255.248.0
    interface Embedded-Service-Engine0/0
     no ip address
     shutdown
    interface GigabitEthernet0/0
     description Internet
     ip address dhcp
     no ip redirects
     no ip proxy-arp
     zone-member security internet
     duplex auto
     speed auto
    interface GigabitEthernet0/1
     ip address 192.168.8.1 255.255.248.0
     duplex auto
     speed auto
    interface GigabitEthernet0/2
     no ip address
     shutdown
     duplex auto
     speed auto
    interface Serial0/0/0:23
     no ip address
     encapsulation hdlc
     isdn switch-type primary-ni
     isdn incoming-voice voice
     no cdp enable
    interface Integrated-Service-Engine1/0
     ip unnumbered Loopback0
     service-module ip address 192.168.17.2 255.255.248.0
     !Application: CUE Running on NME
     service-module ip default-gateway 192.168.17.1
     no keepalive
    interface Virtual-Template1
     ip unnumbered GigabitEthernet0/0
     zone-member security trusted
    ip local pool SSLVPNPhone_pool 192.168.9.1 192.168.9.5
    ip forward-protocol nd
    ip http server
    ip http authentication local
    no ip http secure-server
    ip http path flash:/cme-gui-8.6.0
    ip route 192.168.17.2 255.255.255.255 Integrated-Service-Engine1/0
    ip access-list extended router-access
     permit tcp any host 66.111.111.111 eq 443
    tftp-server flash:apps31.9-3-1ES26.sbn
    control-plane
    voice-port 0/0/0:23
    voice-port 0/3/0
    voice-port 0/3/1
    mgcp profile default
    sccp local GigabitEthernet0/1
    sccp ccm 192.168.8.1 identifier 1 priority 1 version 7.0 
    sccp
    sccp ccm group 1
     bind interface GigabitEthernet0/1
     associate ccm 1 priority 1
     associate profile 1 register CME-CONF
    dspfarm profile 1 conference  
     codec g729br8
     codec g729r8
     codec g729abr8
     codec g729ar8
     codec g711alaw
     codec g711ulaw
     maximum sessions 4
     associate application SCCP
    dial-peer voice 500 voip
     destination-pattern 5..
     session protocol sipv2
     session target ipv4:192.168.17.2
     dtmf-relay sip-notify
     codec g711ulaw
     no vad
    dial-peer voice 10 pots
     description Incoming Calls To AA
     translation-profile incoming Inbound_Calls_To_CUE
     incoming called-number .
     port 0/0/0:23
    dial-peer voice 20 pots
     description local 10 digit dialing
     translation-profile outgoing Local-CLID
     destination-pattern 9[2-9].........
     incoming called-number .
     port 0/0/0:23
     forward-digits 10
    dial-peer voice 30 pots
     description long distance dialing
     translation-profile outgoing Local-CLID
     destination-pattern 91..........
     incoming called-number .
     port 0/0/0:23
     forward-digits 11
    dial-peer voice 40 pots
     description 911
     destination-pattern 911
     port 0/0/0:23
     forward-digits all
    dial-peer voice 45 pots
     description 9911
     destination-pattern 9911
     port 0/0/0:23
     forward-digits 3
    dial-peer voice 50 pots
     description international dialing
     translation-profile outgoing InternationalType
     destination-pattern 9T
     incoming called-number .
     port 0/0/0:23
    dial-peer voice 650 pots
     huntstop
     destination-pattern 650
     fax rate disable
     port 0/3/0
    gatekeeper
     shutdown
    telephony-service
     protocol mode ipv4
     sdspfarm units 5
     sdspfarm tag 1 CME-CONF
     conference hardware
     moh-file-buffer 90
     no auto-reg-ephone
     authentication credential cmeadmin tshbavsp$$4
     max-ephones 50
     max-dn 200
     ip source-address 192.168.8.1 port 2000
     service dnis dir-lookup
     timeouts transfer-recall 30
     system message Oregon's Wild Harvest
     url services http://192.168.17.2/voiceview/common/login.do 
     url authentication http://192.168.8.1/CCMCIP/authenticate.asp  
     cnf-file location flash:
     cnf-file perphone
     load 7931 SCCP31.9-3-1SR4-1S.loads
     load 7936 cmterm_7936.3-3-21-0.bin
     load 7942 SCCP42.9-3-1SR4-1S.loads
     load 7962 SCCP42.9-4-2-1S.loads
     time-zone 5
     time-format 24
     voicemail 500
     max-conferences 8 gain -6
     call-park system application
     call-forward pattern .T
     moh moh.wav
     web admin system name cmeadmin secret 5 $1$60ro$u.0r/cno/OD2JmtvPq4w9.
     dn-webedit 
     transfer-digit-collect orig-call
     transfer-system full-consult
     transfer-pattern .T
     fac standard
     create cnf-files version-stamp Jan 01 2002 00:00:00
    ephone-template  1
     softkeys connected  Hold Park Confrn Trnsfer Endcall ConfList TrnsfVM
     button-layout 7931 2
    ephone-template  2
     softkeys idle  Dnd Gpickup Pickup Mobility
     softkeys connected  Hold Park Confrn Mobility Trnsfer TrnsfVM
     button-layout 7931 2
    ephone-dn  1  dual-line
     number 200
     label Lisa
     name Lisa Ziomkowsky
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  2  dual-line
     number 201
     label Dylan
     name Dylan Elmer
     call-forward busy 500
     call-forward noan 500 timeout 12
    ephone-dn  3  dual-line
     number 202
     label Kimberly
     name Kimberly Krueger
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  4  dual-line
     number 203
     label Randy
     name Randy Buresh
     mobility
     snr calling-number local
     snr 915035042317 delay 5 timeout 15 cfwd-noan 500
     call-forward busy 500
     call-forward noan 500 timeout 12
    ephone-dn  5  dual-line
     number 204
     label Mark
     name Mark McBride
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  6  dual-line
     number 205
     label Susan
     name Susan Sundin
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  7  dual-line
     number 206
     label Rebecca
     name Rebecca Vaught
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  8  dual-line
     number 207
     label Ronnda
     name Ronnda Daniels
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  9  dual-line
     number 208
     label Matthew
     name Matthew Creswell
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  10  dual-line
     number 209
     label Nate
     name Nate Couture
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  11  dual-line
     number 210
     label Sarah
     name Sarah Smith
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  12  dual-line
     number 211
     label Janis
     name Janis McFerren
     call-forward busy 500
     call-forward noan 500 timeout 12
    ephone-dn  13  dual-line
     number 212
     label Val
     name Val McBride
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  14  dual-line
     number 213
     label Shorty
     name Arlene Haugen
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  15  dual-line
     number 214
     label Ruta
     name Ruta Wells
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  16  dual-line
     number 215
     label 5415489405
     name OWH Sales
     call-forward busy 500
     call-forward noan 500 timeout 12
    ephone-dn  17  dual-line
     number 216
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  18  dual-line
     number 217
     call-forward busy 500
     call-forward noan 500 timeout 12
    ephone-dn  19  dual-line
     number 218
     call-forward busy 500
     call-forward noan 500 timeout 12
    ephone-dn  20  dual-line
     number 219
     call-forward busy 500
     call-forward noan 500 timeout 12
    ephone-dn  21  dual-line
     number 220
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  22  dual-line
     number 221
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  23  dual-line
     number 222
     label Pam
     name Pam Buresh
     call-forward busy 500
     call-forward noan 500 timeout 12
    ephone-dn  24  dual-line
     number 223
     call-forward busy 500
     call-forward noan 500 timeout 12
    ephone-dn  25  dual-line
     number 224
     call-forward busy 500
     call-forward noan 500 timeout 12
    ephone-dn  26  dual-line
     number 225
     label Elaine
     name Elaine Mahan
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  27  octo-line
     number 250
     label Shipping
     name Shipping
    ephone-dn  28  dual-line
     number 251
     label Eli
     name Eli Nourse
     call-forward busy 500
     call-forward noan 500 timeout 10
    ephone-dn  29  dual-line
     number 252
    ephone-dn  30  dual-line
     number 253
    ephone-dn  31  octo-line
     number 100
     label Customer Service
     name Customer Service
     call-forward busy 500
     call-forward noan 500 timeout 12
    ephone-dn  32  octo-line
     number 101
     label Sales
     name Sales
     call-forward busy 214
     call-forward noan 214 timeout 12
    ephone-dn  33  dual-line
     number 260
     label Conference Room
     name Conference Room
     call-forward busy 100
     call-forward noan 100 timeout 12
    ephone-dn  100
     number 300
     park-slot timeout 20 limit 2 recall
     description Park Slot For All Company
    ephone-dn  101
     number 301
     park-slot timeout 20 limit 2 recall
     description Park Slot for All Company
    ephone-dn  102
     number 302
     park-slot timeout 20 limit 2 recall
     description Park Slot for All Company
    ephone-dn  103
     number 700
     name All Company Paging
     paging ip 239.1.1.10 port 2000
    ephone-dn  104
     number 8000...
     mwi on
    ephone-dn  105
     number 8001...
     mwi off
    ephone-dn  106  octo-line
     number A00
     description ad-hoc conferencing
     conference ad-hoc
    ephone-dn  107  octo-line
     number A01
     description ad-hoc conferencing
     conference ad-hoc
    ephone-dn  108  octo-line
     number A02
     description ad-hoc conferencing
     conference ad-hoc
    ephone  1
     device-security-mode none
     mac-address 001F.CA34.88AE
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:2 2:31
    ephone  2
     device-security-mode none
     mac-address 001F.CA34.8A03
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:12
    ephone  3
     device-security-mode none
     mac-address 001F.CA34.898B
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
    ephone  4
     device-security-mode none
     mac-address 001F.CA34.893F
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
    ephone  5
     device-security-mode none
     mac-address 001F.CA34.8A71
     ephone-template 1
     max-calls-per-button 2
     username "susan"
     paging-dn 103
     type 7931
     button  1:6
    ephone  6
     device-security-mode none
     mac-address 001F.CA34.8871
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:7 2:31 3:32
    ephone  7
     device-security-mode none
     mac-address 001F.CA34.8998
     ephone-template 1
     max-calls-per-button 2
     username "matthew"
     paging-dn 103
     type 7931
     button  1:9
    ephone  8
     device-security-mode none
     mac-address 001F.CA36.8787
     ephone-template 1
     max-calls-per-button 2
     username "nate"
     paging-dn 103
     type 7931
     button  1:10
    ephone  9
     device-security-mode none
     mac-address 001F.CA34.8805
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:5
    ephone  10
     device-security-mode none
     mac-address 001F.CA34.880C
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:14
    ephone  11
     device-security-mode none
     mac-address 001F.CA34.8935
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:3
    ephone  12
     device-security-mode none
     mac-address 001F.CA34.8995
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:8 2:31
    ephone  13
     device-security-mode none
     mac-address 0021.5504.1796
     ephone-template 2
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:4
    ephone  14
     device-security-mode none
     mac-address 001F.CA34.88F7
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:23
    ephone  15
     device-security-mode none
     mac-address 001F.CA34.8894
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:26
    ephone  16
     device-security-mode none
     mac-address 001F.CA34.8869
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:28 2:27
    ephone  17
     device-security-mode none
     mac-address 001F.CA34.885F
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:11
    ephone  18
     device-security-mode none
     mac-address 001F.CA34.893C
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:27
    ephone  19
     device-security-mode none
     mac-address 001F.CA34.8873
     ephone-template 1
     max-calls-per-button 2
     paging-dn 103
     type 7931
     button  1:27
    ephone  20
     device-security-mode none
     mac-address A456.3040.B7DD
     paging-dn 103
     type 7942
     vpn-group 1
     vpn-profile 1
     button  1:13
    ephone  21
     device-security-mode none
     mac-address A456.30BA.5474
     paging-dn 103
     type 7942
     vpn-group 1
     vpn-profile 1
     button  1:15 2:16 3:32
    ephone  22
     device-security-mode none
     mac-address A456.3040.B72E
     paging-dn 103
     type 7942
     vpn-group 1
     vpn-profile 1
     button  1:1
    ephone  23
     device-security-mode none
     mac-address 00E0.75F3.D1D9
     paging-dn 103
     type 7936
     button  1:33
    line con 0
    line aux 0
    line 2
     no activation-character
     no exec
     transport preferred none
     transport input all
     transport output pad telnet rlogin lapb-ta mop udptn v120 ssh
     stopbits 1
    line 67
     no activation-character
     no exec
     transport preferred none
     transport input all
     transport output pad telnet rlogin lapb-ta mop udptn v120 ssh
    line vty 0 4
     transport input all
    scheduler allocate 20000 1000
    ntp master
    ntp update-calendar
    ntp server 216.228.192.69
    webvpn gateway sslvpn_gw
     ip address 66.111.111.111 port 443  
     ssl encryption 3des-sha1 aes-sha1
     ssl trustpoint cme_cert
     inservice
    webvpn context sslvpn_context
     ssl encryption 3des-sha1 aes-sha1
     ssl authenticate verify all
     policy group SSLVPNphone
       functions svc-enabled
       hide-url-bar
       svc address-pool "SSLVPNPhone_pool" netmask 255.255.248.0
       svc default-domain "bendbroadband.com"
     virtual-template 1
     default-group-policy SSLVPNphone
     gateway sslvpn_gw domain SSLVPNphone
     authentication certificate
     ca trustpoint cme_root
     inservice
    end

    I think your ACL could be the culprit.
    ip access-list extended router-access
     permit tcp any host 66.111.111.111 eq 443
    Would you be able to change the entry to permit ip any any (just for testing purpose) and then test to see if the calls function properly.  If they work fine then we know that we need to open som ports there.
    Please remember to select a correct answer and rate helpful posts

  • I really need some help

    hi,
    to anyone out there that is willing to help, i really
    appreciate it.
    let me start by saying, i am very very green at this whole
    dreamweaver thing so please excuse me if this is really a stupid
    question.
    ok here goes, i have created a web photo album and would like
    to apply another page (that i saved as a template through save as
    template) to the web photo album. only because i really don't know
    what i'm doing i'm totally lost!!! i tried clicking on the insert
    menu to template objects to editable region. then i go to the
    modify menu pull down to templates and to apply template to page.
    of course that takes me to the select template area. well, i select
    the template that then changes the window and takes me to
    inconsistant regions area. ok, here's where i'm really confused, in
    that you have the choice to select the regions. i don't know how,
    but i have something in there in the move content to region that is
    a file i made. (i'm in dreamweaver hell by now because i don't
    remember how i made that) i select it any way (maybe because i
    really don't have a choice at this point) and it ends up filling
    the whole dang page of the web photo album i just made.
    so, first off i don't want that. i still want to keep my area
    where the pictures are open and only fill around the name of the
    page and the border i made for the web photo album.
    can someone smarter than me please, please, pretty please
    with sugar on top help me?
    thanks,
    cyn

    Instead of jumping head first into Templates, how about just
    doing a simple
    copy and past of the original page, then rename the page to
    whatever you
    want, and change the gallery images/text to suit. Far easier.
    You are in for
    a few headaches if you try to understand DW templates and
    know very little
    about them or Dreamweaver for that matter.
    Walk before you run. Otherwise use F1, visit your local
    library for a good
    book on DW Templates and start learning.
    Brendon
    "bagrizzly" <[email protected]> wrote in
    message
    news:[email protected]...
    > hi,
    >
    > to anyone out there that is willing to help, i really
    appreciate it.
    >
    > let me start by saying, i am very very green at this
    whole dreamweaver
    > thing
    > so please excuse me if this is really a stupid question.
    >
    > ok here goes, i have created a web photo album and would
    like to apply
    > another
    > page (that i saved as a template through save as
    template) to the web
    > photo
    > album. only because i really don't know what i'm doing
    i'm totally lost!!!
    > i
    > tried clicking on the insert menu to template objects to
    editable region.
    > then
    > i go to the modify menu pull down to templates and to
    apply template to
    > page.
    > of course that takes me to the select template area.
    well, i select the
    > template that then changes the window and takes me to
    inconsistant regions
    > area. ok, here's where i'm really confused, in that you
    have the choice to
    > select the regions. i don't know how, but i have
    something in there in the
    > move
    > content to region that is a file i made. (i'm in
    dreamweaver hell by now
    > because i don't remember how i made that) i select it
    any way (maybe
    > because i
    > really don't have a choice at this point) and it ends up
    filling the whole
    > dang
    > page of the web photo album i just made.
    >
    > so, first off i don't want that. i still want to keep my
    area where the
    > pictures are open and only fill around the name of the
    page and the border
    > i
    > made for the web photo album.
    >
    > can someone smarter than me please, please, pretty
    please with sugar on
    > top
    > help me?
    >
    > thanks,
    > cyn
    >

  • I really need some help with rendering

    I am creating a video for a client, and he is going to stream it through his own player. He requires the video to play using dimentions of 430 x 242.
    He wants to keep the file sizes as small as possible.
    I am currently creating his videos using a 1280 x 720 composition, as this is the same aspect ratio as his specific dimentions.
    I am unsure of the best settings to use for the best quality. I've tried MOV but am getting files that are 600+ MB, and I'm also trying MPEG4 but getting blurry, washed out results that look nothing like the preview in AE. I've tried Flash and it stutters.
    My questions:
    1. Should I render in 1280 x 720 and just ask him to re-size them through his player? (I assume most players can do this?) or should I render to the dimensions of 430 x 242? He doesn't have too much knowledge of video.
    2. What is the best file format and settings?
    3. Is it possible to re-set the render option defaults? I've played around with all of the setting so much that I can't remember how each file format was set before I started this project. I've tried re-starting AE but it still leaves me with the same settings as when I closed it.
    Every time I post a question like this I get people telling me to 'read the basics' or 'we get asked this time and time again etc'. Please note that I have a disability and am finding this very tough - if it isn't too much trouble I'd just appriciate someone giving the information so that I can learn in from here. It will need to be explained simply as yes I am fairly new to AE.
    I just can't seem to find anything which works. MPEG4's are giving me a suitable file size but then look blurred and washed out.
    Many thanks for any help.

    First question: What player is your client going to be using to play this? Everything depends on that. For example, if he's going to be playing the file using QuickTime Player, then the answer is pretty easy: create a QuickTime movie (.mov).
    > Should I render in 1280 x 720 and just ask him to re-size them through his player?
    No, not if you've been told that he wants a 430x242 file. If you make a big movie (in terms of frame dimensions) and have him resize it, then you're going to create much larger files than necessary.
    > I am unsure of the best settings to use for the best quality. I've tried MOV but am getting files that are 600+ MB
    The QuickTime movie (.mov) format is just a container format. It can contain video encoded using any of a large number of codecs, with any of a range of quality settings. The default is a lossless compression (using the Animation codec) that creates perfect images at the expense of larger files.
    After you've added your composition to the render queue, choose QuickTime as your format in the Output Module Settings dialog box and then click the Format Options button in the Output Module Settings dialog box. You can choose a compression type, set quality, et cetera. People seem to like the H.264 codec for a good balance of size and quality.
    See "Encoding and compression options for movies" for more information.

  • Really need some help

    I am having trouble trying to delete Quick Times off of my computer. Everytime I go to control panel, add/remove programs, it will not let me do anything. I need help! I need to know how to go about fixing that problem and how to get it off my computer!!! If you can help at all please!!!!! I just need to delete the program and even when i try to open it up it will not let me, it keeps giving me some error message! Help me if you can!

    thank you! ok I am sorry that I am slow when it comes to computer porblems, but I installed the cleanup program and need help what to do next. I wne back and tried to delete the program and still the same problem. if you can help it would be great! thanks and have a great night, go bears!

Maybe you are looking for