Automator can help me earn and I need your help

Hey guys, I am doing a project sort of a thing, where I have to copy the content of a PDF file onto word and do some regular editing work (alignment, paragraph spacing). I am finding it a bit difficult to meet the dead lines, so if you guys could help me out to make an automator application that does this automatically, I would be extremely thankful to you.
Please respond to show your interest and then I will list out all the commands that I need to follow

Well.. you can take a look at this PDF for futher help on scripting Word:
http://download.microsoft.com/download/1/3/e/13e8ae25-78f7-41a8-b252-f09c465ce29 c/word2004applescriptref.pdf
You could use DropBox to post files here...

Similar Messages

  • HT4623 Hi there , I have ipone3GS it is locked and I need your help to unlocke it as soon as possible .

    Hi there ,
    I have ipone3GS it is locked and I need your help to unlocke it as soon as possible .
    IMEI :  01 299500 378415 1
    I am waiting for your help for unlocke it to use it soon .
    Thank you for understanding my situation .
    Regards
    Sultan Alsharari

    Could you please give me their email to contact them.
    I am waiting for your replay .
    Thank you
    Sultan Alsharari

  • 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

  • When loading the program, the loading, circular icon will not stop. It seems like it is trying to load and can't.  Since Adobe tech support won't help with version 13, I need your help.

    I just bought this and was trying to load it for the first time and the circular icon just keeps flashing like it is trying to load and can't.  Most elements come up but I am wondering why it is still flashing like it is trying to load.
    At times, the drop down menus will not stay up.  When I click on them, they flash and then disappear.
    This is not a blank message.

    Not the help you're looking for -- sorry -- but I'm fighting a battle with Adobe tech support, too.  They won't help me with an issue involving using the program, but their site seems to indicate that tech support is available for download, install, & setup.  Check page: https://helpx.adobe.com/contact/what-contact-options.html and try calling them again.  Good luck!

  • Weird problem and I need your help!

    Hello,
    I'll keep this short and hopefully someone will be able to give me a simple answer to this problem - it's been driving me nuts for days!
    Here's the situation, as concise as I can be:
    - import clips from my video camera to iMovie, no problem
    - sort clips, edit them, throw them into the timeline, no problem
    - add transitions, effects, titles, no problem
    - export to Quicktime so I can watch it on my computer and share it on my computer network - no problem, the movie looks great
    Here's the problem!
    - I now want to burn the Quicktime movie, as is, on to a DVD
    - I put the movie into Toast, tell it to do what it does
    - Toast burns great
    - When I watch the DVD, there's a constant weird flickering, especially when the camera is moving. It's not anything extra, it's like a kind of strobe effect on the whole thing. It looks almost like it's having trouble keeping up with the picture. I wish I could show you but it only happens with a DVD player... and I've tried it on several TVs and DVD players.
    I've burned AVI files with Toast the exact same way and have no problems.
    What am I doing wrong? I don't want to use iDVD because I don't want any menus and titles and all that - just the movie. It looks great on my computer but as soon as I watch it on a TV, it looks like ... well, it flickers. I've tried burning with different settings and resolutions, but it always comes out the same.
    I hope this makes sense to someone. Help?
    tubaindy
    ps. In case you are wondering, I need it on DVD to mail to some relatives overseas who are afraid of new things - but they are able to put a DVD in the tray, which is all I want... they put in the DVD, it plays a movie. That's all.

    1. Start up Terminal by using Spotlight or starting it from Applications -> Utilities
    2. Type: killall OpaqueMenuBar (case sensitive spelling)
    Nothing should come up as a result. If it says "no processes belong to you were found" check the spelling or skip to the next step
    3. Go to your applications folder (commandshiftA in Finder) and drag the OpaqueMenuBar app to the trash
    4. Go into the System Preferences -> Desktop, change the wallpaper to something else and then back again.
    Uninstallation should be complete.

  • Hi, I have a MacBook and I need your help

    Hello, I have a MacBook and I have downloaded the new upgrade and it had to restart my mac and when it did it came back on and asked me for a password for a Apple ID I had created but forgot the password so I clicked 'forgot password' and for an hour now it has been loading and it will not let me on the internet or click on anything thing else. The only thing I can do is switch my laptop of and when it come back on it's still loading or I can press F3 and that is it. Please can you help me get back onto my mac as I have work I need to do. Thank you.

    Apple ID Support:
    http://www.apple.com/support/appleid/security/
    or call Tech support 1-800-275-2273

  • Flash won't install properly and I need your help!

    Details:
    -Computer: Mac OS X 10.5.8 (Intel Core 2 Duo)
    -Browser: Safari 5.0.5 (5533.21.1)
    -Flash version: Flash 10.3
    -Problem: Installation seems successful, but websites still cannot play Flash content and request (again) I download the latest version
    Hello everyone!
    I hope someone here can help, because this problem is driving me crazy. My Flash has always worked fine until about three weeks ago when Youtube told me to download the latest Flash. Facebook applications were telling me to do the same.
    Obediently, I followed the prompts to the Adobe website to download:
    -Flash 10.3 for Mac OS X 10.5.8 (Intel)
    However, it seems that nothing has changed, and these same websites are still requesting I download the latest version of Flash.
    I am not TOO tech savvy, but it appears to have downloaded correctly. The installation manager states that it was successful, however Flash is not listed under my Applications folder (not sure if it is supposed to?). I have tried uninstalling and reinstalling, but still no luck.
    I would appreciate ANY advice you might have. I have no idea how to fix this by myself. Please help!
    Tia

    Hi, Check and make sure the Shockwave Flash plugin is Enabled in Safari.
    See if that is the problem.
    eidnolb

  • Problem installation Adobe AIR, and i need your help

    This is my log file please help me!
    Performing runtime install
    UI SWF load is complete
    UI initialized
    starting user confirmation
    Installation type: new
    starting install
    Scheduling runtime installation operations
    uninstall scheduled for 1.0.5, 1.0.4, 1.0.6
    Installed Product GUID:  is same:false
    Beginning runtime installation
    Beginning install
    Uninstalling product w/ GUID {199FC15D-2E06-47BE-B3EA-CA086FCB94CF}
    Error occurred; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    Rollback due to error complete
    error during install: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    runtime install entering error state: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1612" errorID=0]
    begin quitting

    1. Start up Terminal by using Spotlight or starting it from Applications -> Utilities
    2. Type: killall OpaqueMenuBar (case sensitive spelling)
    Nothing should come up as a result. If it says "no processes belong to you were found" check the spelling or skip to the next step
    3. Go to your applications folder (commandshiftA in Finder) and drag the OpaqueMenuBar app to the trash
    4. Go into the System Preferences -> Desktop, change the wallpaper to something else and then back again.
    Uninstallation should be complete.

  • I messed up and I need your help please (menu bar)

    OK I messed up. I installed one of these utilities to see it I would like the opaque menu bar better than the transparent since so many are fussy about the transparency. Well I find I liked the transparent bar. Now I do not know how to restore it. I thought the utility "opaque menu bar" would have a way to uninstall but it does not and the developer is not replying so any help would be appreciated. Thank you in advance.
    Mireille

    1. Start up Terminal by using Spotlight or starting it from Applications -> Utilities
    2. Type: killall OpaqueMenuBar (case sensitive spelling)
    Nothing should come up as a result. If it says "no processes belong to you were found" check the spelling or skip to the next step
    3. Go to your applications folder (commandshiftA in Finder) and drag the OpaqueMenuBar app to the trash
    4. Go into the System Preferences -> Desktop, change the wallpaper to something else and then back again.
    Uninstallation should be complete.

  • Please help my firend!i need your help!

    i am a chinese developer .as you see ,my English is very bad..
    i have some big problems this days.
    http://www.thetechlabs.com/tutorials/3d/create-in-flex-a-3d-image-gallery-using-actionscri pt-30-and-alternativa3d/
    go to this link , you will find a souce code which developed by flex.
    i have downloaded it and try to run it .But i really have much problem.
    i try do these steps:
    1 download source code.
    2 create a new project
    3 download the Alternativa 3D folders.
    4 properties -buildpath-add Alternativa 3D folders in project
    5 copy the code from sourcecode to the new project
    6 run appliaction
    failed.
    or
    1 import the project which i downloaded.
    2download the Alternativa 3D folders.
    3 properties -buildpath-add Alternativa 3D folders in project
    failed.
    how can i do?
    i mean,when i want to run a appliaction which i downloaded  and need as3 folder like
    "green sock" or "Alternativa 3D"
    i dont know how to operate.
    could help me and tell me details.their have less                          tutorials in china.i should study from goole.but it is hard for me to read English documents.
    help me my firends,thank you

    In the future, rather than just saying "failed", it will be more helpful if you explain exactly how it failed.
    When I tried it, I got compilation errors in Photo.as that the gs.TweenMax could not be found. Googling "gs.TweenMax" led me to the page
    http://www.greensock.com/tweenmax/
    where I downloaded greensock-as3.zip. This Zip file contained a SWC, greensock.swc, which I added to the project's 'libs' folder (alongside the Alternativa3D SWCs). This didn't fix the compilation error, so I checked the catalog.xml file inside greensock.swc (which is just a renamed Zip file) to see if there was a TweenMax class inside. There is, but it has been renamed to com.greensock.TweenMax. When I changed the line
        import gs.TweenMax;
    in Photo.as to
        import com.greensock.TweenMax;
    it compiled and ran. So there were two problems:
    1. The Alternativa libraries are relying on a free Greensock library that you needed to also have. (This was probably explained somewhere on the Alternativa site.)
    2. The Greensock library that Alternativa is expecting appears to be out-of-sync with the one available on the Greensock site.
    Gordon Smith
    Adobe Flex SDK Team

  • Beginner in java and need your help about DES

    hello,
    I m a new guy in java programming and learn from many books.I m making a website and portal right now and dying need your help about DES.my portal (using java) requires somebody to make a login name and a password.I m done with the server and client things and rite now stuck with this "DES" stuff.
    so I make some conditions and algorithm below..
    1. when a user login,the password is encrypted.at this point,cleartext(id) and encryption (M,N) are involve.
    2. then the key is changed based on algorithm.
    3.the key changed by key(id) is received and the original text should be encrypted.
    the algorithm
    1. the original text x1.x2.x3.x4.x5.x6.x7.x8 (64 bits)
    2. encypt the password
    a. Each character is changed into an int type by the ASCII code, and let the 1st bit be an odd number parity bit.
    b.The 1st bit of the 1st character in (IP) is set to '1', and the 8th bit of the 8th character as '64'.
    c.the rest (IP) is like this
    1 2 3 4 5 6 7 8
    0 # 58 50 42 34 26 18 10 2
    8 # 60 52 44 36 28 20 12 4
    16 # 62 54 46 38 30 22 14 6
    24 # 64 46 48 40 32 24 16 8
    32 # 57 49 41 33 25 17 9 1
    40 # 59 51 43 35 27 19 11 3
    48 # 61 53 45 37 29 21 13 5
    56 # 63 55 47 39 31 23 15 7
    d. and lastly,from above,,it should be done like this
    1 2 3 4 5 6 7
    0 # 40 8 48 16 56 24 64 32
    8 # 39 7 27 15 55 23 53 31
    16 # 38 6 26 14 54 22 52 30
    24 # 37 5 25 13 53 21 51 29
    32 # 36 4 24 12 52 20 50 28
    40 # 35 3 23 11 51 19 49 27
    48 # 34 2 21 10 50 18 48 26
    56 # 33 1 20 9 49 17 47 25
    e. key y1,y2,y3,y4,y5,y6,y7,y8 (64bit)
    f. generate the key based on ID
    a. Each character is changed into an int type by the ASCII code, and let the 1st bit be an even number parity bit.
    b.the process is repeat again.
    anybody has an idea to help me with the sample program?
    thanks in advance...

    just ask about a simple program how to receive a
    password from somebody and change it to a key..and
    then confirm it with DES.Once again I have a problem understanding what you are asking.
    Are you trying to use the password as a key to encrypt some 'standard thing' and place this encrypted value in a database? If so then look in the JCE for 'password based encryption' such as PBEWithMD5AndDes. This seems back to front to me but I can see nothing wrong with the approach since the 'standard thing' you would encrypt is in effect a key. If this is for a commercial application then I would find a security expert to evaluate your proposal!
    In my experience it is more normal to encrypt the user's password with DES and store the result in the database. To do this just look in the JCE for DES encryption and consider using DES with CBC and PKCS5 padding. Also, consider encrypting the concatenation of the user's 'user name' with the password as this will (almost certainly) avoid having two encrypted values in the database that are the same even if two users have the same password.
    For both of these you might consider using Base64 or Hex to turn you encrpted bytes into ASCII characters before trying to store them in your DB.

  • PT880 Neo 4 red led, Need your help please!!

    Hello all
    It is my first post and I need your help. Today I purchased a combo P4 3/800 E Box CPU, MSI PT880 Neo FSR Mboard  and DDR 512MB 3200 VS Corsair 400Mhz 184 Pin Dimm from Fry's Electronic. I can not get my system to boot , no beep but only 4 red led and nothing on the screen. I used on my system Enermax 300W with DVD burner, DVD player, 60G HD, SBlive 5.1, ALL in Wonder Radeon 32Mb..After I am following all recommendation in the defferents Topic, I have no luck it won't boot. The 4 red leds are still on. Help me please thank you
    Brono85

    I've just got my Noisetaker 470watts too, it has the same rails as CoolerGiant , but I like CoolerGiant's active cooling system for both CPU and PSU , just that it's too lengthy and my chassis was small in size .
    Back to the topic, likewise anr11 mentioned, you may need a BIOS flash and you can use Memtest86 to test your RAMs out .

  • Please , i need youre help ! im from Mexico and i dont speak inglish well but ill try explain me... i buy a cs5 students edicion but i lost my paswoord for the instalacion can you helpe me ? how can i recuperade my paswoord

    please , i need youre help ! im from Mexico and i dont speak inglish well but ill try explain me... i buy a cs5 students edicion but i lost my paswoord for the instalacion can you helpe me ? how can i recuperade my paswoord
    Creative Suites

    Find your serial number quickly
    Mylenium

  • Hi, i need your help. I'm thinking of buying an iPod Touch 5..but i own a wireless G Router at home. So can iPod Touch 5 connect to a wireless G router? Will it connect easily and fast? Thank you.

    Hi, i need your help. I'm thinking of buying an iPod Touch 5..but i own a wireless G Router at home. So can iPod Touch 5 connect to a wireless G router? Will it connect easily and fast? Thank you.

    Hi, i need your help. I'm thinking of buying an iPod Touch 5..but i own a wireless G Router at home. So can iPod Touch 5 connect to a wireless G router? Will it connect easily and fast? Thank you.

  • HT4946 Hi. i downloaded the last version osf ios7, but i skipped the part where i was supposed to sing in to iCloud, now i'm trying to restart my iphone and i can't,,, i don't know what to do i really need your help!!!

    Hi. i downloaded the last version osf ios7, but i skipped the part where i was supposed to sing in to iCloud, now i'm trying to restart my iphone and i can't,,, i don't know what to do i really need your help!!!

    Just go into settings>Icloud> then sign in there.

Maybe you are looking for

  • DVD Compression Quality

    I created a 25 minute video using photos and music and the quality was excellent. Recently, I updated the project in same version of iMovie by changing a few of the photos and rearranging some of the music. When I made the Disk Image (with same prefe

  • Is there an easy way to replace/swap assets?

    I output my short from Avid, ran it through Compressor, and made a DVD in DVD Studio Pro. Now I've done some re-cuts and want to create a DVD of the new version, using the DVD Studio Pro file I used for the last DVD. Is there an easy way in DVD Studi

  • Please Give Me Your Hands

    Here is my codes, I try to save the "drawing" Panel graphics into a jpg, and I can compile it, however, when I run it, system tell me" NullPointerException"!!! I'm out of ideas, Please help, Thank you So much!!! import java.awt.*; import java.awt.ima

  • Erreur de construction LV2009

    Bonjour, A la compilation d'un programme sous Labview 2009 (SP1) nous avons le message d'erreur suivant : Visitez la page de demande de support sur ni.com/ask_fr pour en apprendre davantage sur la résolution de ce problème. Utilisez les informations

  • • Latest Pantone Libraries for Illustrator - Where can I download them?

    Hello - More and more we have to use "new" Pantone® referencies. But the problem is that we don't have those libraries on our computers. So where can I download them? Some times ago, I remember that we had encountered a problem with thoses new librar