> > in your plist. You could also provide additional info like specific
> > icons for each file type, use a CFBundleOSType instead of a file
> > extension, etc.
> Yes i tried that, i also copied the whole textedit plis.info file to my .app 
> package and edited the bundlenames.
> Same error I can not drag a file onto the .app package.
>
> > --Christophe
> Thanks Louis

SOrrz for double post.
I solved the problem.
I use this info.plist:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" 
"http://www.apple.com/DTDs/PropertyList-1.0.dtd";>
<plist version="1.0">
<dict>
        <key>CFBundleDevelopmentRegion</key>
        <string>English</string>
        <key>CFBundleExecutable</key>
        <string>fedit</string>
        <key>CFBundleName</key>
        <string>fedit</string>
        <key>CFBundleIdentifier</key>
        <string>com.company.fedit</string>
        <key>CFBundleInfoDictionaryVersion</key>
        <string>6.0</string>
        <key>CFBundlePackageType</key>
        <string>APPL</string>
        <key>CFBundleSignature</key>
        <string>fedit</string>
        <key>CFBundleShortVersionString</key>
        <string>0.1</string>
        <key>CFBundleVersion</key>
        <string>1</string>
        <key>CSResourcesFileMapped</key>
        <true/>
        <key>CFBundleDocumentTypes</key>
        <array>
                <dict>
                        <key>CFBundleTypeRole</key>
                        <string>Viewer</string>
                        <key>CFBundleTypeExtensions</key>
                        <array>
                                <string>*</string>
                        </array>
                        <key>CFBundleTypeOSTypes</key>
                        <array>
                                <string>fold</string>
                                <string>disk</string>
                                <string>****</string>
                        </array>
                </dict>
        </array>
</dict>
</plist>
and this PkgInfo: (One single line)

APPL????



I want to thank the autors and the community who for the great work.

Greets Lis.
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to