EZDrummer and Leopard compatability. Has anybody got it to work.

Just got my Mac mini and have been trying to get EZDrummer to work in garageband 08. I open up garage band and use a software track, but when I drop down the instrument generator there is no EZDrummer option anywhere.
Has anybody got this to work? If so what version and am I doing everything right in Garageband?

While I'm not on Leopard (got the disc, still waiting till the coast is clear) I did hit a few bumps in the road w/ EZD initially. I believe I had to update to the latest version, but now that that's cleared up, the program works great. Try dropping an email to Toontrack, their Customer Service is outstanding.
-d

Similar Messages

  • Has anybody got avelsieve to work with Snow Leopard Server?

    I have been trying (in vain so far) to get avelsieve running on 10.6.server. When I add the plugins to squirrelmail (avelsieve 1.9.9 with or without javascript_libs 0.1.2), logging into web mail hangs and the web error_log has lines like
    [Sat Sep 25 16:43:18 2010] [error] [client 192.168.2.66] PHP Warning: in_array() expects parameter 2 to be array, null given in /usr/share/squirrelmail/plugins/avelsieve/setup.php on line 179, referer: https://certified.rna.nl/webmail/src/webmail.php
    Any ideas?

    In addition: I noticed I was running Avelsieve 1.9.6 on my Leopard Server. This is somewhat better as I can use Squirrelmail now, but managing server side filtering stilld oes not work. Squirrelmail times out on connection to the timsieved on port 2000 on localhost.
    With telnet I can connect to that port fine. It reports that it can handle
    "SASL" "GSSAPI CRAM-MD5"
    and
    "STARTLS"
    My avelsieve config has been set to use CRAM-MD5.
    (PS, I generally use only encrypted logins as I want to be certain no password whatever goes unencrypted anywhere).

  • CF9 and Amazon S3 - Has anyone got this to work?

    I've now sorted my other issues and thanks to everyone who helped me with them - I've now moved on to trying to create a set of services that will connect to the S3 cloud and post and retrieve pdf files in our buckets - We need to be able to supply vast amounts of files to client and the cost of that currently is exorbitant in server disk space compared to with using the cloud
    I've searched all over the net and picked up a number of ways of doing this - None of which seem to be able to generate the correct signature- I'm currently using the cf_hmac stuff from Adobe
    This is my code
    <cfobject component="AmazonWebServices.amazons3" name="amazonS3">
    <cfset s3ServiceKeys = structNew()/>
    <cfset s3ServiceKeys.accessKey = "<MyKey>"/>
    <cfset s3ServiceKeys.secret = "<MySecretKey>"/>
    <cfset s3ServiceKeys.bucket = "<MyBucketName>"/>
    <cfset s3serviceKeys.pdfContentType = "application/pdf"/>
    <cfset s3serviceKeys.gifContentType = "image/gif"/>
    <cfset s3serviceKeys.jpegContentType = "image/jpeg"/>
    <cfset s3serviceKeys.requestType = "cname"/>
    <cfset deliverDir = "<MyDeliverDir>"/>
    <cfset s3Service = amazonS3.init(awsKey="#s3ServiceKeys.accessKey#",awsSecret="#s3ServiceKeys.secret#")/>
    <cfdirectory action="list" directory="#deliverDir#" name="TheFileList" sort="dateLastModified" recurse="no" type="file">
    <cfoutput query="TheFileList">
    <cfset result = s3Service.putFileOnS3(localFilePath="#deliverDir#\#TheFileList.name#",
                                          contentType="#s3serviceKeys.pdfContentType#",
                                          requestType="#s3serviceKeys.requestType#",
                                          bucket="#s3serviceKeys.bucket#",
                                          objectKey="#TheFileList.name#")/>
    <cfdump var="#result#"/>
    </cfoutput>
    This is the AmazonS3Service - more or less a direct copy from here http://www.barneyb.com/barneyblog/projects/amazon-s3-cfc/
    <cffunction name="init" access="public" output="false" returntype="amazons3">
             <cfargument name="awsKey" type="string" required="true" />
             <cfargument name="awsSecret" type="string" required="true" />
             <cfargument name="localCacheDir" type="string" required="false"
                 hint="If omitted, no local caching is done.  If provided, this directory is used for local caching of S3 assets.  Note that if local caching is enabled, this CFC assumes it is the only entity managing the S3 storage and therefore that S3 never needs to be checked for updates (other than those made though this CFC).  If you update S3 via other means, you cannot safely use the local cache." />
             <cfset variables.awsKey = awsKey />
             <cfset variables.awsSecret = awsSecret />
             <cfset variables.useLocalCache = structKeyExists(arguments, "localCacheDir") />
             <cfif useLocalCache>
                 <cfset variables.localCacheDir = localCacheDir />
                 <cfif NOT directoryExists(localCacheDir)>
                     <cfdirectory action="create"
                         directory="#localCacheDir#" />
                 </cfif>
             </cfif>
             <cfreturn this />
         </cffunction>
    <cffunction name="putFileOnS3" access="public" output="false" returntype="struct"
                hint="I put a file on S3, and return the HTTP response from the PUT">
            <cfargument name="localFilePath" type="string" required="true" />
            <cfargument name="contentType" type="string" required="true"  />
            <cfargument name="bucket" type="string" required="true" />
            <cfargument name="objectKey" type="string" required="true" />
            <cfset var gmtNow = dateAdd("s", getTimeZoneInfo().utcTotalOffset, now()) />
            <cfset var dateValue = dateFormat(gmtNow, "ddd, dd mmm yyyy") & " " & timeFormat(gmtNow, "HH:mm:ss") & " GMT" />
            <cfset var signature = getRequestSignature(
                "PUT",
                bucket,
                objectKey,
                dateValue,
                contentType
            ) />
            <cfset var content = "" />
            <cfset var result = "" />
            <cffile action="readbinary"
                file="#localFilePath#"
                variable="content" />
            <cfhttp url="http://s3.amazonaws.com/#bucket#/#objectKey#"
                method="PUT"
                result="result">
                <cfhttpparam type="header" name="Date" value="#dateValue#" />
                <cfhttpparam type="header" name="Authorization" value="AWS #variables.awsKey#:#signature#" />
                <cfhttpparam type="header" name="Content-Type" value="#contentType#" />
                <cfhttpparam type="header" name="x-amz-acl" value="public-read">
                <cfhttpparam type="body" value="#content#" />
            </cfhttp>
            <cfset deleteCacheFor(bucket, objectKey) />
            <cfreturn result />
        </cffunction>
    <cffunction name="getRequestSignature" access="private" output="false" returntype="string">
            <cfargument name="verb" type="string" required="true" />
            <cfargument name="bucket" type="string" required="true" />
            <cfargument name="objectKey" type="string" required="true" />
            <cfargument name="dateOrExpiration" type="string" required="true" />
            <cfargument name="contentType" type="string" default="" />       
            <cfset stringToSign = "#trim(ucase(verb))#\n#contentType#\n#dateOrExpiration#\n/#bucket#/#objectKey#"/>
                <!--- Replace "\n" with "chr(10) to get a correct digest --->
                <cfset fixedData = replace(stringToSign,"\n","#chr(10)#","all")>
                <!--- Calculate the hash of the information --->
                <cf_hmac hash_function="sha1" data="#fixedData#" key="#variables.awsSecret#">
                <!--- fix the returned data to be a proper signature --->
                <cfset signature = ToBase64(binaryDecode(digest,"hex"))>
            <cfreturn signature>
        </cffunction>
    I don't appear to have any problems with what is being passed in - just the signature that is being created - All the code I've found is for earlier than CF9 and I'm therefore wondering if something has changed - although its more likely that I'm doing something I shouldn't be
    I need to be able to get stuff up there programatically before I start creating URL's so - this is a big first step to overcome

    I've actually found a work around for this problem - I took the Amazon S3 Library for Rest in Java http://developer.amazonwebservices.com/connect/entry.jspa?externalID=132&categoryID=47 and compiled the files below com into a jar - Which was dropped into the coldfusion server/lib
    I then used the examples to build the following coldfusion function
    <cffunction name="putFileOnS3" access="public" returntype="any">
            <cfargument name="localFilePath" type="string" required="true" />
            <cfargument name="contentType" type="string" required="true"  />
            <cfargument name="bucket" type="string" required="true" />
            <cfargument name="objectKey" type="string" required="true" />  
            <cffile action="read"
                file="#localFilePath#"
                variable="content" />  
            <cfscript>
                s3conn = CreateObject("java", "com.amazon.s3.AWSAuthConnection");
                s3conn.init("#variables.awsKey#","#variables.awsSecret#");
                s3object = CreateObject("java", "com.amazon.s3.S3Object");
                s3object.init(content.GetBytes());
                headers = createObject("java","java.util.TreeMap");
                contentTypeArray[1] = "#contentType#";
                headers.put("Content-Type",contentTypeArray);
                response = s3conn.put(bucket, objectKey, s3object, headers).connection.getResponseMessage();
                return response;
            </cfscript>  
        </cffunction>
    Which works perfectly - At last - I've just got to build the rest of the suite now so that we can upload, delete, create URLs etc
    Very relieved I found a work around and part of me is very pleased that good old Java provided the solution having spent 9 years as a Java programmer before starting work in Coldfusion

  • Has anybody got Arduino to Work in ArchLinux?

    I've tried via the aur and yaourt but it spits a load of errors out for me.
    I've also tried
    http://www.nongnu.org/avr-libc/user-man … r_binutils
    but when trying to make gcc i get
    libgcc/./_eprintf.o
    cc1: error: unrecognized command line option "-march=i686"
    make[3]: aurpage PKGBUILD [libgcc/./_eprintf.o] Error 1
    make[3]: Leaving directory `/home/firewalker/Desktop/gcc-avr4.1.1/src/gcc-4.1.1/objdir/gcc'
    make[2]: aurpage PKGBUILD [stmp-multilib] Error 2
    make[2]: Leaving directory `/home/firewalker/Desktop/gcc-avr4.1.1/src/gcc-4.1.1/objdir/gcc'
    make[1]: aurpage PKGBUILD [all-gcc] Error 2
    make[1]: Leaving directory `/home/firewalker/Desktop/gcc-avr4.1.1/src/gcc-4.1.1/objdir'
    make: aurpage PKGBUILD [all] Error 2
    I have no idea why it says /home/firewalker.
    I'm a little surprised that the word "arduino" returned with no hits at this forum.
    It was a piece of piss in Ubuntu but i don't want to use that distro anymore.
    Last edited by regomodo (2007-10-17 00:06:12)

    I just got the makefile to work at long last! I followed PenguinFlavored's instuctions to install everything but i was still having problems (I get the feeling that since they posted that makefile they've made a few changes) so I played around with a modified makefile a bit (got it from here: http://www.arduino.cc/cgi-bin/yabb2/YaB … 1187984620 ) and ended up with this:
    # Arduino makefile - Modified again by Stephen Hodgson
    # This makefile allows you to build sketches from the command line
    # without the Arduino environment (or Java).
    # Previous work on this file was done by mellis, eighthave and probably
    # many others.
    # Last State: 28.08.2007 | 15:00 CEST
    # -- oli.keller ][ gmail.com
    # This is a fork of the original makefiles shipped with Arduino 0009.
    # It tries to reassemble the preprocessing which the Arduino IDE does.
    # This makefile even allows to create an automatic reset,
    # like the Arduino IDE does on an Arduino Diecimila board!
    # No no, you don't have to push that tiny button again and again... ;)
    # You should only have to check the first six variables below for
    # propper settings. That's it.
    # Detailed instructions for using the makefile:
    # 1. Copy this file into the folder with your sketch. There should be a
    # file with the ending .pde (e.g. foo.pde)
    # 2. Below, modify the line containing "TARGET" to refer to the name of
    # of your program's file without an extension (e.g. TARGET = foo).
    # 3. Modify the line containg "INSTALL_DIR" to point to the directory that
    # contains the Arduino installation (for Arduino installations in
    # Mac OSX, this could be /Applications/arduino-0009 ).
    # 4. Modify the line containing "PORT" to refer to the filename
    # representing the USB or serial connection to your Arduino board
    # (e.g. PORT = /dev/tty.USB0). If the exact name of this file
    # changes, you can use * as a wildcard (e.g. PORT = /dev/tty.USB*).
    # 5. Set the line containing "MCU" to match your board's processor.
    # Older one's are atmega8 based, newer ones like Arduino Mini, Bluetooth
    # or Diecimila have the atmega168.
    # 6. At the command line, change to the directory containing your
    # program's file and the makefile.
    # 7. Type "make" and press enter to compile/verify your program.
    # In TextMate you can just hit Command-R to trigger make.
    # 8. Type "make upload", reset your Arduino board, and press enter to
    # upload your program to the Arduino board.
    # $Id$
    # project specific settings
    TARGET = blink
    INSTALL_DIR = /usr/share/arduino/hardware/cores/arduino
    # serial uploader settings
    PORT = /dev/ttyUSB0
    UPLOAD_RATE = 19200
    AVRDUDE_PROGRAMMER = arduino
    # HINT: If you want to use the automatic reset feature which comes with Arduino
    # Diecimila, put the follwoing in your avrdude.conf:
    # (Use the systemwide $(INSTALL_DIR)/tools/avr/etc/avrdude.conf or create a
    # local $HOME/.avrduderc file)
    # programmer
    # id = "arduino";
    # desc = "Arduino Serial Bootloader";
    # type = stk500;
    # reset = 7;
    # # since Arduino Diecimila the serial DTR line can be used to trigger a reset!
    # After this you can specify AVRDUDE_PROGRAMMER = arduino, above.
    # On older boards you can manually ad this reset feature. Wire a cable from the
    # FTDI 232 Chip's DTR pin (the number differs from package to package, see datasheet)
    # to the RESET line of the ATmega. Inbetween this connection must be a 100nF capacitor.
    # hardware dependent settings
    MCU = atmega168
    F_CPU = 16000000
    # F_CPU sets the clock speed in Hz. So far its 16MHz on all standard boards.
    # Below here nothing should be changed...
    #I changed this one
    #ARDUINO = $(INSTALL_DIR)/lib/targets/arduino
    ARDUINO = /usr/share/arduino/hardware/cores/arduino
    #and this one
    #AVR_TOOLS_PATH = $(INSTALL_DIR)/tools/avr/bin
    AVR_TOOLS_PATH = /opt/avr/bin/
    SRC = $(ARDUINO)/pins_arduino.c $(ARDUINO)/wiring.c \
    $(ARDUINO)/wiring_analog.c $(ARDUINO)/wiring_digital.c \
    $(ARDUINO)/wiring_pulse.c $(ARDUINO)/wiring_serial.c \
    $(ARDUINO)/wiring_shift.c $(ARDUINO)/WInterrupts.c
    CXXSRC = $(ARDUINO)/HardwareSerial.cpp $(ARDUINO)/WRandom.cpp
    FORMAT = ihex
    # Name of this Makefile (used for "make depend").
    MAKEFILE = Makefile
    # Debugging format.
    # Native formats for AVR-GCC's -g are stabs [default], or dwarf-2.
    # AVR (extended) COFF requires stabs, plus an avr-objcopy run.
    DEBUG = stabs
    OPT = s
    # Place -D or -U options here
    CDEFS = -DF_CPU=$(F_CPU)
    CXXDEFS = -DF_CPU=$(F_CPU)
    # Place -I options here
    CINCS = -I$(ARDUINO)
    CXXINCS = -I$(ARDUINO)
    # Compiler flag to set the C Standard level.
    # c89 - "ANSI" C
    # gnu89 - c89 plus GCC extensions
    # c99 - ISO C99 standard (not yet fully implemented)
    # gnu99 - c99 plus GCC extensions
    CSTANDARD = -std=gnu99
    CDEBUG = -g$(DEBUG)
    CWARN = -Wall -Wstrict-prototypes
    CTUNING = -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
    #CEXTRA = -Wa,-adhlns=$(<:.c=.lst)
    CFLAGS = $(CDEBUG) $(CDEFS) $(CINCS) -O$(OPT) $(CWARN) $(CSTANDARD) $(CEXTRA)
    CXXFLAGS = $(CDEFS) $(CINCS) -O$(OPT)
    #ASFLAGS = -Wa,-adhlns=$(<:.S=.lst),-gstabs
    LDFLAGS = -lm
    # Programming support using avrdude. Settings and variables.
    AVRDUDE_PORT = $(PORT)
    AVRDUDE_WRITE_FLASH = -U flash:w:applet/$(TARGET).hex
    #This got modified as well
    #AVRDUDE_FLAGS = -V -F -C $(INSTALL_DIR)/tools/avr/etc/avrdude.conf -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) \
    # -b $(UPLOAD_RATE)
    AVRDUDE_FLAGS = -V -F -C /usr/share/arduino/hardware/tools/avrdude.conf -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) \
    -b $(UPLOAD_RATE)
    # Program settings
    CC = $(AVR_TOOLS_PATH)/avr-gcc
    CXX = $(AVR_TOOLS_PATH)/avr-g++
    OBJCOPY = $(AVR_TOOLS_PATH)/avr-objcopy
    OBJDUMP = $(AVR_TOOLS_PATH)/avr-objdump
    AR = $(AVR_TOOLS_PATH)/avr-ar
    SIZE = $(AVR_TOOLS_PATH)/avr-size
    NM = $(AVR_TOOLS_PATH)/avr-nm
    AVRDUDE = $(AVR_TOOLS_PATH)/avrdude
    REMOVE = rm -f
    MV = mv -f
    # Define all object files.
    OBJ = $(SRC:.c=.o) $(CXXSRC:.cpp=.o) $(ASRC:.S=.o)
    # Define all listing files.
    LST = $(ASRC:.S=.lst) $(CXXSRC:.cpp=.lst) $(SRC:.c=.lst)
    # Combine all necessary flags and optional flags.
    # Add target processor to flags.
    ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS)
    ALL_CXXFLAGS = -mmcu=$(MCU) -I. $(CXXFLAGS)
    ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS)
    # Default target.
    all: applet_files build sizeafter
    build: elf hex
    applet_files: $(TARGET).pde
    # Here is the "preprocessing".
    # It creates a .cpp file based with the same name as the .pde file.
    # On top of the new .cpp file comes the WProgram.h header.
    # At the end there is a generic main() function attached.
    # The ne .cpp file will be compiled. Errors during compile will
    # refer to this new, automatically generated, file.
    # Not the original .pde file you actually edit...
    test -d applet || mkdir applet
    echo '#include "WProgram.h"' > applet/$(TARGET).cpp
    cat $(TARGET).pde >> applet/$(TARGET).cpp
    echo 'int main(void) '\
    ' init(); '\
    ' setup(); '\
    ' for (;;) '\
    ' loop(); '\
    ' return 0; '\
    '} ' >> applet/$(TARGET).cpp
    elf: applet/$(TARGET).elf
    hex: applet/$(TARGET).hex
    eep: applet/$(TARGET).eep
    lss: applet/$(TARGET).lss
    sym: applet/$(TARGET).sym
    # Program the device.
    upload: applet/$(TARGET).hex
    $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH)
    # Display size of file.
    HEXSIZE = $(SIZE) --target=$(FORMAT) applet/$(TARGET).hex
    ELFSIZE = $(SIZE) applet/$(TARGET).elf
    sizebefore:
    @if [ -f applet/$(TARGET).elf ]; then echo; echo $(MSG_SIZE_BEFORE); $(HEXSIZE); echo; fi
    sizeafter:
    @if [ -f applet/$(TARGET).elf ]; then echo; echo $(MSG_SIZE_AFTER); $(HEXSIZE); echo; fi
    # Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB.
    COFFCONVERT=$(OBJCOPY) --debugging \
    --change-section-address .data-0x800000 \
    --change-section-address .bss-0x800000 \
    --change-section-address .noinit-0x800000 \
    --change-section-address .eeprom-0x810000
    coff: applet/$(TARGET).elf
    $(COFFCONVERT) -O coff-avr applet/$(TARGET).elf $(TARGET).cof
    extcoff: $(TARGET).elf
    $(COFFCONVERT) -O coff-ext-avr applet/$(TARGET).elf $(TARGET).cof
    .SUFFIXES: .elf .hex .eep .lss .sym
    .elf.hex:
    $(OBJCOPY) -O $(FORMAT) -R .eeprom $< $@
    .elf.eep:
    -$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \
    --change-section-lma .eeprom=0 -O $(FORMAT) $< $@
    # Create extended listing file from ELF output file.
    .elf.lss:
    $(OBJDUMP) -h -S $< > $@
    # Create a symbol table from ELF output file.
    .elf.sym:
    $(NM) -n $< > $@
    # Link: create ELF output file from library.
    applet/$(TARGET).elf: $(TARGET).pde applet/core.a
    $(CC) $(ALL_CFLAGS) -o $@ applet/$(TARGET).cpp -L. applet/core.a $(LDFLAGS)
    applet/core.a: $(OBJ)
    @for i in $(OBJ); do echo $(AR) rcs applet/core.a $$i; $(AR) rcs applet/core.a $$i; done
    # Compile: create object files from C++ source files.
    .cpp.o:
    $(CXX) -c $(ALL_CXXFLAGS) $< -o $@
    # Compile: create object files from C source files.
    .c.o:
    $(CC) -c $(ALL_CFLAGS) $< -o $@
    # Compile: create assembler files from C source files.
    .c.s:
    $(CC) -S $(ALL_CFLAGS) $< -o $@
    # Assemble: create object files from assembler source files.
    .S.o:
    $(CC) -c $(ALL_ASFLAGS) $< -o $@
    # Target: clean project.
    clean:
    $(REMOVE) applet/$(TARGET).hex applet/$(TARGET).eep applet/$(TARGET).cof applet/$(TARGET).elf \
    applet/$(TARGET).map applet/$(TARGET).sym applet/$(TARGET).lss applet/core.a \
    $(OBJ) $(LST) $(SRC:.c=.s) $(SRC:.c=.d) $(CXXSRC:.cpp=.s) $(CXXSRC:.cpp=.d)
    depend:
    if grep '^# DO NOT DELETE' $(MAKEFILE) >/dev/null; \
    then \
    sed -e '/^# DO NOT DELETE/,$$d' $(MAKEFILE) > \
    $(MAKEFILE).$$$$ && \
    $(MV) $(MAKEFILE).$$$$ $(MAKEFILE); \
    fi
    echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' \
    >> $(MAKEFILE); \
    $(CC) -M -mmcu=$(MCU) $(CDEFS) $(CINCS) $(SRC) $(ASRC) >> $(MAKEFILE)
    .PHONY: all build elf hex eep lss sym program coff extcoff clean depend applet_files sizebefore sizeafter
    It seems to work with Arduino 0010 but it wants to be run as root. Maybe I'll get that sorted at some point if it's easy to do.

  • My music files etc were all located on my old laptop which was stolen. I have just plugged my iphone in to my new computer and it has deleted all my files. Has anybody got any ideas on how to retrieve the files?

    My music files etc were all located on my old laptop which was stolen. I have just plugged my iphone in to my new computer and it has deleted all my files. Has anybody got any ideas on how to retrieve the files?

    WINDOWS?
    Connect the iPod to your PC. If iTunes starts syncing (ie erasing) your music automatically, hit the X in the upper right hand corner of iTunes display, to the left of the search box, to stop it.
    In Control Panel, Portable Media Devices, double-click your iPod.
    In the Tools menu -> Options, in the View Tab, check "Show hidden files and folders."
    Navigate to the Music folder. On my 'pod, the full path is
    Portable Media Devices\NAME of IPOD (F:)\iPod_Control\Music
    Select all the music folders, and drag and drop them into a folder on your hard drive, or directly into iTunes.
    And you're done! The iPod music folder structure is strange and inexplicable, but once you move your files into iTunes you can set it to automatically organize your folder by artist and album to clean that up. (To do this, in iTunes Edit menu, choose Preferences and in the Advanced tab, check "Keep iTunes Music Folder organized."
    might be out of date worth a try

  • Nation advanced search on my IMac, which I think is a spyware. When I want wo go to google chrome it redirects me to this ominous nation search engeen. Has anybody got some information about it and how I can get rid of

    I just caught a thing called nation advanced search on my iMac computer, which I think is a spyware. When I want wo go to google chrome it redirects me to this ominous nation search engeen. Has anybody got some information about it and how I can get rid of it? What does can it do to my data and is it really a spyware? I just found information in youtube, that it is a spyware, and that it has to be removed, but the information they give for the removal is just working for PCs not for Macs.
    Please help!

    Thank you all for the friendly assistance provided.
    I have found a solutiton to the problem I was having.  I hope that many more can benefit from the information I will provide.
    I started at Finder, then went to GO selected COMPUTER and then Machintosh HD, then Library, Scripting Additions folder and trashed all that was there. This is what worked for me, if you choose to not delete your content its up to you.  Happy Computing.
    God Bless!!
    This solved my question 

  • Info regarding Diswarrior 4 and Leopard compatibility

    I emailed Alsoft regarding Diskwarrior 4 and Leopard compatibility. Here is the response I got.
    +DiskWarrior 4.0 will successfully rebuild a disk that has Mac OS X 10.5+
    +Leopard installed or a disk that has been attached to a computer running+
    Leopard.
    +However, some operating system functionality has changed within Leopard+
    +itself. As such, there are some compatibility issues when running an+
    +installed copy of DiskWarrior 4.0 while started up from Mac OS X 10.5+
    +Leopard. Alsoft currently recommends that you do not run DiskWarrior 4.0+
    +while the computer is started from Mac OS X 10.5 Leopard.+
    +Instead, to run DiskWarrior, you should start up the computer from either:+
    +1) A DiskWarrior 4.0 CD.+
    +2) Any disk that starts up in 10.4.x and then run DiskWarrior 4.0.+
    +An updated version of DiskWarrior that has complete Leopard+
    +compatibility will be released soon as a free download for existing+
    +owners of DiskWarrior 4.0.+
    +-- What you can expect when running DiskWarrior 4.0 under Mac OS X+
    +10.4.x and rebuilding a Leopard disk.+
    +All features work as expected with one exception: FileVaults created+
    +while started from Leopard are not visible to DiskWarrior 4.0 and cannot+
    +be rebuilt (repaired).+
    +-- What you can expect when running DiskWarrior 4.0 under Mac OS X 10.5+
    +and rebuilding a Leopard disk.+
    +While not recommended (and discouraged), if you do run DiskWarrior 4.0+
    +while started from Mac OS X 10.5 you might encounter some problems such as:+
    +1) There is a lengthy delay whenever DiskWarrior is determining which+
    +drives are currently attached. This delay is dependent upon the number+
    +of attached drives and may last up to 2 or 3 minutes. You will+
    +experience this delay when first starting DiskWarrior, whenever a disk+
    +is attached or detached while DiskWarrior is running but idle, and+
    +whenever a rebuild is completed or canceled.+
    +2) You cannot rebuild FileVaults or disk images.+
    +3) In step 9 (comparing directories) of a rebuild, the progress bar+
    +might get to 100% even though the comparison step is not finished.+
    +4) When performing Check All Files and Folders the progress bar might+
    +get to 100% even though the check is not finished.+
    +5) After rebuilding a disk, DiskWarrior may report that some files or+
    +folders have had their permissions changed. This is inaccurate and the+
    +permissions have not been changed.+
    +To repeat, an updated version of DiskWarrior that has complete Leopard+
    +compatibility will be released soon as a free download for existing+
    +owners of DiskWarrior 4.0.+
    +-- What about DiskWarrior 3?+
    +DiskWarrior 3 and earlier versions are not compatible with Mac OS X 10.5+
    +(Leopard). Alsoft does not recommend running DiskWarrior 3 or earlier on+
    +a disk that has Mac OS X 10.5 Leopard installed or a disk that has been+
    +attached to a computer running Leopard.+
    +-- Marc+
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    +Marc Moorash, Alsoft Technical Support+
    +Email: [email protected]+
    So, it seems it will work but you need to run it from the disk or if you have it installed on a external drive running Tiger, it will work.
    Thom

    If you open your Tiger Address Book, select all cards, drag them to the desktop, it will make one big "mega-VCF" card with a name like "Alan Adams and 543 others.vcf" Dump that to a flash drive or email it to yourself, then doubleclick on it on the Leopard machine. They will all import just fine into your Leopard Address Book.
    Try doing something similar with your iCal data, Open the application, choose your calendars one at a time, and select File > Export. That should make a big "mega-ics" calendar card with a name like "work.ics" or "home.ics, i.e., "originalcalendarname.ics" with all the events of that calendar. Then same drill: dump that to a flash drive or email it to yourself, then doubleclick on it on the Leopard machine.
    Both generation methods create text files, which should import just fine into the Leopard applications.

  • Has anybody got their 808 to work on Consumer Cell...

    Has anybody got their 808 to work on Consumer Cellular?
    Consumer Cellular uses the AT&T network.
    My phone works making or answering phone calls.
    I can access the internet from Wi-Fi.
    But I cannot access the internet from 3G.
    Consumer Cellular emailed the settings to my phone.
    I saved them and made them the default.
    I re-booted my phone.
    But I get “Connection failed.  Connection unavailable.”

    Have Consumer Cellular send you a configuration text message.
    When you open the text message:
    Your Pin Code is the last 4 digits of your phone number
     select SAVE from Options
    Set as Default Settings? Yes
    Then:
    Settings
    Connectivity
    Settings
    Network Destinations
             (you can copy to another destination, change Priority, etc.)
    Internet
       your home Wi-Fi
       ConsumerCellular
    WAP Services
       your home Wi-Fi
       ConsumerCellular
    If you see AT&T anywhere, delete it.
    Moderator's notes: You can get the micro SIM card from your operator, it is not advisable to cut it yourself as it may not work or cause damage to the device.

  • Has anybody got a labview driver for Lecroy 9410 ?

    Has anybody got a labview driver for Lecroy 9410 ?

    Unfortunately I was unable to find a driver for this instrument either. This leaves you with one of a couple options. First, I would like you to submit a request for this driver at:
    http://zone.ni.com/idnet/other.htm
    We develop drivers based on demand and popularity so the more requests we have for it, the greater the possibility that we will develop one.
    If you would like to try developing your own instrument driver (or modify the existing one), we have documentation, model instrument drivers, and driver templates to help at :
    http://zone.ni.com/idnet/development.htm
    We also have a syndicate of third party vendors that specialize in National Instruments' products and services. Some of the vendors specialize in driver development. I would sugges
    t contacting one of the Alliance members at:
    http://www.ni.com/alliance
    If you have any further queries, please let me know

  • Has anybody got soda snap ??

    has anybody got soda snap ??
    i think its quite good its just that the postcards don't save into my photo album like they should has anybody else got it to work ???
    cheers

    I have it and it is working fine, if you take a photo with the camera to send in a post card it saves it to my photos...the picture not the whole post card.
    Now there is a setting you have to select under the settings for this app.
    Hope this helps you.
    Whit

  • TS1702 Hi there! Am I alone having troubles with kids' app Little Pets Shop? Crazy invoices with €89,99 the "Wonderful Mountain"!! Has anybody got an idea? Thanks a lot

    Hi there! Am I alone having troubles with kids' app Little Pets Shop? Crazy invoices with €89,99 the "Wonderful Mountain"!! Has anybody got an idea? Thanks a lot

    One of your kids made an in app purchase that you did not know about. Some apps include in app purchase and games do this quite often. The game itself is free, but you might have to purchase additional items to enhance the game or to unlock certain levels.
    You can prevent this from happening in  Settings>General>Restrictions>In App Purchases>Off.

  • HT204053 If I have an apple ID for myself and my wife has just got a iPhone for the first time how can she get the same apps as I have for my iPhone and iPad

    If I have an apple ID for myself and my wife has just got a iPhone for the first time how can she get the same apps as I have for my iPhone and iPad by getting it off my iCloud?

    She can't from iCloud without setting up your iCloud account on her phone. But just sync the same apps from your iTunes Library on your computer to her phone.
    Your wife should setup her own iCloud account - which is separate to the iTunes Store accounts.

  • I clicked on Sky go app to install on Sat .It is now Monday night and the app Icon is greyed out and displaying "waiting". Anybody got any ideas?

    I clicked on Sky go app to install on Sat .It is now Monday night and the app Icon is greyed out and displaying "waiting". Anybody got any ideas?

    Often, rebooting, or deleting the waiting app and re-installing, will do the trick.
    Matt

  • Has anyone got NVrotate to work under Win98SE?

    I installed the latest driver for this card for Win98
    NVrotate is not available as an option in Win98SE
    Display properties-->settings -->GeForce FX5200
    I temporarily moved a drive with WinXP Pro onto this machine.
    NVrotate is an available option in
    Display properties-->settings -->GeForce FX5200
    and works fine.
    But for various compatibility reasons this machine has to been running Win98SE.
    Has ANYONE got NVrotate to work under Win98 ??????
    MSI FX5200  TD128
    Gigabyte GA-7VAX
    AMD 2400+
    17" Analog LCD & 18.1" Analog LCD

    I managed to get it to work, you have to install two files
    the first for the actual python script files.
    the second for the user interface.
    you might have installed the user interface, but without installing python, and that's why its not loading up the application, also make sure you install python to phone memory.
    On my N96 I installed:
    Python for S60 1.4.4
    Python script shell 1.4.4
    if you get an 'update error' when installing its because you have not un-installed all of the old python stuff, open app manager on the handset and un-install all python relating files
    one last thing, install python and the shell to the phone memory (c drive)
    Hope it helps
    Tony

  • Anybody got a better work flow for backing up multiple shoot day projects?

    Many of my projects are shot over multiple days. I import media at the end of each day and back up the event to another drive before deleting media from cameras/cards. So on day 2 I have one of three work flows for updating my back-ups.
    1. If I'm feeling lucky. I delete the previous back-up project from the back-up drive. And then make a new copy of the original event and add the date to the title after the word copy.
    2. I make a new copy of the event to the backup drive and date it. When it's done copying and been verified I delete the back-up event from the same back-up drive.
    3. I've just started copying new clips from the original media folder in the original event to the back-up project. It's more work keeping track of all the newly added media files and there is more chance of making an ommision.
    Anybody got a better work flow for backing up multiple shoot day projects?

    What you need:
    You will need two identical external drives and a copy of Carbon Copy Cloner. CCC is free. The drives could be USB 2 if all you are doing is backing up. If you plan on editing with the drive(s), you'll want firewire. Each needs to be large enough to contain the raw card contents for the duration of your gig.
    The Process:
    At the end of the first day's recording, connect the two drives to your computer (if firewire, daisy chain them / if USB, you'll need two USB 2.0 ports)
    On the first hard drive (Drive 1) create a folder - call it BigDealLecture
    Inside of BigDealLecture, create a folder and use the nameing convention  "BDL_Date_card number for that day" - so if you used 2 cards today, you should create BDL_2012-02-15_01 and BDL_2012-02-15_02
    Attach your card reader or camera to the system.
    Lock the cards so they can not be erased
    Insert Card 1 into the reader
    Select ALL contents of the card and copy them to the folder you created for the first card for today
    When it is complete, eject the card, insert card 2, copy its contents to the folder for card 2
    eject the card
    Launch CCC and do a clone of Drive 1 to Drive 2. You can set it to do a complete block by block clone or an incremental backup. Either will work.
    When finished cloning, test a random sample of the clips on both drives to make sure they work.
    When satisfied the copies work, put Drive 2 in the hotel safe.
    Put the Drive 1 in a place where you can grab it if there is an emergency in the night and erase the cards to get ready for the next day.
    Take Drive 1 with you to the lecture site the next day.
    Rinse and repeat daily.
    When the conference is over, send one of the drives via FedEx or some other same day service to your office. Pack the second drive in your bags for the trip home.
    A note: If you have enough downtime durning the conference between obligations, you can do the transfer from the cards to Drive 1 on site and do the clone when you get back to your room. Don't unlock and erase the cards until you are satisfied the copy/clone process was without incident.
    Have fun.
    x

Maybe you are looking for

  • How to add a new line in SMS(Line Break).

    Hi All, I need to send SMS from PL\SQL Procedure The problem i have been facing is that the string being passed in as sms content is not parsing a newline character. It shows all content in one line. I need to break them in several lines. Give me a d

  • DVD from iDVD won't mount

    I made a project in iDVD, burned it and now it doesn't show up (mount) on my desktop when I try to view it on my iBook. But it DOES play in a regular DVD player. Anyone have an idea why? Thanks in advance. Randy

  • How to include not due invoices in payment run

    Hi Gurus, Good day. Kindly advice how we can include invoices that are not due in the payment run to avail discounts. Thanks in advance.

  • 64-bit compilation problem on Solaris/Intel: 7th argument not initialized

    I have a problem when compiling a program on a 64-bit Solaris Intel server. The problem is that when calling a function, if the 7th or next arguments are long arguments and I pass uncasted small integers values to it, the first 32-bit of my values ar

  • How do you call a JavaScript function from a Java applet

    I have an Applet that needs to run on the following platforms: Internet Explorer (Windows-NT, Windows -2000), Netscape (Windows-NT, Windows-2000, Sun(Solaris), RedHat(Linux), HP(11.0), IBM(AIX)). The Applet needs to call a JavaScript function that is