Need help converting from 4.0 to 2011

hello,
Need help converting files from 4.0 to 2011.
thank you
Solved!
Go to Solution.
Attachments:
noise source.vi ‏73 KB
8673D.vi ‏30 KB
8970 FREQ.vi ‏26 KB

attached as 8.2, which you can open
missing some subVIs - not sure if you already have them
Attachments:
8673D.vi ‏13 KB
8970 FREQ.vi ‏11 KB
noise source.vi ‏24 KB

Similar Messages

  • [AS] Beast of a script needs help converting from Quark 8 to InDesign CS5

    First off, THANK YOU for even reading this post. Here's the dilema. I work in a publishing company that used an AppleScript from Quark 8 to automate our pagination from set text we pull from our sales reps worksheets. About 8 months ago we switched fully to InDesign CS5, but have had to hold onto Quark 8 to be able to keep running our pagination. I'd like to see if the geniuses (yes, I've been trolling these forums looking to solve this myself and seen some great problems fixed) on these forums can help me figure out the proper conversion I would need to be able to leave Quark 8 in the rearview.
    Here's our current code... (I warned you it was a beast)
    set Ad_Props to {¬
         {Ad_Label:"SPREAD – ", Ad_Width:2.495, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"FULL – ", Ad_Width:1.225, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"SPREAD – ", Ad_Width:2.495, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"JUNIOR – ", Ad_Width:0.90625, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/2H – ", Ad_Width:1.225, Ad_Height:0.785, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/2V – ", Ad_Width:0.5875, Ad_Height:1.62, Ad_Text_Angle:90}, ¬
         {Ad_Label:"1/3V – ", Ad_Width:0.5875, Ad_Height:1.2025, Ad_Text_Angle:90}, ¬
         {Ad_Label:"1/4 – ", Ad_Width:0.5875, Ad_Height:0.785, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/4 Strip – ", Ad_Width:0.26875, Ad_Height:1.62, Ad_Text_Angle:90}, ¬
         {Ad_Label:"1/8H – ", Ad_Width:0.5875, Ad_Height:0.3675, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/8V – ", Ad_Width:0.26875, Ad_Height:0.785, Ad_Text_Angle:90}, ¬
         {Ad_Label:"Junior (GOLF) – ", Ad_Width:0.8, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/3V (GOLF) – ", Ad_Width:0.375, Ad_Height:1.62, Ad_Text_Angle:90}, ¬
         {Ad_Label:"1/3sq. (GOLF) – ", Ad_Width:0.8, Ad_Height:0.785, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/6V (GOLF) – ", Ad_Width:0.375, Ad_Height:0.785, Ad_Text_Angle:90}, ¬
         {Ad_Label:"Directory Listing Only – ", Ad_Width:0.3, Ad_Height:0.3, Ad_Text_Angle:0}, ¬
         {Ad_Label:"INSERT (# in notes) – ", Ad_Width:0.3, Ad_Height:0.3, Ad_Text_Angle:0}, ¬
         {Ad_Label:"Other (See Notes) – ", Ad_Width:0.3, Ad_Height:0.3, Ad_Text_Angle:0}, ¬
         {Ad_Label:"------------ – ", Ad_Width:0.3, Ad_Height:0.3, Ad_Text_Angle:0}}
    set Position_Width to number
    set Position_Width to 11.375
    set Position_Height to number
    set Position_Height to 1.875
    set Jump_Height to number
    set Jump_Height to 0
    set Variable_Count to number
    set Variable_Count to 0
    set Variable_Height to number
    set Variable_Height to (1.875 + (1.62 * Variable_Count))
    set Last_Ad to number
    set Last_Ad to 0
    tell application "QuarkXPress"
         activate
         try
              display dialog "WARNING: This version of 'Dummy Square Maker' runs much slower than the last version, a confirmation will tell you when you are finished. Please be patient." & return & return & "Make sure to have the text box selected" buttons {"Cancel", "Accept"} default button 2 with icon caution
              set ThisBox to object reference of current box
              tell story 1 of ThisBox
                   set (every paragraph where it is return) to ""
                   set style sheet of every text to null
                   set style sheet of every text to "DUMMY TEXTS"
                   repeat with i from 1 to (count of paragraphs)
                        try
                             tell paragraph i
                                  set ThePage to my get_CurrentPage()
                                  try
                                       if it contains " – " then
                                            set style sheet to "AD SIZE"
                                            set Ad_Size to contents
                                            set {This_Width, This_Height, this_angle} to {"", "", ""}
                                            repeat with This_Ad in Ad_Props
                                                 if Ad_Size contains (Ad_Label of This_Ad) then
                                                      set This_Width to Ad_Width of This_Ad
                                                      set This_Height to Ad_Height of This_Ad
                                                      set this_angle to Ad_Text_Angle of This_Ad
                                                      exit repeat
                                                 end if
                                            end repeat
                                            set Ad_Box to my Make_Box(ThePage, {1.875, 10.875, This_Height + 1.875, This_Width + 10.875}, this_angle)
                                            duplicate contents to (end of Ad_Box)
                                       else if it contains "—" then
                                            set style sheet to "AD REP/PLACEMENT"
                                            duplicate contents to (end of Ad_Box)
                                       else if it starts with "©" then
                                            set style sheet to "AD REP/PLACEMENT"
                                            delete (character 1)
                                            duplicate contents to end of Ad_Box
                                            if Position_Width ≤ 19.75 then
                                                 set Jump_Height to Jump_Height + This_Height
                                                 (*_________________This is where Ad Boxes Stack_________________*)
                                                 if (Jump_Height ≤ 1.62) then
                                                      set origin of bounds of Ad_Box to {Position_Height, Position_Width}
                                                      set Position_Height to Position_Height + This_Height
                                                      (*_________________This is where Ad Boxes more right_________________*)
                                                 else
                                                      set Position_Height to Variable_Height
                                                      (*set Position_Width to Position_Width + This_Width + 0.05*)
                                                      set Position_Width to Position_Width + Last_Ad + 0.05
                                                      set origin of bounds of Ad_Box to {Position_Height, Position_Width}
                                                      set Jump_Height to This_Height
                                                      set Position_Height to Variable_Height + This_Height
                                                 end if
                                                 set Last_Ad to This_Width
                                                 (*_________________This is where New Row appears_________________*)
                                            else
                                                 set Position_Width to 11.375
                                                 set Variable_Count to Variable_Count + 1
                                                 set Variable_Height to (1.875 + (1.62 * Variable_Count))
                                                 set Position_Height to Variable_Height
                                                 set origin of bounds of Ad_Box to {Position_Height, Position_Width}
                                                 set Position_Height to Position_Height + This_Height
                                                 set Jump_Height to This_Height
                                                 set Last_Ad to This_Width
                                            end if
                                       else
                                            duplicate contents to (end of Ad_Box)
                                       end if
                                  end try
                             end tell
                        on error errmsg number errnum
                             display dialog "There has been an error " & "[" & i & "] (" & errmsg & " [" & errnum & "])" buttons {"Okay"} default button 1 with icon stop
                        end try
                   end repeat
                   delete contents
                   set style sheet of every text to null
              end tell
              beep 2
              display dialog "Automation Finished" & return & return & "IMPORTANT NOTE: Color your Ad Squares according to Sales Rep, and select them all and 'BRING TO FRONT [F5]', this is VITAL." buttons {"Okay"} default button 1 with icon stop
         on error errmsg number errnum
              beep 3
              if errnum ≠ -128 then
                   beep
                   display dialog errmsg & " [" & errnum & "]" buttons {"OK"} default button 1 with icon stop
              end if
         end try
    end tell
    on Make_Box(ThePage, TheBounds, this_angle)
         local ThePage, TheBounds, this_angle
         tell application "QuarkXPress"
              tell page ThePage of document 1
                   set Ad_Box to make new text box at end with properties {bounds:TheBounds, vertical justification:centered, color:"Rep_Other", shade:100, opacity:10, text angle:this_angle, frame:{style:solid line, color:"Black", shade:60, width:0.1}}
              end tell
         end tell
         (*end tell*)
         return Ad_Box
    end Make_Box
    on get_CurrentPage()
         tell application "QuarkXPress"
              tell document 1
                   return page number of current page
              end tell
         end tell
    end get_CurrentPage

    Hi,
    I think with this, you can already make good progress in your work.
    Good luck!
    global mydocument
    tell application "Adobe InDesign CS5.5"
         set mydocument to active document
         tell mydocument
              set myParaStyle to paragraph style "DUMMY TEXTS"
              tell page 1
                   set TheBounds to {0, 0, 20, 50}
                   set Ad_Box to make text frame
                   tell Ad_Box
                        set geometric bounds to TheBounds
                        set vertical justification of text frame preferences to center align
                        set contents to "This is the contents"
                   end tell
                   set myStory to parent story of Ad_Box
                   set applied paragraph style of every paragraph of myStory to myParaStyle
              end tell
         end tell
    end tell
    Your two handlers then look like this:
    on Make_Box(ThePage, TheBounds, this_angle)
         local ThePage, TheBounds, this_angle
         tell application "Adobe InDesign CS5.5"
              tell page ThePage of mydocument
                   set Ad_Box to make text frame
                   tell Ad_Box
                        set geometric bounds to TheBounds
                        set vertical justification of text frame preferences to center align
                   end tell
              end tell
         end tell
         return Ad_Box
    end Make_Box
    on get_CurrentPage(CurrentTextFrame)
         tell application "Adobe InDesign CS5.5"
              tell mydocument
                   return name of parent page of parent page of CurrentTextFrame
              end tell
         end tell
    end get_CurrentPage
    Shorter version:
    on get_CurrentPage(CurrentTextFrame)
         tell mydocument of application "Adobe InDesign CS5.5"
              return name of parent page of parent page of CurrentTextFrame
         end tell
    end get_CurrentPage
    Ce message a été modifié par: OlivierBerquin

  • Need help converting from Actionscript 2.0 to 3.0

    I have an old flash file that I need to update. Ufortunately I only ahve access to Flash Pro CC and when I open the file it says the program no longer supports Actionscript 2.0. When I test the file, I get the following compiler errors:
    Symbol 'MoneySlider', Layer 'AS', Frame 1, Line 7, Column 3
    1120: Access of undefined property ratio.
    Symbol 'MoneySlider', Layer 'AS', Frame 1, Line 7, Column 20
    1180: Call to a possibly undefined method number.
    Symbol 'MoneySlider', Layer 'AS', Frame 1, Line 7, Column 27
    1120: Access of undefined property _root.
    Symbol 'MoneySlider', Layer 'AS', Frame 1, Line 9, Column 27
    1120: Access of undefined property ratio.
    And on the MoneySlide layer in Actions:
    this.ratio = 0;
    this.loadBar._width = 0;
    this.dragger.ratio.text= "$0";
    dragger.onPress=function(){
              this.startDrag(true,0,0,line._width,0);
              this.onEnterFrame=function(){
                        ratio=Math.round(number(_root.transitBenefitLimit/100)*(thi s._x/(line._width/100)));
                        loadBar._width = Math.round(this._x);
                        dragger.ratio.text= "$"+ratio;
    dragger.onRelease=dragger.onReleaseOutside=stopDrag;
    Any help changing the code to be compatible with Actionscript 3? thanks in advance...

    as3:
    this.ratio = 0;
    this.loadBar.width = 0;
    this.dragger.ratio.text= "$0";
    dragger.addEventListener(MouseEvent.MOUSE_DOWN,downF);
    var dragged_mc:MovieClip;
    function downF(e:MouseEvent):void{
    dragged_mc=MovieClip(e.currentTarget);
             dragged_mc.startDrag(true,0,0,line.width,0);
            dragged_mc.addEventListener(Event.ENTER_FRAME,enterframeF);
    stage.addEventListener(MouseEvent.MOUSE_UP,upF);
    function enterframeF(e:Event):void{
                        ratio=Math.round(Number(MovieClip(root).transitBenefitLimit/100)*(dragged_mc.x/(line.widt h/100)));
                        loadBar.width = Math.round(dragged_mc.x);
                        dragger.ratio.text= "$"+ratio;
    function upF(e:MouseEvent):void{
    stage.removeEventListener(MouseEvent.MOUSE_UP,upF);
    dragged_mc.removeEventListener(Event.ENTER_FRAME,enterframeF);
    dragged_mc.stopDrag();

  • Here i need to convert from EA to CS.

    Hi Dear friends,
    iam having one requirement. that is conversion.
    here is need to convert from EA to CS, for that one iam using FM: conversion_factor_get
    But this is not converting and when i run program it was showing the error is "conversion of dimensionless units is possible".
    Here i need to convert from EA to CS.
    this is Eg:
    DATA : LV_SS TYPE F,
           LV_DEC(100) TYPE N,
           LV_NUM(100) TYPE N.
    call function 'CONVERSION_FACTOR_GET'
    EXPORTING
       NO_TYPE_CHECK              = ' '
       UNIT_IN                    = 'EA'
       UNIT_OUT                   = 'CS'
    IMPORTING
       ADD_CONST                  = LV_SS
      DECIMALS                   = LV_DECI
       DENOMINATOR                = LV_DEC
      DIMENSION                  =
       NUMERATOR                  = LV_NUM
    EXCEPTIONS
      CONVERSION_NOT_FOUND       = 1
      OVERFLOW                   = 2
      TYPE_INVALID               = 3
      UNITS_MISSING              = 4
      UNIT_IN_NOT_FOUND          = 5
      UNIT_OUT_NOT_FOUND         = 6
      OTHERS                     = 7
    if SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    write : lv_ss, lv_dec, lv_num.

    Hi
    first ensure that the both values CS and EA exist in the table T006
    then only the conversion of the units is possible using the fun module
    'CONVERSION_FACTOR_GET'
    Since the unit CS is not available in T006 table it is not working
    This fun module in turn uses the table data T006 for the conversion of units
    Regards
    Anji

  • Need help getting from 10.5.8 to 10.6.

    need help getting from 10.5.8 to 10.6.  i know i'm late to the game!

    If you are not sure of what you are doing,If you are worried about losing anything when doing a major systems upgrade/update,
    Before embarking on a major OS upgrade, it would be wise, advisable and very prudent if you backup your current system to an external connected and Mac formatted Flash drive OR externally connected USB, Thunderbolt or FireWire 800, Mac formatted hard drive. Then, use either OS X Time Machine app to backup your entire system to the external drive OR purchase, install and use a data cloning app, like CarbonCopyCloner or SuperDuper, to make an exact and bootable copy (clone) of your entire Mac's internal hard drive. This step is really needed in case something goes wrong with the install of the new OS or you simply do not like the new OS, you have a very easy way/procedure to return your Mac to its former working state.
    Older version of CarbonCopyCloner found here.
    http://mac.filehorse.com/download-carbon-copy-cloner/2734/
    Older versions of SuperDuper can be found on the SuperDuper Website and Homepage.
    http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html
    Then, determine if your Mac meets ALL minimum system install requirements.
    Mac OS X v10.6 Snow Leopard system requirements
    Purchased Installer disc here.
    http://store.apple.com/us/product/MC573Z/A/mac-os-x-106-snow-leopard
    To install Snow Leopard for the first time, you must have a Mac with:
    An Intel processor
    An internal or external DVD drive, or DVD or CD Sharing
    At least 1 GB of RAM (additional RAM is recommended)
    A built-in display or a display connected to an Apple-supplied video card supported by your computer
    At least 5 GB of disk space available, or 7 GB of disk space if you install the developer tools.
    In addition, see this discussion for more relevant info that you may need if you have any other questions or issues.
    Snow Leopard upgrade - keeps Photoshop?

  • Need help converting a PDF to excel

    Need help converting a PDF to excel, the icon to convert dissappeared suggestions?

    Open the file in Acrobat, use File --> Save As... --> Microsoft Word.
    Mylenium

  • Need help upgradeing from DW 3

    I just upgraded from DW 3 to CS3 and I need to convert my
    site definition files which are DWS files in DW 3 to the STE files
    that CS3 uses. I used MM-exporter to save the data from DW 3.Can
    anyone help me get this done?

    How many sites? I think you will have to just recreate the
    definitions.
    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
    ==================
    "carcubed" <[email protected]> wrote in
    message
    news:fhi4g4$oma$[email protected]..
    >I just upgraded from DW 3 to CS3 and I need to convert my
    site definition
    >files
    > which are DWS files in DW 3 to the STE files that CS3
    uses. I used
    > MM-exporter
    > to save the data from DW 3.Can anyone help me get this
    done?
    >

  • Need Help Converting Video

    Hello - I have a couple of separate questions that I need help with.  I know basic FCP.  I have FCP7.  I recently shot a wedding with 2 different cameras.  Both are HiDef Cameras.  1 Camera is a Prosumer Camera where the files were taking off the camera and imported by Final Cut.  The second is a new, home camcorder which saved the files into a hard drive in MPEG 4 format.
    I need to marry the two.  I can import the all the files (from both cameras) directly into the timeline.  But the ones from the camcorder (the mpeg4s) seem to have that "hitchy" feel to them when I play them back.  Also, both types of files (even the ones that were directly imported into Final Cut from the Prosumer Camera) have the "render" lines when they are in the timeline, so I constantly have to render which takes forever. 
    The files that were imported directly into FCP from the ProSumer camera were imported on a different computer with a different version of FCP, so when I drag them into my timeline it tells me that they were from a different version and asks me if I want to update for my version.  If I click YES then it stretches the files from 16:9 to 4:3.  If I say NO then it keeps the 16:9 aspect ratio, but adds yet another layer of render I need to do.
    Normally I do simple, Standard Def edits where I import things into the timeline via FCP7 with firewire from a deck and edit directly from there, then firewire back to the deck.  Simple - no rendering, etc.  My questions are as follows:
    1 - Do I need to reset my timeline settings because I am now working with HiDef?  Or does FCP automatically know that it is HD and it doesnt matter how I drag it into the timeline?
    2 - Do I need to convert the MPEG 4 files to quicktime format, or does it not make a difference
    3 - When I export, what settings would I use to keep it in HiDef.  I am only going to make DVDs with it.
    4 - Is there a way to do it so that I do not have to render constantly while editing
    5 - To view, I am firewiring out to a deck which is then going into a Standard Def monitor.  Is that the reason the footage appears "hitchy"?
    Any help is greatly appreciated.  If you have any help, please drop me a note at [email protected]
    Thanks

    YOu need to learn how to use FCP.  Sorry, no offense needed, and I know it sounds harsh. But from reading that I can tell you have no idea about how to properly import tapeless media into FCP...and don't know what formats FCP works with...nor know what formats the cameras record.  This is all basic stuff you need to know before you edit.  Editing isn't only creative, but lately highly technical as well...you need to know what your software is capable of doing, and how to get the footage into it properly. 
    You cannot do what you did...directly drag from the cameras into FCP.  No...it needs to be imported, typically with LOG AND TRANSFER...and converted from the shooting format, which typically isn't natively editable in FCP (want native, use Adobe Premiere...).  It needs to be converted to ProRes.  And yes, the file sizes of ProRes are a LOT bigger than the camera originals.  4-5 times larger.  That's how FCP works.
    Here's a quick tutorial to get you started.  But then I suggest getting to know the editing system better.
    http://library.creativecow.net/ross_shane/tapeless-workflow_fcp-7/1

  • Need Help Converting AVI Home Movies to Mpeg without audio and Video Delay.

    I have lots of home movies of my new baby i want to take with me while in Navy training and need help. I have tried 7 movie conversion software programs and it have cost me a lot, but none of them work. Any suggestions please? I leave soon and would like to know as soon as possible please. Thank you so much
    Converting AVI to MPEG on Windows XP OS

    YOu need to learn how to use FCP.  Sorry, no offense needed, and I know it sounds harsh. But from reading that I can tell you have no idea about how to properly import tapeless media into FCP...and don't know what formats FCP works with...nor know what formats the cameras record.  This is all basic stuff you need to know before you edit.  Editing isn't only creative, but lately highly technical as well...you need to know what your software is capable of doing, and how to get the footage into it properly. 
    You cannot do what you did...directly drag from the cameras into FCP.  No...it needs to be imported, typically with LOG AND TRANSFER...and converted from the shooting format, which typically isn't natively editable in FCP (want native, use Adobe Premiere...).  It needs to be converted to ProRes.  And yes, the file sizes of ProRes are a LOT bigger than the camera originals.  4-5 times larger.  That's how FCP works.
    Here's a quick tutorial to get you started.  But then I suggest getting to know the editing system better.
    http://library.creativecow.net/ross_shane/tapeless-workflow_fcp-7/1

  • I am a beginner at Final Cut Pro. Need help converting MPEG-2 to use.

    I am a beginner at Final Cut Pro. I have mpeg-2 video footage that I am trying to import the footage into Final cut, but can't. I understand I need to convert the file format. I am unfamiliar with how to go about the converding file formats and the codec what is the best way to go about converting the file format so I can edit it on Final cut pro?

    Where did the files originate? (How were they created?)
    Some formats can be brought in with the help of plug-ins.
    MPEG Streamclip can usually convert them to Quick Time.
    Russ

  • I need help converting a PDF to a word file. I purchased Acrobat for this purpose?

    I need help using this download. I purchased Acrobat because I need to convert a PDF file to a word file. Can you give me instruction on how to do this.
    Thank you,

    Open the file in Acrobat, use File --> Save As... --> Microsoft Word.
    Mylenium

  • Need help converting a varchar to a date

    The following select displays a horizontal column vertically. I need to convert the varchar horizontal column to a date column.
    SELECT raso.SRC_SUPL_CD,
    case numbers.n
    when 1 then
    case instr(raso.DT_TM_PHASE_DT,':',1,1)
    when 0 then raso.DT_TM_PHASE_DT
    else substr(raso.DT_TM_PHASE_DT,1,instr(raso.DT_TM_PHASE_DT,':',1,1)-1)
    end
    else substr
    (raso.DT_TM_PHASE_DT
    ,1 + instr(raso.DT_TM_PHASE_DT,':',1,numbers.n-1)
    ,case instr(raso.DT_TM_PHASE_DT,':',1,numbers.n)
    when 0 then length(raso.DT_TM_PHASE_DT)
    - instr(raso.DT_TM_PHASE_DT,':',1,numbers.n-1) +1
    else instr(raso.DT_TM_PHASE_DT,':',1,numbers.n)
    - instr(raso.DT_TM_PHASE_DT,':',1,numbers.n-1) - 1
    end
    end PHASE_DT
    from RSSP_API_SELECT_OVERRIDE raso
    , (select level n from dual connect by level <= 38) numbers
    where length (raso.DT_TM_PHASE_DT) - length (replace(raso.DT_TM_PHASE_DT,':')) + 1
    >= numbers.n

    An example wouldn't hurt.
    As it is now, my reply would be:
    SQL> create table rssp_api_select_override
      2  as
      3  select 1 src_supl_cd, '01:12:2006:14:55:00' dt_tm_phase_dt from dual
      4  /
    Tabel is aangemaakt.
    SQL> SELECT raso.SRC_SUPL_CD
      2       , case numbers.n
      3         when 1 then
      4           case instr(raso.DT_TM_PHASE_DT,':',1,1)
      5           when 0 then raso.DT_TM_PHASE_DT
      6           else substr(raso.DT_TM_PHASE_DT,1,instr(raso.DT_TM_PHASE_DT,':',1,1)-1)
      7           end
      8         else
      9           substr
    10           ( raso.DT_TM_PHASE_DT
    11           , 1 + instr(raso.DT_TM_PHASE_DT,':',1,numbers.n-1)
    12           , case instr(raso.DT_TM_PHASE_DT,':',1,numbers.n)
    13             when 0 then length(raso.DT_TM_PHASE_DT)
    14                         - instr(raso.DT_TM_PHASE_DT,':',1,numbers.n-1) +1
    15             else instr(raso.DT_TM_PHASE_DT,':',1,numbers.n)
    16                  - instr(raso.DT_TM_PHASE_DT,':',1,numbers.n-1) - 1
    17             end
    18           )
    19         end PHASE_DT
    20    from RSSP_API_SELECT_OVERRIDE raso
    21       , (select level n from dual connect by level <= 38) numbers
    22   where length (raso.DT_TM_PHASE_DT) - length (replace(raso.DT_TM_PHASE_DT,':')) + 1 >= numbers.n
    23  /
                               SRC_SUPL_CD PHASE_DT
                                         1 01
                                         1 12
                                         1 2006
                                         1 14
                                         1 55
                                         1 00
    6 rijen zijn geselecteerd.
    SQL> select to_date(dt_tm_phase_dt,'dd:mm:yyyy:hh24:mi:ss') from rssp_api_select_override
      2  /
    TO_DATE(DT_TM_PHASE
    01-12-2006 14:55:00
    1 rij is geselecteerd.Regards,
    Rob.

  • Need help converting quicktime movies into Flash files

    I need to convert a QT, PhotoJPEG compressed, movie file into a .flv format. I have AE 6.5 Standard and it keeps quitting on exporting a SWV file which would could probably get me by with my client. But, again, it errors out saying something like a JPG is busy, or a file is busy.
    I have FlipforMac,a purchased version. But I'm not sure if converting it into a .wmv and then a Flash file is the best route or is even possible.
    Any suggestions or ideas of software that I could purchase??
    ~reicko

    i don't think you have read up on the use of flash video
    (FLV). there's nothing you need that you do
    not already have (except maybe quicktime pro or some other
    video editing program). the FLV exporter
    comes FREE with flash 8. You should be able to open your
    quicktime movie in QT PRO and export to FLV
    format - then use any of the flash playback components for
    FLV files - best bet is to read the help
    docs on this subject and go to the devnet section of
    adobe.com where there are several in-depth
    articles about implementing flash video into your site.
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    rhian wrote:
    > Hi,
    > Thanks for your reply. I am using Flash 8. I've been
    looking into streaming
    > and it's very expensive with quicktime movies, however
    I've found a company
    > that will stream flash movies much more cheaply which is
    why I want to convert
    > it to a flash movie.
    >
    > Sorry are you say that Quicktime Pro allows you convert
    files into flash
    > formats?
    > Rhian
    >

  • Any help converting from Entourage to iCal?

    With all the problems syncing between Entourage calendar and my wife's iPhone (and now Apple dropping sync to Entourage in the new "forced" upgrade on MobileMe), I want to help my wife convert from Entourage to iCal.  Anyplace to go for that help?

    You can use Thundebird to replace Entourage and get the Lighting.Add-on to Thunderbird to replace the calendar of Entourage which USED TO synch over ical to Mobile Me as follows:
    1. How to set up the iCal for Lightning and MobileMe
    open Thunderbird
    Install the Lightning add-on
    Select “Preferences” “Advanced” “General”“Config Editor…”
    yes, be careful
    scroll down until you find  “general.useragent.extra.lightning” andset the value to (nothing). you can also set the value to “ical” or whatever,just change it.
    Close the config editor, close Thunderbird
    Get the link to your iCal on MobileMe asfollows:
    open ical (YES, iCAL)
    right click the calendar under [email protected] youwant to access 
    select“get info”
    copythe url after “CalDAV url:” it should read“/calendars/users/1.xxxxxxxxx/xxx-x-x-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx”
    OpenThunderbird (assuming you have the Lightning add-on installed)
    Within Thunderbird
    File/ New / Calendar
    onthe networkselect “CalDav”
    intolocation: type the following (excluding the “”) :“https://cal.me.com:8443/calendars/users/1.xxxxxxxxx/xxx-x-x-xxxxxxxx-xxxx-xxxx-x xxx-xxxxxxxxxxx”where the xxx stuff is the part of the url that you copied under 5. above.
    Whenyou check what is written in the location field, it will end with a   “/” which is correct.
    This works fine for me.
    If you want to back-up your calendar on Thunderbird/Lightning outside the cloud,  goto iCal and export the file to a local location as backup.

  • ABAP code needed to convert from 0calmonth2 & 0calyear to 0calmonth

    Hi SAP GURUS,
    Can anybody give me the ABAP code to convert from 0calmonth2 and 0calyear to 0calmonth.and please suggest me whether i have to write start routine or end routine in transformations.
    Thanks ALL.

    hi,
    in the transformation map 0calmonth2 and 0calyear to the 0calmonth field, and from drop down choose routine.
    there will be an area where it will be mentioned write your piece of code below this line.
    paste the below code:
    Concatenate source_fields-0calmonth2 source_fields-0calyear into result.
    also delete the line result = .
    save the routine and execute the package.
    regards,
    Arvind.

Maybe you are looking for

  • Enable JavaHelp 1.1.3 to display video

    I'm using JavaHelp 1.1.3 and I'm having trouble getting a video (avi) to display within JavaHelp. With a regular browser, the video displays with no problem. I've tried about 2 different methods so far: 1. Direct link - no good, JavaHelp spits out a

  • I lost my i work

    After window 8.1 install, i use disk management in window. After that my mac operating system can not use after restart. mac system can not see and run at start up boot time. i can use only window system. So i repaired with bootable start up disk for

  • Multiple ichat clients behind firewall?

    IS it possible to have multiple ichat clients behind a firewall? I've just bought a macbook pro and would like to purchase two more for ichat functionality. Two of these will be behind one firewall, the other across the country. I can't find any docu

  • I need the manual for iMovie 11

    I want to know what those 2 little icons are all the way to the right of the screen and how they work, but all I find is the Getting Started guide and the info is not in there. Actually there's hardly anything useful in there. I want a full manual. I

  • Reader tries to open vnd.ms-word

    Hi, I have created some ASP pages with a view to opening them and displaying them in Word. In order to do this I have put in the following code in the head of the Doc: <% Response.ContentType = "application/vnd.ms-word" Response.Buffer = True %> This