4L (LaCie's LightScribe Labeler for Linux) : advice wished!

As K3b Founder Sebastian Trueg said, "We're happy to see that LaCie is developing tools for Linux users, and are pleased to work with them to make it happen. With the LaCie LightScribe Labeler for Linux, [Linux] users now have access to the latest disc-labeling technology from LightScribe."
http://www.k3b.org/
I'm making the PKGBUILDs but some advice on the process would be helpfull
So far, installed with those PKGBUILDs, 4L-gui launches on my Arch (but seems to lack some functionnality) and 4L-cli segfaults even if it prints the options.
_Be aware that those PKGBUILD are not finished yet_
LightScribe Host Software v1.4.113.1 for Linux
# Contributor: kozaki <kozaki>
pkgname=lightscribe
pkgver=1.4.113.1
pkgrel=1
pkgdesc="LightScribe Host Software v1.4.113.1 for Linux"
url="http://www.lacie.com/company/news/news.htm?id=10293"
license=('custom')
depends=('libstdc++5')
makedepends=('rpmextract')
depends=(rpmextract)
source=(http://www.lacie.com/download/drivers/lightscribe-1.4.113.1-linux-2.6-intel.rpm)
md5sums=('9a692c0fa12501598d5c495f028e2a3e')
build() {
# Extract RPM
rpmextract.sh $pkgname-$pkgver-linux-2.6-intel.rpm
# Copy binaries and data files
install -d $startdir/pkg/etc
install -d $startdir/pkg/usr/lib/lightscribe/{res,updates}
# or : install -d $startdir/pkg/opt/lightscribe/{res,updates} but needs to modify etc/lightscribe.rc
install -d $startdir/pkg/usr/share/doc
cp etc/lightscribe.rc $startdir/pkg/etc
cp usr/lib/liblightscribe.so $startdir/pkg/usr/lib
cp usr/lib/liblightscribe.so.1 $startdir/pkg/usr/lib
cp -R usr/lib/lightscribe/res $startdir/pkg/usr/lib/lightscribe
cp usr/lib/lightscribe/updates/fallback.sh $startdir/pkg/usr/lib/lightscribe/updates
find $startdir/pkg/usr/lib -type f -exec chmod 644 {} ;
find $startdir/pkg/usr/lib -type d -exec chmod 755 {} ;
chmod 755 $startdir/pkg/usr/lib/lightscribe/res/*
chmod 755 $startdir/pkg/usr/lib/lightscribe/updates/fallback.sh
cp usr/share/doc/lightscribeLicense.rtf $startdir/pkg/usr/share/doc
LaCie's LightScribe Labeler for Linux
# Contributor: kozaki <kozaki>
pkgname=4l
pkgver=1.0r6
pkgrel=1
pkgdesc="LaCie's LightScribe Labeler for Linux"
url="http://www.lacie.com/company/news/news.htm?id=10293"
license=('custom')
depends=('fontconfig' 'lightscribe')
makedepends=('rpmextract')
source=(http://www.lacie.com/download/drivers/4L-1.0-r6.i586.rpm)
md5sums=('11fc8b2daeaed2b61a567056413bdefd')
build() {
# Extract RPM
rpmextract.sh 4L-1.0-r6.i586.rpm
# Copy binaries and data files
install -d $startdir/pkg/opt/4L/{doc,templates,translations}
install -d $startdir/pkg/usr/bin
cp usr/4L/4L-cli $startdir/pkg/opt/4L
cp usr/4L/4L-gui $startdir/pkg/opt/4L
cp usr/4L/lacie_website.sh $startdir/pkg/opt/4L
cp usr/4L/doc/4L_User_Manual.pdf $startdir/pkg/opt/4L/doc
cp -R usr/4L/templates $startdir/pkg/opt/4L
cp -R usr/4L/translations $startdir/pkg/opt/4L
find $startdir/pkg/opt/4L -type f -exec chmod 644 {} ;
find $startdir/pkg/opt/4L -type d -exec chmod 755 {} ; # what about the bit SUID on 4L-cli ?
chmod +x $startdir/pkg/opt/4L/4L-cli
chmod +x $startdir/pkg/opt/4L/4L-gui
ln -s /opt/4L/4L-cli $startdir/pkg/usr/bin/4L-cli
ln -s /opt/4L/4L-gui $startdir/pkg/usr/bin/4L-gui
etc/lightscribe.rc :
ResourceDir=/usr/lib/lightscribe/res;
UpdateScriptDir=/usr/lib/lightscribe/updates;
4L-1.0-r6.i586.rpm has 4L-cli with a bit SUID :
-rwsr-xr-x 1 kozaki users 60540 aoû 10 15:20 4L-cli

www.k3b.org wrote:Although [LaCie] wanted to support the development of an Open-Source software, licensing issues always stood in the way of that. Now they released the Closed-Source but free LightScribe Labeling application 4L for Linux and it is about time Linux users get to use LightScribe
Remember lightscribe is HP patented.
Romashka > Hi
Yeap, it seems using LightScribe on Arch may be a little more complicated than just to put the .rpm's files into AL...
I think I missed some dependencies; may someone confirm this ?
$ ldd /usr/bin/4L-cli
linux-gate.so.1 =>  (0xffffe000)    liblightscribe.so.1 => /usr/lib/liblightscribe.so.1 (0xb7e5d000)
    libpthread.so.0 => /lib/libpthread.so.0 (0xb7e4a000)
    libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb7d69000)
    libm.so.6 => /lib/libm.so.6 (0xb7d44000)
    libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0xb7d38000)
    libc.so.6 => /lib/libc.so.6 (0xb7c17000)
    libstdc++.so.5 => /usr/lib/libstdc++.so.5 (0xb7b5f000)
    /lib/ld-linux.so.2 (0xb7fd7000)
$ ldd /usr/bin/4L-gui
linux-gate.so.1 =>  (0xffffe000)
    libXi.so.6 => /usr/lib/libXi.so.6 (0xb7ede000)
    libXrender.so.1 => /usr/lib/libXrender.so.1 (0xb7ed5000)
    libXrandr.so.2 => /usr/lib/libXrandr.so.2 (0xb7ed1000)
    libXcursor.so.1 => /usr/lib/libXcursor.so.1 (0xb7ec8000)
    libXinerama.so.1 => /usr/lib/libXinerama.so.1 (0xb7ec4000)
    libfreetype.so.6 => /usr/lib/libfreetype.so.6 (0xb7e4c000)
    libfontconfig.so.1 => /usr/lib/libfontconfig.so.1 (0xb7e22000)
    libXext.so.6 => /usr/lib/libXext.so.6 (0xb7e14000)
    libX11.so.6 => /usr/lib/libX11.so.6 (0xb7d28000)
    libdl.so.2 => /lib/libdl.so.2 (0xb7d24000)
    libpthread.so.0 => /lib/libpthread.so.0 (0xb7d10000)
    libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb7c2f000)
    libm.so.6 => /lib/libm.so.6 (0xb7c0a000)
    libgcc_s.so.1 => /usr/lib/libgcc_s.so.1 (0xb7bff000)
    libc.so.6 => /lib/libc.so.6 (0xb7ade000)
    libXfixes.so.3 => /usr/lib/libXfixes.so.3 (0xb7ad9000)
    libz.so.1 => /usr/lib/libz.so.1 (0xb7ac6000)
    libexpat.so.1 => /usr/lib/libexpat.so.1 (0xb7aa7000)
    libXau.so.6 => /usr/lib/libXau.so.6 (0xb7aa4000)
    libXdmcp.so.6 => /usr/lib/libXdmcp.so.6 (0xb7a9f000)
    /lib/ld-linux.so.2 (0xb7f03000)

Similar Messages

  • LaCie LightScribe Labeler for Linux released Oct 17th.

    Some of us are missing LightScribe capabilities on Arch Linux.
    Now "4L" comes as an RPM free (as in beer) & ready for Linux
    The news is there : http://www.k3b.org/ (LaCie is a k3b support)
    Press release : http://www.lacie.com/company/news/news.htm?id=10293
    Download page : http://www.lacie.com/products/product.htm?pid=10803
    I've never used rpm under Arch and will seek knowledge on rpm2cpio AUR package.
    Anybody's willing to get on this ?

    Use rpmextract to extract the files from the rpm. Then, it's just a question of installing the files in the correct place (in $startdir/pkg), i.e. binaries in /usr/bin, libraries in /usr/lib, etc.

  • LightScribe for Linux!!!

    Finally!!!
    LaCie LightScribe Labeler for Linux is simple and intuitive, allowing users to burn customized images on to LightScribe discs in three easy steps: import, resize, print. K3b Founder Sebastian Trueg said, "We're happy to see that LaCie is developing tools for Linux users, and are pleased to work with them to make it happen. With the LaCie LightScribe Labeler for Linux, K3b users now have access to the latest disc-labeling technology from LightScribe, and a complete burning solution thanks to LaCie."
    Press release
    Home page
    Downloads:
    LightScribe Host Software v1.4.113.1 for Linux
    LaCie LightScribe Labeler for Linux (both are RPMs)
    Screenshot
    Manual (PDF)
    UPDATE: There is a package request already. I didn't notice it when posted, should I remove this topic?

    Use rpmextract to extract the files from the rpm. Then, it's just a question of installing the files in the correct place (in $startdir/pkg), i.e. binaries in /usr/bin, libraries in /usr/lib, etc.

  • Any current Lightscribe Software for Mac?

    Hi, new Mac user here, just coming over from a Windows machine. and loving it!. Can anyone recommend Lightscribe software for mac. I've followed links on previous queries, but as these are a little dated, and the original HP ran site has closed down so I'm still struggling to find something suitable.
    I know LaCie have some apps, but I'm assuming these only work with their writers.
    I'm a wedding photographer so use Lightscibe all the time as my A2 printer wont print CD's and I hear a lot of bad stuff about the stick on labels damaging drives.
    At the moment, I'm also looking to replace my desktop with an iMac, but need to see I can still have the same functionality first. Thanks

    I find that Lacie's "Lightscribe Labeler" works quite nicely now that they have patched it to support Snow Leopard:
    http://www.lacie.com/support/drivers/driver.htm?id=10061
    Whilst that wasn't working following my upgrade to 10.6, I used the Lightscribe Simple Labeler:
    http://www.lightscribe.com/downloadsection/mac/index.aspx?id=852
    The latter, as you'd expect, doesn't have many features and doesn't support full disc labelling.
    That's using a Lacie D2 16x Lightscribe external drive connected with Firewire 400.
    Hope that helps

  • Looking for a lightscribe software for mac

    Does anyone use an external lightscribe drive to label their CD's & DVD's? What software program do you use?

    I find that Lacie's "Lightscribe Labeler" works quite nicely now that they have patched it to support Snow Leopard:
    http://www.lacie.com/support/drivers/driver.htm?id=10061
    Whilst that wasn't working following my upgrade to 10.6, I used the Lightscribe Simple Labeler:
    http://www.lightscribe.com/downloadsection/mac/index.aspx?id=852
    The latter, as you'd expect, doesn't have many features and doesn't support full disc labelling.
    That's using a Lacie D2 16x Lightscribe external drive connected with Firewire 400.
    Hope that helps

  • Need Lacie LightScribe labeler software for Mac

    I just purchased a Lacie LightScribe DVDRW with USB 2.0, and the lame people at Lacie decided to not give me a copy of their Lacie lightscribe software (after I kindly asked them) even though it would (according to them) work perfectly well with my USB 2.0 drive. For some unexplained reason, they would only bundle the software with the Firewire version of the drive.
    So anyway, I'm wondering if anyone can point me to some place, or can "give me" a copy of the software.
    I hate to purchase another Lacie drive just to get this software... which is kind of what the Lacie support rep hinted me to do ......

    Yi,
    Of course the drive works with the Mac.
    However, continue down the page, and you will see:
    "Mac software not included"
    It is less expensive, as it does not include the licensed Mac software. Some people already have the software.
    So, you may ask, how can I use the drive with my Mac then?
    - the drive will work for burning data CDs and DVDs on the Mac after installing the Disc Burning Profile for 10.3.x and 10.4.x; drive will work with itunes, iPhoto, and Finder to burn discs. This profile is a free download at our website. It will NOT provide LightScribe labeling capability.
    I am sorry that this was not clear to you; I still recommend that you exchange the drive for a model compatible with your computer, or return for a refund.
    Mike

  • Lacie D2 Lightscribe won't burn high quality labels

    I just bought the Lacie D2 lightscribe drive. I had to update the Lightscribe Labeler software to version 1.1 to burn a label on the disc. I attempted to print a high quality image but the software said it couldn't without updating, however it gave me the option to burn a generic lower quality label which worked. Is there another update I should know about or should I buy a different program like Disclabel which supports Lightscribe for mac?

    I suggest you have a look around here and contact support at Lacie on this page for a problem.
    http://www.lacie.com/support/support_manifest.htm?pid=10096
    Cheers Don

  • I made a DVD with photo's and music. On my Powerbook G4 he plays perfect. But after burning the project on my LaCie d2 lightscribe and show the project on my TV than after 10 min. the music stops for a few seconds.

    I made a DVD with photo's and music. On my Powerbook G4 he plays perfect. But after burning the project on my LaCie d2 lightscribe and showing the project on my TV than: after 10 min. the music stops for a few seconds. On the screen of the DVD-player I can see that after the word 'play' the clock starts again with counting the time. I tried everything: * burning slow. * all programs stopped, except iDVD. * all other apparature uncoupled. Is this a problem of my iDVD-program or my LaCie burner?

    mishmumken is correct about the 99 slides.  There's an 99 chapter limit in each slideshow for DVDs and each photo is considered a chapter.  iDVD gets around that by renaming slide 100 back to 1 and goes on. 
    The pause can be minimized (but not eliminated) by burning to disk at the slowest speed available: usually 4x or 2x.  Save the project to disk (File ➙ Save to Disk menu option) and play the disk image with DVD player to check out the transition at 99 and 198.  Then burn the disk image to disk with Disk Utility at the slowest speed possible.  Also use top quality media: Verbatium, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    OT

  • Flashplayer8 for linux ?

    when is flashplayer 8 for linux going to be released? Can i
    get a beta version or something ?
    many sites require flashplayer 9, and the download labelled
    flashplayer8 for linux
    on the website actually gives you flashplayer 7
    thanx

    Adobe has no respect for it's Linux users. They don't see
    making any profit from it anytime soon. We'd have to be surprise we
    even got Flash 7 on linux, we might still be stuck on Flash 5 or
    something.
    Now it seems they'll skip 8.5 and go directly to Flash 9... A
    word of advice, webdesigners should boycott products that are not
    truly cross platform ready. I mean the point of making a website is
    that everyone can access it or everyone be interested in what you
    have to offer. When I think about movies websites like Spider-Man 3
    or X-Men 3 I can't access them while using Linux, well the money I
    saved on an operating system will not go to those hollywood studios
    because I can't even see their website and get the hype about their
    movies.
    Bad move from Macromedia/Adobe, Linux is becoming ready for
    mainstream on Desktop and they are still proposing stone-age
    software....

  • How to create a c++ shared library (.so) for linux real time (for myRio) with Eclipse to use in LabView?

    I tried already these Tutorials and Advices but I didn't find a solution:
    - http://www.ni.com/tutorial/14625/en/
    - http://www.ni.com/tutorial/14690/en/
    - http://forums.ni.com/t5/LabVIEW/Shared-Library-on-myrio-Linux-Real-time-system/m-p/2842540/
    - http://forums.ni.com/t5/LabVIEW/How-to-create-shared-library-for-linux-real-time-target-in/m-p/28218...
    - and some more
    I want use c++ codes on linux real time. For testing reasons I want to have a function that adds 2 values and gives the result.
    I've done these steps:
    1. writing a c++ file in Eclipse (see screensot 2)
    2. building a shared library (.so) from my c++ project in Eclipse (with Cross GCC)
    3. putting this file on myRio (path: /usr/local/lib/)
    4. creating a VI that calls this library from Labview with a "Call Library Function Node" (see screenshot3)
    5. Setting the properties for the "Call Library Function Node" (see screenshots 4-7)
    After I run this VI i get this error message: LabVIEW:  (Hex 0x627) The function name for the ... node cannot be found in the library. To correct this error, right-click the Call Library Function Node and select Configure from the shortcut menu. Then choose the correct function name. (see screenshot1)
    I've tried a lot things to solve this problem but I couldn't find a solution. Would be very happy if anyone can help me. I guess that I have to edit my c++ code to export my function (symbol). But I have no idea how to make it. I also tried it with a dll file in the same folder but it didn't help.
    Perhaps someone can send an example which works on myRIO.
    Thanks!
    screenshot1
    screenshot2
    screenshot3
    screenshot4
    screenshot5
    screenshot6
    screenshot7

     can see it in the screenshot8 there is a function called "_Z8AddierenddPd" instead of "Addieren". I copied this name to Labview (see screenshot9) and it worked.
    I'm sure that there is a way to compile the shared folder with gcc without decorations (mangling). But I don't know how. If someone has a recommendation I would be very glad!
    Prepend each function declaration that you want to be available without name decoration with
    extern "C" <your function declaration>
    Or if you have multiple functions you want to export you can in the header file where you declare your functions simply use:
    #ifdef __cplusplus
    extern "C" {
    #endif
    <all your function declarations>
    #ifdef __cplusplus
    #endif
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Problems downloading files for Oracle 8.1.7 for Linux

    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name download.oracle.com
    - Filename otn/linux/oracle8/linux81701.tar
    - Date/Time 21 Feb 2002 11 pm
    - Browser + Version IE 5.50.4134.0600CO
    - O/S + Version Windows 2000 service pack 2
    - Error Msg
    Hello,
    I have been attempting to download Oracle 8i for linux and my connection appears to get broken during the file transfer. The file is over 500 Mb but I have only managed to receive about 150 Mb before the connection was lost.
    The file appears to be a tar but is not compressed. Could the file be compressed to minimise download time and reduce the likelihood of file corruption during transfer?
    Also, is Oracle for Linux available on CD? Is there a fee for the CD and delivery?
    Any advice concerning download of this file would be greatly appreciated.
    Regards,
    Ralph.

    http://otn.oracle.com/software/htdocs/downloadFAQ.html has the answer for it.
    If you are downloading to windows use www.getright.com's share ware to download 500MB in less time.
    If using linux, then http://devel-home.kde.org/%7Ecaitoo/index.html will help you to down load it.

  • Dynamically Changing Labels for Multi Row Block Buttons

    Forms [32 Bit] Version 9.0.4.1.0 (Production)
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
    On my local: Windows 7 OS
    I am having a difficult time in doing the following in forms, and not sure if it can be done?
    I have a multi row block,based on DB table, which displays filename and another column from the table.
    It also has a push button on each row, which opens and displays the physical file from its source, when clicked. The filename thus can have 3 diff statuses depending on its sources and accordingly corresponding button should display appropriate label:
    a) View Image (its is in content server and successfully imaged. In this case I display the file in the browser, from the content server, when the button is clicked)
    b) View File (Display the file from file system)
    c) View Error (Display imaging error message from the table, as file failed to make it to the imaging server)
    I have this logic currently coded in the post query trigger, at the block level, and tried using set_item_property(button_id, label, <button_lable>), where I programmatically set the button lable, based on the file status (imaged, not imaged or has error) in that row. This wroks well, only if all the files in the multi row block have the same status. If each of them have diff statuses, then only last processed files's status gets reflected into the button label. For eg: The file in the first row of the block is imaged, and one in the second row has an imaging error. The button label for the first row should say 'View Image' and button for the second row should say 'View Error'. But now buttons for both the rows display 'View Error', as thats what got processed last!
    I __can not use set_item_instance property for 'label'__ (which lets us dynamically change the label on the push buttons).
    Is there any way to do this for ORacle forms? I am now playing with having 3 diff button items in that block, laying them on top of each other and showing only those that are appropriate and hiding the others... But I am not sure it is going to give me what I need? I think I am going to end up facing the same issues as in above case!!
    Any expert advice is highly appreciated.
    Thanks in advance for your time:
    Libran_Girl
    Edited by: libran on Aug 30, 2011 8:04 AM
    Edited by: libran on Aug 30, 2011 8:05 AM

    <p>I have just updated this existing PJC, that was originally constructed to handle Text Fields. You can, now, also handle buttons with it.
    Set the Button's Implementation Class property to : oracle.forms.fd.MultiButton.
    </p>
    This is the code you have to put one triggers of your based block:
    When-New-Record-Instance trigger: (based on the EMP table)
    declare
         LN$Pos  pls_integer ;
         LN$Rec  pls_integer := Get_Block_Property('EMP', CURRENT_RECORD) ;
         LN$Max  pls_integer := Get_Block_Property('EMP', RECORDS_DISPLAYED) ;
         LC$C    Varchar2(15) ;
    Begin     
         LN$Pos :=  LN$Rec - (trunc(LN$Rec/LN$Max) * LN$Max) ;
         If LN$Pos = 0 Then LN$Pos := LN$Max ; End if ;
         If LN$Pos > 0 Then
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_LOG', 'true' );
              -- Add the new item --
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_NEW_REC', to_char(LN$Rec) );
              -- Set some properties --
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_LABEL', to_char(LN$Rec) || ',' || :EMP.ENAME );
              If :EMP.JOB = 'MANAGER' Then
                Set_Custom_Property('EMP.BT', LN$Pos, 'SET_FONT', to_char(LN$Rec) || ',Arial,bold,14' );
                Set_Custom_Property('EMP.BT', LN$Pos, 'SET_FGCOLOR', to_char(LN$Rec) || ',0,0,255' );
              End if ;
              If :GLOBAL.I > 250 Then :GLOBAL.I := 5 ;
              Else  :GLOBAL.I := :GLOBAL.I + 5 ;
              End if ;     
              LC$C := To_Char(LN$Rec) || ','
                   || To_Char(255) || ','
                   || To_Char(255-:GLOBAL.I) || ','
                   || To_Char(255-:GLOBAL.I) ;    
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_BGCOLOR', LC$C );
              Synchronize;
         End if ;
    end;When-Create-Record trigger:
    declare
         LN$N    pls_integer ;
         LN$Rec  pls_integer := :system.cursor_record ;
         LC$C    Varchar2(15) ;
    Begin     
         if get_block_property('EMP',TOP_RECORD) > 1 Then
              LN$n := :system.cursor_record - get_block_property('EMP',TOP_RECORD) + 1 ;
         else
              LN$N := :system.cursor_record ;
         end if;
         If LN$N > 0 Then
              Set_Custom_Property('EMP.BT', LN$n, 'SET_LOG', 'true' );
              -- Add the new item --
              Set_Custom_Property('EMP.BT', LN$n, 'SET_NEW_REC', to_char(LN$Rec) );
         End if ;
    end;Post-Query trigger:
    declare
         LN$Pos  pls_integer ;
         LN$Rec  pls_integer := Get_Block_Property('EMP', CURRENT_RECORD) ;
         LN$Max  pls_integer := Get_Block_Property('EMP', RECORDS_DISPLAYED) ;
         LC$C    Varchar2(15) ;
    Begin     
         LN$Pos :=  LN$Rec - (trunc(LN$Rec/LN$Max) * LN$Max) ;
         If LN$Pos = 0 Then LN$Pos := LN$Max ; End if ;
         If LN$Pos > 0 Then
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_LOG', 'true' );
              -- Add the new item --
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_NEW_REC', to_char(LN$Rec) );
              -- Set some properties --
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_LABEL', to_char(LN$Rec) || ',' || :EMP.ENAME );
              If :EMP.JOB = 'MANAGER' Then
                Set_Custom_Property('EMP.BT', LN$Pos, 'SET_FONT', to_char(LN$Rec) || ',Arial,bold,14' );
                Set_Custom_Property('EMP.BT', LN$Pos, 'SET_FGCOLOR', to_char(LN$Rec) || ',0,0,255' );
              End if ;
              If :GLOBAL.I > 250 Then :GLOBAL.I := 5 ;
              Else  :GLOBAL.I := :GLOBAL.I + 5 ;
              End if ;     
              LC$C := To_Char(LN$Rec) || ','
                   || To_Char(255) || ','
                   || To_Char(255-:GLOBAL.I) || ','
                   || To_Char(255-:GLOBAL.I) ;    
              Set_Custom_Property('EMP.BT', LN$Pos, 'SET_BGCOLOR', LC$C );
              Synchronize;
         End if ;
    end;Don't forget to copy the multirecord.jar file in your /forms/java folder, then add it to the archive and archive_jini tags of your /forms/server/formsweb.cfg file.
    Enjoy it,
    Francois

  • Anyone able to give simple 'how to install' instructions for linux ?

    I have a G5 1.8 with 3GB RAM; 80/160 internal SATA drives (the 160gb hd has 2 partitions and one with nothing on it) as well as a Lacie external 320 GB firewire drive. The empty partition on the 160gb drive has been created for Linux (if it ever gets installed).
    I need to know where I can get a copy (I dont have a preference for any type yet-whatever works for a computer that is just used by me- as I just want to get started); How specifically to install it (I dont know anything about linux except I have heard about it's ease of use and how anyone can install it-except me it seems-I literally don't have a clue how to do it). Please leave out the geek speak (lol or at least just make it understandable for a someone who's pretty much a 'non-geek').
    Thanks so much everyone. This has been a 3 month long odyssey for me with everyone I do ask giving me wildly different answers. As I say I have no idea how to do this and just want to get started.
    Anyone , please ?

    Hi-
    There are a few choices for Linux, but there are some peculiarities when it comes to PPC Macs.
    I'll give you this article on Ubuntu Linux which has some general discussion.
    Anyhow, Ubuntu 6.06 (Dapper Drake) may be a good version. Check Here.
    For Ubuntu, download the software and burn to CD.
    Insert the CD into the computer, and, after opening, there should be a screen asking you whether or not you want to run the Live CD. Select Live CD. After loading, the default Ubuntu desktop will show. Once you get to the desktop,select the icon for the full installation of Ubuntu.
    Note that you need to install Ubuntu on the primary system disk.
    Might have a look at Debian. Complete instructions for installation are Here.

  • After burning a audio CD, the Create LightScribe Label window does not show

    I found burning a LightScribe label after burning with iTunes directions. It says that iTunes works with Sonic Express Labeler. After burning the CD, a Create LightScribe Label window is supposed to appear. It does not. Why? Help!!
    HP Pavilion a1220n   Windows XP  
    HP Pavilion a1220n   Windows XP  

    No one answered his question. On HP it says:
    Creating a LightScribe label with iTunes
    iTunes works with Sonic Express Labeler to conveniently burn labels on a data CD or audio CD from iTunes. The playlist you create in iTunes to burn a disc is automatically imported into Express Labeler so that this information is available for you to use on your LightScribe label.
    NOTE: To use Express Labeler from iTunes, the data or music tracks in the playlist your are using must fit on a single CD.
    Click Start, All Programs, iTunes, and then click iTunes again.
    Burn a data or audio CD with iTunes. When the burning process is complete, click Yes on the Create LightScribe Label window.
    Make sure that Disc Label is selected in Step 1: Select Project.
    Select a label template by clicking the left or right arrows next to Layout and choosing a layout.
    NOTE: The various layouts show different amounts of playlist information. Some show only the playlist title, others show the playlist title and track names. You can edit the playlist information by clicking Disc Title to open the Edit Disc Title window.
    Click Tracks to display the Edit Tracks window. Click New to display the Track window. Enter text to identify the first track or file (you can optionally enter artist and date, or length), and then click OK.
    Repeat step 5 for each track or file on the disc.
    Click the left or right arrows next to Background to select design elements for the disc. The selections you make are previewed in the disc window.
    NOTE: If you use a color image, LightScribe burns it as a greyscale (monochrome) image.
    When you are satisfied with the appearance of your label design, insert the LightScribe disc (label-side down) into the disc drive tray and then click Print.
    From the Disc Label menu, select LightScribe 12cm Disc.
    Select a Contrast Level and then click OK to begin burning the label. The estimated time to complete the label is displayed, along with a progress bar. You can continue to work on your PC while LightScribe is burning the label.
    NOTE: A sudden bump or vibration of the computer during the labeling process may affect the quality of the label.
    His question is why this does not happen. What version of iTunes are you using? Is an upgrade to the newest version needed? I woul dlik eto hear form others who use lightscribe with itunes and how they do it.

  • LightScribe Labels

    HP Photosmart C8180 All-in-One Printer
    Windows Vista 32-bit
    HP Photosmart C8100 is enable to print directly on CD/DVD (massage in HP Photosmart Essential 2.5)
    No changes (not working from beginning)
    As I can not get information anywhere else I would ask: Is it possible to print LightScribe Pictures Labels (sent to C8180 printer, using WiFi network, from my Laptop) I can not use HP Photosmart Essential 2.5 to do this, as this program show me every time massage that my C8180 is not capable to do this. I can only print LigtScribe Labels directly from panel of my C8180 printer (only simply one - just letters).

    Are you referring to regular CD labels?
    LightScribe is a special type of disc and CD/DVD burner to burn the label directly into the disk rather than printing on it.  LightScribe is completely separate from any printer.
    Try reviewing HP's LightScribe site for more information.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

Maybe you are looking for

  • Unable to Drop table from a corrupted Data Block

    while exporting tables i got message data block corrupted 7481. and while i was trying to drop the table, found SQL Recursive Error. Pls Help me. i am on the way to recreate my database.. Thanks Rinson

  • Ipod touch will not restore it get half way then freezes

    ipod apps were unreponsive so i restored ipod now it will not restore how long should it take it has been restoring for 5 hours is half way and looks as if it has frozen ?

  • Sequence preset settings for HD

    I'm new to shooting in HD, and I have a Sanyo Xacti HD2000 camcorder. I'm using Final Cut Pro v 5.1.4. The .mp4 files which come off the camera I assume are encoded with AVCHD, since that's what the documentation says. Since FCP (at least my version)

  • ITunes Syncing Error -- "Unknown Error (-69)"

    When I try to sync iTunes with my iPod the process stops at the same point, about ten percent into the sync (after about 87 songs), and gives me the following error message: "Attempting to copy to the disk [my ipod] failed. An unknown error occurred

  • Can't choose words in Custom input on OS X Mavericks

    Before I upgrade to OS X Mavericks, my custom input source works fine, I can choose the word from the list by using the numbers. However, after i upgraded to OS X Mavericks, the custom input can only use arrows to choose the specified wordings.