Adobe Illustrator 10 jeux de données variables et de bibliothèques

  • rjmthezonenet
  • Expert
  • Expert
  • Avatar de l’utilisateur
  • Inscription: Jan 14, 2004
  • Messages: 526
  • Loc: St. John's, Newfoundland, Canada
  • Status: Offline

Message Février 25th, 2004, 2:49 pm

Selon la documentation:

1. Choisissez Charger variable Bibliothèque à partir du menu de la palette Variables.

2.Sélectionnez le fichier XML à partir duquel vous souhaitez importer des variables, et cliquez sur Ouvrir.

Les variables chargées et ensembles de données devraient maintenant apparaître dans la palette de variables, mais une erreur inconnue a empêché l'opération.

J'avais l'impression que je pourrais créer un ensemble de données, sauf la bibliothèque variables, d'éditer les données XML, charger la bibliothèque de nouvelles variables et de partir aux courses. (Appare notly pas.)

Voici un fichier XML en abrégé.

Code: [ Select ]
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN"  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd" [
    <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
    <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
    <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
    <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
    <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
<!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
]>
<svg>
<variableSets xmlns="&ns_vars;">
    <variableSet varSetName="binding1" locked="none">
        <variables>
            <variable varName="DeptR" trait="visibility" category="&ns_vars;"></variable>
            <variable varName="DeptB" trait="visibility" category="&ns_vars;"></variable>
            <variable varName="ShldR" trait="visibility" category="&ns_vars;"></variable>
            <variable varName="ShldB" trait="visibility" category="&ns_vars;"></variable>
            <variable varName="DeptT" trait="textcontent" category="&ns_flows;"></variable>
            <variable varName="DivT" trait="textcontent" category="&ns_flows;"></variable>
        </variables>
        <v:sampleDataSets xmlns="&ns_custom;" xmlns:v="&ns_vars;">
            <v:sampleDataSet dataSetName="sneaker-B">
                <DeptR>false</DeptR>
                <DeptB>true</DeptB>
                <ShldR>false</ShldR>
                <ShldB>true</ShldB>
                <DeptT>
                    <p>Department of Big Shoes</p>
                </DeptT>
                <DivT>
                    <p>Sneakers Division Division</p>
                </DivT>
            </v:sampleDataSet>
            <v:sampleDataSet dataSetName="sneaker-R">
                <DeptR>true</DeptR>
                <DeptB>false</DeptB>
                <ShldR>true</ShldR>
                <ShldB>false</ShldB>
                <DeptT>
                    <p>Department of Big Shoes</p>
                </DeptT>
                <DivT>
                    <p>Sneakers Division Division</p>
                </DivT>
            </v:sampleDataSet>
            <v:sampleDataSet dataSetName="boot-B">
                <DeptR>false</DeptR>
                <DeptB>true</DeptB>
                <ShldR>false</ShldR>
                <ShldB>true</ShldB>
                <DeptT>
                    <p>Department of Big Shoes</p>
                </DeptT>
                <DivT>
                    <p>Boots Division</p>
                </DivT>
            </v:sampleDataSet>
            <v:sampleDataSet dataSetName="boot-R">
                <DeptR>true</DeptR>
                <DeptB>false</DeptB>
                <ShldR>true</ShldR>
                <ShldB>false</ShldB>
                <DeptT>
                    <p>Department of Big Shoes</p>
                </DeptT>
                <DivT>
                    <p>Boots Division</p>
                </DivT>
            </v:sampleDataSet>
        </v:sampleDataSets>
    </variableSet>
</variableSets>
</svg>
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN"  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd" [
  3.     <!ENTITY ns_graphs "http://ns.adobe.com/Graphs/1.0/">
  4.     <!ENTITY ns_vars "http://ns.adobe.com/Variables/1.0/">
  5.     <!ENTITY ns_imrep "http://ns.adobe.com/ImageReplacement/1.0/">
  6.     <!ENTITY ns_custom "http://ns.adobe.com/GenericCustomNamespace/1.0/">
  7.     <!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
  8. <!ENTITY ns_extend "http://ns.adobe.com/Extensibility/1.0/">
  9. ]>
  10. <svg>
  11. <variableSets xmlns="&ns_vars;">
  12.     <variableSet varSetName="binding1" locked="none">
  13.         <variables>
  14.             <variable varName="DeptR" trait="visibility" category="&ns_vars;"></variable>
  15.             <variable varName="DeptB" trait="visibility" category="&ns_vars;"></variable>
  16.             <variable varName="ShldR" trait="visibility" category="&ns_vars;"></variable>
  17.             <variable varName="ShldB" trait="visibility" category="&ns_vars;"></variable>
  18.             <variable varName="DeptT" trait="textcontent" category="&ns_flows;"></variable>
  19.             <variable varName="DivT" trait="textcontent" category="&ns_flows;"></variable>
  20.         </variables>
  21.         <v:sampleDataSets xmlns="&ns_custom;" xmlns:v="&ns_vars;">
  22.             <v:sampleDataSet dataSetName="sneaker-B">
  23.                 <DeptR>false</DeptR>
  24.                 <DeptB>true</DeptB>
  25.                 <ShldR>false</ShldR>
  26.                 <ShldB>true</ShldB>
  27.                 <DeptT>
  28.                     <p>Department of Big Shoes</p>
  29.                 </DeptT>
  30.                 <DivT>
  31.                     <p>Sneakers Division Division</p>
  32.                 </DivT>
  33.             </v:sampleDataSet>
  34.             <v:sampleDataSet dataSetName="sneaker-R">
  35.                 <DeptR>true</DeptR>
  36.                 <DeptB>false</DeptB>
  37.                 <ShldR>true</ShldR>
  38.                 <ShldB>false</ShldB>
  39.                 <DeptT>
  40.                     <p>Department of Big Shoes</p>
  41.                 </DeptT>
  42.                 <DivT>
  43.                     <p>Sneakers Division Division</p>
  44.                 </DivT>
  45.             </v:sampleDataSet>
  46.             <v:sampleDataSet dataSetName="boot-B">
  47.                 <DeptR>false</DeptR>
  48.                 <DeptB>true</DeptB>
  49.                 <ShldR>false</ShldR>
  50.                 <ShldB>true</ShldB>
  51.                 <DeptT>
  52.                     <p>Department of Big Shoes</p>
  53.                 </DeptT>
  54.                 <DivT>
  55.                     <p>Boots Division</p>
  56.                 </DivT>
  57.             </v:sampleDataSet>
  58.             <v:sampleDataSet dataSetName="boot-R">
  59.                 <DeptR>true</DeptR>
  60.                 <DeptB>false</DeptB>
  61.                 <ShldR>true</ShldR>
  62.                 <ShldB>false</ShldB>
  63.                 <DeptT>
  64.                     <p>Department of Big Shoes</p>
  65.                 </DeptT>
  66.                 <DivT>
  67.                     <p>Boots Division</p>
  68.                 </DivT>
  69.             </v:sampleDataSet>
  70.         </v:sampleDataSets>
  71.     </variableSet>
  72. </variableSets>
  73. </svg>


Toute idée de la raison que le travail wouldnt? Im perplexe!
  • Anonymous
  • Bot
  • No Avatar
  • Inscription: 25 Feb 2008
  • Messages: ?
  • Loc: Ozzuland
  • Status: Online

Message Février 25th, 2004, 2:49 pm

  • rjmthezonenet
  • Expert
  • Expert
  • Avatar de l’utilisateur
  • Inscription: Jan 14, 2004
  • Messages: 526
  • Loc: St. John's, Newfoundland, Canada
  • Status: Offline

Message Février 26th, 2004, 5:05 pm

J'ai dû appeler Adobe soutien technique à ce problème. Ils ont analysé plusieurs fichiers par FTP, peut reproduire le problème, et sont encore perplexe. J'ai un sentiment de ce qui sera le développeur qui a écrit le code pour les ensembles de données. :-P
  • ATNO/TW
  • Super Moderator
  • Super Moderator
  • Avatar de l’utilisateur
  • Inscription: Mai 28, 2003
  • Messages: 23404
  • Loc: Woodbridge VA
  • Status: Offline

Message Février 26th, 2004, 7:49 pm

Bon appel (parden le jeu de mots) * lol
"There's no place like 127.0.0.1 except for ::1."
Alexandria Networks. Leader in IT consulting for associations/non-profits, and small to medium sized businesses around the northern Virginia and Washington D.C. metro area.
  • rjmthezonenet
  • Expert
  • Expert
  • Avatar de l’utilisateur
  • Inscription: Jan 14, 2004
  • Messages: 526
  • Loc: St. John's, Newfoundland, Canada
  • Status: Offline

Message Février 26th, 2004, 9:35 pm

Ouais, pas un bon départ quand vous voulez générer des images basées sur les données du back office et de l'ensemble du script, elle-bang. Après deux heures d'appel, le très utile Adobe représentant ne peut promettre de revenir à moi dans quelques jours (ne pas se plaindre, je comprends).

Je voudrais quelqu'un sur Ozzu Illustrator a de l'expérience avec des séries de données et les développeurs kit! :-D
  • ATNO/TW
  • Super Moderator
  • Super Moderator
  • Avatar de l’utilisateur
  • Inscription: Mai 28, 2003
  • Messages: 23404
  • Loc: Woodbridge VA
  • Status: Offline

Message Février 26th, 2004, 9:58 pm

J'entends ya - J'ai l'proggy - mais ils n'ont jamais vraiment eu besoin de l'utiliser, donc je ne sais vraiment pas il.
"There's no place like 127.0.0.1 except for ::1."
Alexandria Networks. Leader in IT consulting for associations/non-profits, and small to medium sized businesses around the northern Virginia and Washington D.C. metro area.

Afficher de l'information

  • Total des messages de ce sujet: 5 messages
  • Utilisateurs parcourant ce forum: Aucun utilisateur enregistré et 51 invités
  • Vous ne pouvez pas poster de nouveaux sujets
  • Vous ne pouvez pas répondre aux sujets
  • Vous ne pouvez pas éditer vos messages
  • Vous ne pouvez pas supprimer vos messages
  • Vous ne pouvez pas joindre des fichiers
 
 

© 2011 Unmelted, LLC. Ozzu® est une marque déposée de Unmelted, LLC