Wildcards in 3rd party script

I am trying to adapt a 3rd party calendar script for
operation on my PHP
site. I'm guessing that the script was writted for use with
Access or
something besides MySQL since it uses "*" as a wildcard in
the SQL (which I
can fix). But it also uses that wildcard in the body, e.g.,
if (($val['day'] == $cellValue) && (($val['month']
== $this->month) ||
($val['month'] == '*')) && (($val['year'] ==
$this->year) || ($val['year']
== '*'))) {
How do I patch that - or do I even need to?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================

Oh - I see. I thought it was a rather strange usage myself!
Hmmm....
OK - I'm going to have to look harder to see why I'm getting
an error here -
http://development.bayleys.com/test-calendar.php
The referenced line is contained in this block -
<?php
class CreateQCalendarArray {
var $daysInMonth;
var $weeksInMonth;
var $firstDay;
var $week;
var $month;
var $year;
var $counter;
function CreateQCalendarArray($month, $year) {
$this->month = $month;
$this->year = $year;
$this->week = array();
$this->daysInMonth =
date("t",mktime(0,0,0,$month,1,$year));
// get first day of the month
$this->firstDay = date("w",
mktime(0,0,0,$month,1,$year));
$tempDays = $this->firstDay + $this->daysInMonth;
$this->weeksInMonth = ceil($tempDays/7);
$this->fillArray();
function fillArray() {
// create a 2-d array
for($j=0;$j<$this->weeksInMonth;$j++) {
for($i=0;$i<7;$i++) {
$counter++;
$this->week[$j][$i] = $counter;
// offset the days
$this->week[$j][$i] -= $this->firstDay;
if (($this->week[$j][$i] < 1) ||
($this->week[$j][$i] >
$this->daysInMonth)) {
$this->week[$j][$i] = "";
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"David Powers" <[email protected]> wrote in message
news:[email protected]...
> Murray *ACE* wrote:
>> So, the "*" syntax is correct in PHP?
>
> No. I'm just commenting that the conditional statment is
rather
> meaningless. If * means anything, the condition boils
down to this in
> plain language:
>
> If the day is the same as the submitted value AND the
month is either this
> month or any other month AND the year is this year or
any other year.
>
> If any month and any year are acceptable, all that's
being checked is
> whether the day is the same as $cellValue.
>
> --
> David Powers, Adobe Community Expert
> Author, "The Essential Guide to Dreamweaver CS3"
(friends of ED)
> Author, "PHP Solutions" (friends of ED)
>
http://foundationphp.com/

Similar Messages

  • Any 3rd party scripts or scripters for RH9?

    I have a training client who uses RH9 and who has some project needs that would lend themselves well to scripting. However, none of the scripts that ship with RH9 will do the trick and the scripts that I've found on Peter Grainge's and Willem van Weelden's sites, aren't what he needs. Are there any other sources of scripts for RH9, or is anyone on this list doing 3rd party script development?
    Thanks,
    Neil Perlin

    Hi Neil
    Can you provide some detail on what is needed?
    I'm aware you don't frequent here so you are likely unaware that often we see engineers from Adobe that will offer a script to accomplish a task. So perhaps if you could advise what is needed you might find that a script would be offered.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • One thing still buggin me with MUSE ... 3rd party script insertion/addition/injection ...

    I like to push MUSE to the limit with designs and the use of JAVA scripts but one thing still prevents webpages from loading properly (and without getting a ton of errors), is the way MUSE adds 'my' additinal scripts to it's already compiled HTML page(s) ...
    Errors include:
    MuseJSAssert: Error calling selector function:TypeError: jQuery.browser is undefined
    I always get an error because 'my' additional scripts are being inserted at the top section of the <head> section and so they get called before the MUSE scripts, which in turn causes the errors ...
    I would like to see a nice way to extend the use of injected JAVA scripts ... these would be placed right at the very end of the HTML pages and just before the </body> tag ... we all know that's where they should reside as MUSE hates other scripts being called before it has finished calling its own ... at the moment I (and I'm sure others) have to edit each page, after an update, to place 'our' scripts just before the </body> tag ... this does work wonders and I have never had an error by doing it this way ...
    I have had quite a few scripts that will not run, without giving an error and this confuses the hell out of me that something so simple needs to be added ...
    Possible Solution:
    A similar box/window, like the HTML for <head>: which is already in the (Master page) Page properties but with the addition of another box/window called (something like) HTML for end of <head>: ... this would give us the option to paste in our own Java scripts (plus others) that would then be inserted at the very end, after ALL the MUSE scripts & code that have already been added by MUSE itself ...
    cheers,
    Gem

    Might sound stupid, but do you have php-fpm running?
    Means, is there a php-fpm process on your box, and does the socket exist like in:
    └» ps -ef|grep php-fpm
    root 3045 1 0 Mär04 ? 00:00:09 php-fpm: master process (/etc/php/php-fpm.conf)
    http 13534 3045 0 18:22 ? 00:00:10 php-fpm: pool www
    http 13545 3045 0 18:22 ? 00:00:08 php-fpm: pool www
    http 22807 3045 0 19:46 ? 00:00:01 php-fpm: pool www
    tom 27863 28055 0 20:16 pts/1 00:00:00 grep --colour=auto php-fpm
    └» ls -l /run/php-fpm/php-fpm.sock
    srw-rw---- 1 http http 0 4. Mär 22:24 /run/php-fpm/php-fpm.sock
    EDIT: somehow missed your output regarding the php-fpm socket. Ignore above then, I have no idea about chroot, I use LXC.
    Last edited by teekay (2013-03-07 19:24:04)

  • Using 3rd party binary in script that is run as job

    Hi all,
    I have several scripts to do various tasks with IIS logs we receive from all our various web servers.  One script unzips logs, another logparses to grab a few fields then sftp to a 3rd party for analysis, another will encrypt the original zip files
    in prep for ftp to 3rd party, another will ftp to that 3rd party, and yet another will analyse the logs with our in house analytiscs application.
    I want to have a master script that will run these other scripts as jobs so that it will control when to start certain scripts based on the state of the jobs.  It all seemed to work great as I was setting up test jobs, until I added '3rd' party executables
    like 7-zip, ftp.exe, winscp, etc...  The jobs would just go to failed state when they hit the executables.
    That's not my current problem though as I found out that if I used the
    -windowstyle hidden option for start-process then everything ran as expected, that is until I wanted to log output from the 3rd party app.  FTP for example.
    I tried this:
    $ftpexe = "C:\windows\System32\ftp.exe"
    $ftpscr="d:\scripts\ftpscrtmp.txt"
    "open 111.1.1.1`r`nSomeFTPuser`r`nSomepassword <..bunch of other ftp commands>" | Out-File -FilePath $ftpscr -Append -Encoding "ASCII"
    start-process -wait -filepath $ftpexe -argumentlist $ftparglist  -RedirectStandardOutput $ftplog -windowstyle hidden
    However, asking powershell to redirect output of a hidden window was probably like asking someone to cover their eyes and read a book and it let me know it.
    I have tried without using -windowstyle hidden and not having any luck.  I want to capture the output of the ftp commands so that I can make sure the file was transferred successfully.  If I run the script without -windowstyle hidden and not as
    a job it works, and I can test the output.  I really want to be able to run this script as a job AND get the output of the ftp to a file... advice?
    Thanks in advance!

    This works with no problem for me.
    Start-Process -wait -filepath ftp.exe -argumentlist  '-s:c:\scripts\ftpcmd.txt' -RedirectStandardOutput c:\scripts\ftp.log
    I get no window and the file gets written.
    This is my ftp command file:
    open ftp.microsoft.com
    anonymous
    [email protected]
    ls
    bye
    ¯\_(ツ)_/¯

  • Scripts interface to 3rd party tools ????????

    Hello Gurus,
    I have a requirement wherein my client wants the SAP scripts developed to be inerfaced or transfered to a 3rd party tool called ''Streamserve'' and from there he chooses his own output media such as hard print,fax,email.
    Could anyone please guide me how do I transfer the SAP SCRIPT data to streamserve.what are the steps ? procedures ? FM's?
    Thanks,
    Regards,
    Venky

    I would like to link 9i OLAP data to 3rd party tools like Formula One or other Java Report Writers. Can this be done using infobus or other technologies? Does 9i OLAP services act as an infobus data provider?
    Has anyone done this? If so can an example be provided?
    Thanks InfoBus is a Java standard for dynamic data interchange. The Oracle9i OLAP API does not act as an InfoBusDataProvider. It's compatible but not supported. Also, InfoBus has been determined not well suited for multidimensionality.
    BI Beans actually has some code in its Query object to act as an InfoBusDataProvider, but it is hidden due to inadequate testing and review, plus there is a perception that there is a lack of strong interest in this feature.
    So the short answer is that OLAP API and BI Beans do not provide InfoBus support. If there is a public outcry for InfoBus support, Oracle OLAP would consider it as a feature for a future release.
    As for another technology to link Oracle9i OLAP data to 3rd party tools like Formula One or other Java Report Writers, I'll look into it and report back.

  • Sending call to 3rd party VRU from ICM Script

    Integrating ICM Script with 3rd party VRU using GED-125 interface. I am having trouble to send the call from Cisco CM to 3rd party VRU. Trying Send to VRU node but it is not clear how to pass the destination for 3rd party VRU.
    Any feedback would be helpful.

    Move this to contact center forum to get better response.
    Here: https://supportforums.cisco.com/community/5926/contact-center
    -Terry

  • Clusterware 10g: what kicks off 3rd-party failover script?

    I am trying to use Oracle Clusterware 10g (installed on two identical Dell Linux boxes,
    OEL 5.2) to failover a 3rd-party application, specifically websphere MQ. I have a ksh
    script that is supposed to start/stop/restart the application.
    Clusterware will fail over the IP address fine to the other box if I yank the primary box's
    cable, but the app itself doesn't fail over. If I knew what (in Clusterware) did the
    "kicking off" of the ksh script I could troubleshoot it more. I used the instructions in:
    http://www.oracle.com/technology/products/database/clusterware/pdf/TWP-Oracle-Clusterware-3rd-party.pdf
    and I'm pretty sure I did it right.
    Any ideas?

    Here is the action script:
    #!/bin/ksh
    LOG="/san1/var/mqm/config/Controlmq.log"
    echo "script started at `date` from `hostname`" >> $LOG
    ############################### func_stopMQ ######################################
    func_stopMQ () {
    QUEUENAME=$1
    while [[ `ps -ef | grep $QUEUENAME | grep -v grep | grep -v Control| awk {'print $2'} | wc -l` -gt 1 ]]
    do
    echo "DEBUG : `ps -ef | grep $QUEUENAME | grep -v grep | grep -v Control` " >> $LOG
    echo "there are `ps -ef | grep $QUEUENAME | grep -v grep | grep -v Control| awk {'print $2'} | wc -l` processes running associated with $QUEUENAME on `hostname`" >> $LOG
    endmqm $QUEUENAME
    endmqlsr -m $QUEUENAME
    ## echo "sleeping for 10 seconds before checking again"
    sleep 10
    done
    ## echo "All set, there are no processes associated with $QUEUENAME "
    echo "stopped $QUEUENAME at `date` from `hostname`" >> $LOG
    return 0
    ################################ func_startMQ ######################################
    func_startMQ () {
    QUEUENAME=$1
    case $QUEUENAME in
    MECM|MEQM)
    PORT=1414
    MEQA|MEQB)
    PORT=5077
    esac
    ## echo "starting $QUEUENAME"
    strmqm $QUEUENAME
    sleep 5
    ## echo "STARTING listener for $QUEUENAME"
    runmqlsr -t tcp -p $PORT -m $QUEUENAME &
    sleep 5
    runmqsc $QUEUENAME < /san1/var/mqm/config/startCH_$QUEUENAME.DEF
    echo "started $QUEUENAME at `date` from `hostname`" >> $LOG
    return 0
    ################################ func_checkMQ ######################################
    func_checkMQ () {
    QUEUENAME=$1
    PROCESSCOUNT=`ps -ef | grep $QUEUENAME | grep -v grep| grep -v Control| awk {'print $2'} | wc -l`
    if [ $PROCESSCOUNT > 1  ]
    then
    echo "there are $PROCESSCOUNT processes associated with $QUEUENAME" >> $LOG
    echo ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::" >> $LOG
    echo "Status of $QUEUENAME : " >> $LOG
    runmqsc $QUEUENAME < /san1/var/mqm/config/ChannelStatus.DEFS
    return 0
    else
    echo "there are $PROCESSCOUNT processes associated with $QUEUENAME" >> $LOG
    echo ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::" >> $LOG
    echo "Status of $QUEUENAME : " >> $LOG
    runmqsc $QUEUENAME < /san1/var/mqm/config/ChannelStatus.DEFS
    return 1
    fi
    ACTION=$1
    # QUEUENAME=$2
    case $ACTION in
    start)
    ## func_startMQ MECM
    ## func_startMQ MEQA
    func_startMQ MEQM
    func_startMQ MEQB
    stop)
    ## func_stopMQ MECM
    ## func_stopMQ MEQA
    func_stopMQ MEQM
    func_stopMQ MEQB
    check)
    ## func_checkMQ MECM
    ## func_checkMQ MEQA
    func_checkMQ MEQB
    echo "Sorry, the proper usage for this command is ControlMQ.sh start|stop|check"
    exit
    esac

  • Adobe Muse form with 3rd party host is not working

    I have uploaded a form with Adobe Muse to a 3rd party host.  Upon testing the link scripts/form_check.php, I see 3 green checkmarks.  Upon testing the form, the form appears to submit successfully, however I never receive the email.
    I checked with the hosting company and this is what they said:
    ...this form is using localhost smtp of webserver which was stopped due to spamming issues...actually, localhost doesn't have proper rDNS record and the return path for all mails is the server itself, so whenever a client uses its domain for spamming the server's mail queue gets choked and creates issues for others. So we generally do not open localhost smtp and recommend users to use proper SMTP Authentication so that each mail will be delivered and won't create issues for server even if someone does spamming because in that case all mails will bounce back to the mailbox.  So, we recommend you to use smtp authentication in the form and use proper smtp details to send mail.
    Please provide a recommendation on what I should do to resolve this?  Is there a way to modify the form so that it uses proper SMTP Authentication instead of Localhost?

    Hi
    Please refer to this document :
    https://forums.adobe.com/docs/DOC-3581
    Thanks,
    Sanjit

  • Issues with Form printing using a 3rd party software!!!!!!!!!!!!!!!11

    Hi All,
    We are printing our month end AR statements using Xerox DP100 printers. We are using a SAP Script as the layout form. Everything works perfectly alright when a direct print is issued to the printer. But the scenario here is the statements are sent to a 3rd party software so that the statements can be saved in their repository and made available to be viewed and printed whenever necessary. Now the issue is when this 3rd Party Software(TPS) reads the SAP generated PCL from its report store on the unix host and generates a PDF File that it presents to the web client user for (re)printing via his/her PC it appears that the TPS or Websphere or Adobe is performing a font substituion - replacing the Univers font(used in R/3) which is not loaded on the unix host with a different font(with different sizing and/or behavior).
    As a result the horizontal and vertical positioning generated by SAP(which is correct for the Univers font) is 'wrong' for the substituted font. The fixed size fields print OK but gradually move to the right. The varying size amount columns do not align correctly and fall off the right side of the page.
    Can anyone give me pointers on what can be done to arrest this error.
    Does the font need to be loaded on the unix host or the font used in the form be changed?
    Regards,
    Karthik

    Karthik,
              Sap script behaves differently for different printers. You will have to change margins when you change your printer/software accordingly.

  • Upgrade to Windows 8.1 Pro Update 1 and it killed all my 3rd party drivers

    Hoping someone can help - my PC upgraded Windows 8.1 Pro (fresh install a few months ago) with the 'Update 1 patch' which was made available a few days ago.  It was done via Windows Update - I let it do its thing for about 15 minutes, restart etc.
    Once the machine restarted, I noticed the following:
    - no network connection
    - no sound
    - no working camera
    I went to the device manager and see a stack of 3rd-party devices with exclamation marks, all stating code 28 (the drivers for this device are not installed).  I go to each device and try to update the drivers - it looks like its going to work and then
    gives the error "The system cannot find the file specified".
    I do some googling and find the setupapi.dev.log.  The log for every device with a problem reads like this:
    >>>  [Device Install (DiShowUpdateDevice) - HDAUDIO\FUNC_01&VEN_10EC&DEV_0900&SUBSYS_1043859D&REV_1000\4&83A6FBB&0&0001]
    >>>  Section start 2014/04/12 01:23:46.588
          cmd: "C:\Windows\system32\mmc.exe" C:\Windows\system32\devmgmt.msc
         dvi: {DIF_UPDATEDRIVER_UI} 01:23:46.608
         dvi:      No class installer for 'Audio Device on High Definition Audio Bus'
         dvi:      Default installer: Enter 01:23:46.647
         dvi:      Default installer: Exit
         dvi: {DIF_UPDATEDRIVER_UI - exit(0xe000020e)} 01:23:46.686
         ndv: {Update Driver Software Wizard for HDAUDIO\FUNC_01&VEN_10EC&DEV_0900&SUBSYS_1043859D&REV_1000\4&83A6FBB&0&0001}
    !!!  ndv:      Driver package import failed for device.
    !!!  ndv:      Error 2: The system cannot find the file specified.
         ndv:      Installing NULL driver.
         dvi:      {Plug and Play Service: Device Install for HDAUDIO\FUNC_01&VEN_10EC&DEV_0900&SUBSYS_1043859D&REV_1000\4&83A6FBB&0&0001}
    !    ndv:           Installing NULL driver!
         dvi:           {DIF_ALLOW_INSTALL} 01:23:48.883
         dvi:                No class installer for 'Audio Device on High Definition Audio Bus'
         dvi:                No CoInstallers found
         dvi:                Default installer: Enter 01:23:48.883
         dvi:                Default installer: Exit
         dvi:           {DIF_ALLOW_INSTALL - exit(0xe000020e)} 01:23:48.884
         dvi:           {DIF_REGISTER_COINSTALLERS} 01:23:48.884
         dvi:                No class installer for 'Audio Device on High Definition Audio Bus'
         dvi:                Default installer: Enter 01:23:48.885
         dvi:                Default installer: Exit
         dvi:           {DIF_REGISTER_COINSTALLERS - exit(0x00000000)} 01:23:48.885
         dvi:           {DIF_INSTALLDEVICE} 01:23:48.885
         dvi:                No class installer for 'Audio Device on High Definition Audio Bus'
         dvi:                No CoInstallers found
         dvi:                Default installer: Enter 01:23:48.886
    !    dvi:                     Installing NULL driver!
         dvi:                     Install Null Driver: Removing device sub-tree. 01:23:48.887
         dvi:                     Install Null Driver: Removing device sub-tree completed. 01:23:48.890
         dvi:                     Install Null Driver: Restarting device. 01:23:48.892
         dvi:                     Install Null Driver: Restarting device completed. 01:23:48.892
         dvi:                     Install Device: Starting device. 01:23:48.892
         dvi:                     Install Device: Starting device completed. 01:23:48.893
         dvi:                Default installer: Exit
         dvi:           {DIF_INSTALLDEVICE - exit(0x00000000)} 01:23:48.894
         ump:      {Plug and Play Service: Device Install exit(00000000)}
         ndv: {Update Driver Software Wizard exit(00000002)}
    <<<  Section end 2014/04/12 01:23:50.286
    <<<  [Exit status: FAILURE(0x00000002)]
     It seems like 'update 1' as crapped all over my driver store.
    What can I do to fix this - I have tried a raft of things such as pnputil commands to add the driver INFs manually (they fail saying 'element not found'), but still I am stuck without sound, network and camera.
    This will be the last time I let Microsoft update automatically install - it will now be 100% manual, and done after a few weeks to ensure there aren't bugs.

    espero y te sirva este link :)
    http://blogs.itpro.es/octaviordz/2014/04/05/actualizar-de-windows-8-1-2012r2-a-windows-8-1-ws2012r2-update-con-script-de-powershell/
    Freelance-IT http://www.freelance-it.com.mx

  • Error msg is generated when attempt to crop a TIF that included a 3rd party filter (Win7 Pro SP1)

    Error msg is generated when attempt to crop a TIF that included a 3rd party filter not on
    local machine. (Windows 7 Professional SP1)
    1. File created in CS5 with third party filter applied to smart object (filter:Neat Image
    published by ABSoft.)
    2 Transfer to another computer that does not have the filter installed.
    3. Open in Photoshop CS6.
    4. Use crop tool to attempt to crop the photo.
    5. Receive error message "Could not complete the command because of a program
    error."
    6. Crop completes and can be saved, but filter is disabled and cannot be enabled unless
    moved back to original computer.
    Expected result should be:
    Allow filter to be enabled as CS5.  Or message similar to message produced with
    missing font.
    Adobe Photoshop Version: 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer,
    SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 1995 MHz
    Built-in memory: 6051 MB
    Free memory: 2949 MB
    Memory available to Photoshop: 5290 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GT 540M/PCI/SSE2
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1366
    Video Card Number: 1
    Video Card: NVIDIA GeForce GT 540M  
    OpenCL Unavailable
    Driver Version: 8.17.12.6744
    Driver Date: 20110301000000.000000-000
    Video Card Driver:
    nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode:
    Video Card Caption: NVIDIA GeForce GT 540M  
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\wayne\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 450.2G, 387.4G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64
    Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1642  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   5,0,10,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012
    18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build
    gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build
    gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0;
    BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112  
    0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Collada 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Maximum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mean 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Measurement Core 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Median 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mezzotint 13.0
       Minimum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       MMXCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Picture Package Filter 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Range 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Skewness 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Sumi-e 13.0
       Summation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Variations 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       WIA Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    See if you can troubleshoot Safari extensions and third party plugins before Safari crashes.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test. If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, try troubleshooting third party plug-ins.
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.

  • Translation route to 3rd party IVR

    HI,
    Below is the requirement.
    UCCE  to be integrated with 3rd party IVR.
    3rd party IVR receives the call from the network and when customer requires an agent transfer, this IVR will send the call data to their webservice.
    This webservice will act as an interface between UCCE and 3rd party IVR.
    We proposed the following,
    Install a VRU PG server to interact with this webservice using GED-125.
    When an agent transfer is required, 3rd party IVR would send the required call info along with the call as a DNIS to VRUPG via webservice. Using this DNIS, will trigger an ICM script to receive the call data and will have to use trans route to send the call to agent desktop (CAD) along with the received data.
    Will this be a right approach? if yes how do we configure transroute to get the data and call into ICM from the 3rd party IVR.
    Regards
    Rafi

    No problem.
    As I said earlier, call lands into 3rd party IVR in a different network. UCCE is on a differnt location or geography.
    The above IVR talks to their webservice application to set call context data and this webservice will integrate with VRUPG designated to talk to only this webservice. Basicaly the webservice will be treated as any other IVR peripheral (eg..CVP) from UCCE perspective.

  • CMYK to RGB conversion without 3rd party software?

    Does anyone know a way to use Automator to convert CMYK color mode images to RGB without having to have Photoshop or such installed? All Automator add ons I have seen thus far involve either Adobe products or other 3rd party image programs.
    Thanks!

    Hello again Ric,
    Thanks for your help. I would appreciate a bit of Applescript help. I have Automator back in the mix after playing around a bit.
    Yes, my associate who owns the website has neither PS, or GC. So if we can set up a way to automate this via email that would be great. I think I am actually about half way there, and I hope you will be kind enough to help me get the rest of the way.
    My machine is no longer the spunkiest, so I am using GC to do the color mode conversion, as it can launch, convert, and save the file in less than 1/4 the time Photoshop takes to launch. So yes, I'm doing this in a crazy fashion, but I have good reasons.
    This is my script thus far:
    using terms from application "Mail"
    on perform mail action with messages theMessages for rule theRule
    tell application "Mail"
    set numberOfMessages to count theMessages
    repeat with eachMessage in theMessages
    set theSubject to subject of eachMessage
    try
    set nameOfAttachment to the name of the first mail attachment of eachMessage
    (*if nameOfAttachment ends with ".torrent" then*)
    set filename to "Macintosh HD:Users:parr:Desktop:Alpha Images:•From Brett:" & nameOfAttachment
    save first mail attachment of eachMessage in filename
    tell application "GraphicConverter"
    activate
    open {alias filename}
    save window 1
    close window 1
    quit
    end tell
    tell application "Automator"
    execute "Alpha Convert"
    end tell
    end try
    end repeat
    end tell
    end perform mail action with messages
    end using terms from
    This works up until I call my Automator workflow. In my workflow I currently have the scale item and the convert to jpeg item.
    Question 1: How do we tell Automator what files to use as an input? Do I have to add a Get Selected or Get Specified Finder Items? Can I use the 'filename' variable from the above script?
    Once I have that down, any advice you can give on emailing it back would be great.
    Thanks again.
    QS2002 933 - Soon to be Macbook 2.0   Mac OS X (10.4)  

  • How do you install 3rd party plug-in in Photoshop CC

    Our fine customer service/tech support wouldn't help me with my question/problem because 3rd party plug-ins are not an Adobe product.... Silly, isn't it since all I want to know is how do you install "any" plug-ins into Adobe Photoshop CC. Can anyone with any sanity here offer a solution?
    Thanks.

    It could be complex depending on your OS and user ID permissions.    Adobe Photoshop CC Mac version only supports new Mac with Intel 64bit processors, Photoshop CC windows supports  both 64 bit systems and 32 bit systems.  If you have a 64 bit system both the 32 bit and 64 bit version of Photoshop are installed so windows has both a 32 bit Plug-in Folder and a 64 Bit Plug-in Folder.  Prior to CC Photoshop Preference let you add you own Plug-in folder tree to Photoshop Plug-in folder tree.   I still install Plug-in that way however I have to add the link manually for adobe removed that option from its Preferences UI in Photoshop CC.  I always have more the one versions of Photoshop and all installed versions use the same Plug-in, Actions and Scripts that I add to Photoshop.   There is One exception.  The Way the Image Processor Pro plug-in script is coded expects it and it default XML file to be installed into Adobe's folder so I made and exception for it.   You user ID need to have permission to modify and add files to system folders if you want to install plug-ins into the folders that Adobe created for third party plug-ins to be installed into.
    Adobe Photoshop CC installer creates a folder in  Photoshop version   ...\Plug-ins\... so on my Window 7 64 bit system there are two folders
    "C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\" and
    "C:\Program Files (x86)\Adobe\Adobe Photoshop CC\Plug-ins\"
    All I add to these are the Adobe ScriptListener.8li Plug-in and a link to my  Plug-ins folder.

  • Possible to send files to 3rd party program?

    I'm trying to add a "Send to Flickr Uploadr" context menu to bridge, but I've hit a snag in getting the files to the Flickr Uploader program. <br /><br />I've tried using openWith(), but i don't think that it does what I want it to do. But the documentation on openWith() is a bit sparse. If openWith() is indeed the wrong method to use, what is correct way, or is this even possible? <br /><br />Thanks.<br /><br />here's what i've got so far...<br /><br />// path to flickr uploader<br />flickrPath = "/C/Program Files/Flickr Uploadr/Flickr Uploadr.exe";<br /><br />// only have 1 instance of each<br />function checkEl(w){<br />>     var menuEl = MenuElement.find(w);<br />>     if (menuEl != null){<br />>          MenuElement.remove(w);<br />>     }<br />}<br /><br />// send selected files to flickr uploader<br />function send2Flickr(f){<br />>     fName = app.document;<br />>     for (i=0; i<fName.selections.length; i++){<br />>          files = new Thumbnail(File(fName.selections[i].path));<br />>          files.openWith(flickrPath);<br />>     }<br />}<br /><br />// check to see if the menu items exist, and remove and recreate if they do<br />checkEl('send2Flickr');<br /><br />// right click context menu<br />var cntCommand = new MenuElement("command", "Send to Flickr Uploadr", "at the end of Thumbnail", "send2Flickr");<br />cntCommand.onSelect = function (f){<br />>     send2Flickr();<br />}

    Not all 3rd party software will respond to the commands Bridge sends it when you do openWith. Off the top of my head I'm not sure if openWith ends up sending a BridgeTalk message or some flavor or operating system or message or event (or both), but if you can get the 3rd Party application to open the file using the Bridge UI's File > Open With menu item, then I'd expect scripting's openWith to work as well.
    One workaround you can try is the command line. If the third-party software has a command line interface, then you can try using app.system() to issue the commands. It's possible (on both Mac and Windows), for example, to run the DNG Converter from Bridge this way, and this is how the ExportToJPEG's "Send To Flickr Uploadr-Mac.jsx" sample script runs some AppleScript that tells the Mac Flickr Uploadr to open files. I believe that the Windows Flickr Uploadr has a command line interface, so you might try something like this...
    // Make a file Object using the known path to the uploadr
    var command = "\"" + uploadr.fsName + "\" \"" + fileToUpload.fsName + "\"";
    app.system( command );
    Note that you usually have to quote paths to files for this to work all the time. Also note that app.system() will block your script until the command returns. Finally, when I've used app.system() on windows in the past, sometimes a command that seems to work just fine from the windows Console doesn't seem to do anything via app.system(). In those cases I've found that witting out the command to a temporary .bat file and then sending the path to the .bat file to app.system() does work.
    I know that I've tried before to run Flickr Uploadr windows this way from Bridge, but it was months ago, and I don't recall all the details. My recollection is that it basically worked, but the user experience was a bit clunky because of the modal behavior and because a Console window appears on the screen as the commands run, and I had to quit the Uploadr manually after upload to move on. If you are a clever windows batch file scripter (I'm not) maybe you can workaround those issues.
    -David

Maybe you are looking for

  • How can I delete a file from an invisible Library folder on a backup

    Somehow, when installing RealPlayer I managed to get something called RealNetwork (a Folder full of files) installed in my User Library. It was 395.62 GB so must have been some sort of malware. I was able to find it and delete it from my hard drive.

  • Automount lookup request tracing

    Hello all, I am getting lots of entries in my messages file for some process that is trying to access a nfs automount directory that doesn't exist. Is there a way I can track down what program is trying to access this. May  5 20:12:09 server1 automou

  • Com.sapportals.portal.pcd.* not found!

    I am new to SAP Portals Development. I have SAP Netweaver 7.0.08 installed on my machine. While trying to create a sample portal project i tried to create a JSPDyn component. The .java and .jsp files are auto-created. The problem is that the code doe

  • Passing a variable from servlet to WML

    i need to send a variable to my wml content from java servlet.Is there any possibility of doing so? Thanks in advance

  • Moving iTunes library from an iMac to a Windows Laptop running Windows 7

    Hi All My daughter has a problem. She is selling her iMac and has to move her music library of 3,000 tunes from her iMac to her Windows 7 laptop. She does not have either her iPhone or iPod any more. How does she do this. Please help. Regards Lee