Search the web
Sign In
New User? Sign Up
InterceptUsers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 12 - 41 of 71   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#41 From: <chuck_hurst@...>
Date: Tue Jan 30, 2007 8:29 pm
Subject: RE: [PantheonUsers] 5.1 issues
chuckhurst
Offline Offline
Send Email Send Email
 

I have the same problem with all of the special tools I created for Agilent. We are still using 5.0 because of the specific library naming convention that was created in 5.1.

 

Chuck

 


From: PantheonUsers@yahoogroups.com [mailto:PantheonUsers@yahoogroups.com] On Behalf Of greg_dance
Sent: Tuesday, January 30, 2007 12:21 PM
To: PantheonUsers@yahoogroups.com
Subject: [PantheonUsers] 5.1 issues

 

Anyone else in the group actively using the 5.1 release for
production work?

I'm curious as to others thoughts on some of the 5.1 changes. In
particular the way that the name of the library a geom came from is
now incorporated into the geometry name.

comp("L1002", "1005_8p_CHIP_ARRAY", @placed, 5.625, 6.0,
0, @top)

in the pdb now becomes:

comp("L1002", "<internal>:1005_8p_CHIP_ARRAY", @placed,
5.625, 6.0, 0, @top)

Instead of adding an attribute to the design they put the name of the
library in the geom name, just like when the height property was
augmented with the gap height information to become:

prop("COMPONENT_HEIGHT", "0.6,0.0")
when it should have been done like this:
prop("COMPONENT_HEIGHT", "0.6")
prop("GAP_HEIGHT", "0.0")

Here's my basic beef (beyond the fact that a augmenting other data
onto a property or field violates database integrity) is that the
impact affects most everything everything:

1) the library name appears before the geoms name in the GUI so it
makes it difficult to read the real meaningful name of your geom as
it is usually to long to fit in the display now.
2) Perl commands that used to return the component geometry name now
include the library in the name which screws up any and all perl
scripts you may have dealing with opening and closing geometries or
reporting geoms information to a file.
3) Schematics driving pantheon from a non-mozaic/Indx path are now
royally messed up because the schematic that says "SOIC_8P" needs to
say "<internal>:SOIC_8P" instead.

Anyone else finding this a pain in the backside?

Greg


#40 From: "greg_dance" <greg_dance@...>
Date: Tue Jan 30, 2007 8:21 pm
Subject: 5.1 issues
greg_dance
Offline Offline
Send Email Send Email
 
Anyone else in the group actively using the 5.1 release for
production work?

I'm curious as to others thoughts on some of the 5.1 changes. In
particular the way that the name of the library a geom came from is
now incorporated into the geometry name.

             comp("L1002", "1005_8p_CHIP_ARRAY", @placed, 5.625, 6.0,
0, @top)

in the pdb now becomes:

             comp("L1002", "<internal>:1005_8p_CHIP_ARRAY", @placed,
5.625, 6.0, 0, @top)

Instead of adding an attribute to the design they put the name of the
library in the geom name, just like when the height property was
augmented with the gap height information to become:

                 prop("COMPONENT_HEIGHT", "0.6,0.0")
when it should have been done like this:
                 prop("COMPONENT_HEIGHT", "0.6")
                 prop("GAP_HEIGHT", "0.0")

Here's my basic beef (beyond the fact that a augmenting other data
onto a property or field violates database integrity) is that the
impact affects most everything everything:

1) the library name appears before the geoms name in the GUI so it
makes it difficult to read the real meaningful name of your geom as
it is usually to long to fit in the display now.
2) Perl commands that used to return the component geometry name now
include the library in the name which screws up any and all perl
scripts you may have dealing with opening and closing geometries or
reporting geoms information to a file.
3) Schematics driving pantheon from a non-mozaic/Indx path are now
royally messed up because the schematic that says "SOIC_8P" needs to
say "<internal>:SOIC_8P" instead.

Anyone else finding this a pain in the backside?

Greg

#39 From: George Helm <awkster@...>
Date: Fri Jan 19, 2007 2:30 pm
Subject: Re: [PantheonUsers] Handy tool for creating net keepouts under RF lines
awkster
Offline Offline
Send Email Send Email
 
Thanks Greg

--- greg_dance <greg_dance@...> wrote:

>
> Often times there is a need to keepout ground fill
> on one or more layers
> from under an SMT pad or a microstrip line.
>
> I uploaded to the group's web page a perl script
> called
> Object2NetKeepout.pl to do this automatically. It
> can be found here:
>
http://tech.groups.yahoo.com/group/PantheonUsers/files/
>
<http://tech.groups.yahoo.com/group/PantheonUsers/files/>
>
> All you have to do is select some primitive objects
> that represent the
> area you want to stay clear of. Then run the perl
> script by either the
> menu or a newly programmed function key to get the
> dialog box to open.
> Specify the layers you want the keepout on, which
> nets to keepout, and
> how far away from the selected objects you want the
> nets to stay. Then
> execute the dialog box.
> The program works with multiple areas selected at
> the same time as well.
> This added to your function.generic file will give
> you a function key in
> Pantheon each time you startup.   def f k generic
> F9C 'Obj2Keepout'
> -display -no_trans
> def f k generic F9C 'EXEcute Perl "c:\Perl
> Utilities/Object2NetKeepout.pl'' ''C:\Program
> Files\intercept/pantheon''
> ' -function -no_trans
> def f k generic F9C 'EXEcute Perl ''c:\Perl
> Utilities/Object2NetKeepout.pl' ''C:\Program
> Files\intercept/pantheon''
> ' -execute -no_trans Questions?Comments? Greg
>







________________________________________________________________________________\
____
Now that's room service!  Choose from over 150,000 hotels
in 45,000 destinations on Yahoo! Travel to find your fit.
http://farechase.yahoo.com/promo-generic-14795097

#38 From: "greg_dance" <greg_dance@...>
Date: Wed Jan 17, 2007 11:20 pm
Subject: Handy tool for creating net keepouts under RF lines
greg_dance
Offline Offline
Send Email Send Email
 

Often times there is a need to keepout ground fill on one or more layers from under an SMT pad or a microstrip line.

I uploaded to the group's web page a perl script called Object2NetKeepout.pl to do this automatically. It can be found here: http://tech.groups.yahoo.com/group/PantheonUsers/files/

All you have to do is select some primitive objects that represent the area you want to stay clear of. Then run the perl script by either the menu or a newly programmed function key to get the dialog box to open. Specify the layers you want the keepout on, which nets to keepout, and how far away from the selected objects you want the nets to stay. Then execute the dialog box.

The program works with multiple areas selected at the same time as well.
 
 
This added to your function.generic file will give you a function key in Pantheon each time you startup.
def f k generic F9C 'Obj2Keepout' -display -no_trans
def f k generic F9C 'EXEcute Perl "c:\Perl Utilities/Object2NetKeepout.pl'' ''C:\Program Files\intercept/pantheon'' ' -function -no_trans
def f k generic F9C 'EXEcute Perl ''c:\Perl Utilities/Object2NetKeepout.pl' ''C:\Program Files\intercept/pantheon'' ' -execute -no_trans
Questions?Comments?
Greg

#37 From: "greg_dance" <greg_dance@...>
Date: Wed Jan 17, 2007 11:18 pm
Subject: Handy tool for creating net keepouts under RF lines
greg_dance
Offline Offline
Send Email Send Email
 

Often times there is a need to keepout ground fill on one or more layers from under an SMT pad or a microstrip line.

I uploaded to the group's web page a perl script called Object2NetKeepout.pl to do this automatically. It can be found here: http://tech.groups.yahoo.com/group/PantheonUsers/files/

All you have to do is select some primitive objects that represent the area you want to stay clear of. Then run the perl script by either the menu or a newly programmed function key to get the dialog box to open. Specify the layers you want the keepout on, which nets to keepout, and how far away from the selected objects you want the nets to stay. Then execute the dialog box.

The program works with multiple areas selected at the same time as well.
 
 
This added to your function.generic file will give you a function key in Pantheon each time you startup.
def f k generic F9C 'Obj2Keepout' -display -no_trans
def f k generic F9C 'EXEcute Perl "c:\Perl Utilities/Object2NetKeepout.pl'' ''C:\Program Files\intercept/pantheon'' ' -function -no_trans
def f k generic F9C 'EXEcute Perl ''c:\Perl Utilities/Object2NetKeepout.pl' ''C:\Program Files\intercept/pantheon'' ' -execute -no_trans
Questions?Comments?
Greg

#36 From: George Helm <awkster@...>
Date: Wed Jan 3, 2007 8:12 pm
Subject: RE: [PantheonUsers] Searchable PDF
awkster
Offline Offline
Send Email Send Email
 
As a test, I loaded Mozaix 3.0 and tried to run a
Mozaix 2.2 script. As you pointed out, Greg, the core
perl looks like it is behaving OK but the front-end
dialogs all break.

Reading the xscript clearly shows 3.0 now requires the
WxPerl lib instead of the 2.2 Mozaix lib, which means
the dialogs would have to be recoded.

I use WxPerl (alongside TK) for my personal use and so
far I'm not entirely sold on WxPerl or WxWidgets.
Maybe I will get a little more confidence with that
library  after using it in the new look of Mozaix and
hopefully soon, Pantheon.

George

--- Greg Dance <greg_dance@...> wrote:


---------------------------------


I wouldn't think much would break except if you are
creating dialog boxes for your perl scripts.

Greg



---------------------------------
From: George Helm <awkster@...>
Reply-To: PantheonUsers@yahoogroups.com
To: PantheonUsers@yahoogroups.com
Subject: RE: [PantheonUsers] Searchable PDF
Date: Tue, 2 Jan 2007 09:04:44 -0800 (PST)


Thank you -- quite interesting.

If/when they change Pantheon to the Mozaix look
(WxWidgets?) that probably means that all the existing
PerlWare customization will break and have to be
re-coded with their new API. More fun.

Thanks again.

--- Greg Dance <greg_dance@...> wrote:

---------------------------------


I actually went though this with Intecept about 1
month ago.

The official word is that, while some applications
output text using fonts in postscript so that a font
substitution can be done, Pantheon does not. It
outputs stroked/rasterized data from the beginning.

No searchable text will be possible until there is a
major overhaul of the interface (and they stop using
the old boardstation fonts.) Though it is planned to
give the application an overhaul to have a GUI similar
to Mosaix, it isn't going to be next week.

Greg

---------------------------------
From: "George" <awkster@...>
Reply-To: PantheonUsers@yahoogroups.com
To: PantheonUsers@yahoogroups.com
Subject: [PantheonUsers] Searchable PDF
Date: Mon, 01 Jan 2007 19:56:09 -0000

When I create my PDF sheets (Schematic, Assy, Fab) I
need to have the
text seen as real text and searchable -- not part of
one large image
which is the normal result.

If I recall correctly, to accomplish this, the fonts
need to be
swapped out. Does anyone have the blow-by-blow for
that procedure?

Thanks, George

---------------------------------
The MSN Entertainment Guide to Golden Globes is here.
Get all the scoop.



__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam
protection around
http://mail.yahoo.com








---------------------------------
  Experience the magic of the holidays. Talk to Santa
on Messenger.







__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

#35 From: "Greg Dance" <greg_dance@...>
Date: Tue Jan 2, 2007 5:22 pm
Subject: RE: [PantheonUsers] Searchable PDF
greg_dance
Offline Offline
Send Email Send Email
 

I wouldn't think much would break except if you are creating dialog boxes for your perl scripts.

Greg


From: George Helm <awkster@...>
Reply-To: PantheonUsers@yahoogroups.com
To: PantheonUsers@yahoogroups.com
Subject: RE: [PantheonUsers] Searchable PDF
Date: Tue, 2 Jan 2007 09:04:44 -0800 (PST)

Thank you -- quite interesting.

If/when they change Pantheon to the Mozaix look
(WxWidgets?) that probably means that all the existing
PerlWare customization will break and have to be
re-coded with their new API. More fun.

Thanks again.

--- Greg Dance <greg_dance@hotmail.com> wrote:

---------------------------------


I actually went though this with Intecept about 1
month ago.

The official word is that, while some applications
output text using fonts in postscript so that a font
substitution can be done, Pantheon does not. It
outputs stroked/rasterized data from the beginning.

No searchable text will be possible until there is a
major overhaul of the interface (and they stop using
the old boardstation fonts.) Though it is planned to
give the application an overhaul to have a GUI similar
to Mosaix, it isn't going to be next week.

Greg

---------------------------------
From: "George" <awkster@yahoo.com>
Reply-To: PantheonUsers@yahoogroups.com
To: PantheonUsers@yahoogroups.com
Subject: [PantheonUsers] Searchable PDF
Date: Mon, 01 Jan 2007 19:56:09 -0000

When I create my PDF sheets (Schematic, Assy, Fab) I
need to have the
text seen as real text and searchable -- not part of
one large image
which is the normal result.

If I recall correctly, to accomplish this, the fonts
need to be
swapped out. Does anyone have the blow-by-blow for
that procedure?

Thanks, George

---------------------------------
The MSN Entertainment Guide to Golden Globes is here.
Get all the scoop.



__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com




Experience the magic of the holidays. Talk to Santa on Messenger.

#34 From: George Helm <awkster@...>
Date: Tue Jan 2, 2007 5:04 pm
Subject: RE: [PantheonUsers] Searchable PDF
awkster
Offline Offline
Send Email Send Email
 
Thank you -- quite interesting.

If/when they change Pantheon to the Mozaix look
(WxWidgets?) that probably means that all the existing
PerlWare customization will break and have to be
re-coded with their new API. More fun.

Thanks again.

--- Greg Dance <greg_dance@...> wrote:


---------------------------------


I actually went though this with Intecept about 1
month ago.


The official word is that, while some applications
output text using fonts in postscript so that a font
substitution can be done, Pantheon does not. It
outputs stroked/rasterized data from the beginning.

No searchable text will be possible until there is a
major overhaul of the interface (and they stop using
the old boardstation fonts.) Though it is planned to
give the application an overhaul to have a GUI similar
to Mosaix, it isn't going to be next week.

Greg


---------------------------------
From: "George" <awkster@...>
Reply-To: PantheonUsers@yahoogroups.com
To: PantheonUsers@yahoogroups.com
Subject: [PantheonUsers] Searchable PDF
Date: Mon, 01 Jan 2007 19:56:09 -0000


When I create my PDF sheets (Schematic, Assy, Fab) I
need to have the
text seen as real text and searchable -- not part of
one large image
which is the normal result.

If I recall correctly, to accomplish this, the fonts
need to be
swapped out. Does anyone have the blow-by-blow for
that procedure?

Thanks, George









---------------------------------
  The MSN Entertainment Guide to Golden Globes is here.
  Get all the scoop.







__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

#33 From: "Greg Dance" <greg_dance@...>
Date: Tue Jan 2, 2007 4:02 pm
Subject: RE: [PantheonUsers] Searchable PDF
greg_dance
Offline Offline
Send Email Send Email
 

I actually went though this with Intecept about 1 month ago.

The official word is that, while some applications output text using fonts in postscript so that a font substitution can be done, Pantheon does not. It outputs stroked/rasterized data from the beginning.

No searchable text will be possible until there is a major overhaul of the interface (and they stop using the old boardstation fonts.) Though it is planned to give the application an overhaul to have a GUI similar to Mosaix, it isn't going to be next week.

Greg


From: "George" <awkster@...>
Reply-To: PantheonUsers@yahoogroups.com
To: PantheonUsers@yahoogroups.com
Subject: [PantheonUsers] Searchable PDF
Date: Mon, 01 Jan 2007 19:56:09 -0000

When I create my PDF sheets (Schematic, Assy, Fab) I need to have the
text seen as real text and searchable -- not part of one large image
which is the normal result.

If I recall correctly, to accomplish this, the fonts need to be
swapped out. Does anyone have the blow-by-blow for that procedure?

Thanks, George




The MSN Entertainment Guide to Golden Globes is here. Get all the scoop.

#32 From: "George" <awkster@...>
Date: Mon Jan 1, 2007 7:56 pm
Subject: Searchable PDF
awkster
Offline Offline
Send Email Send Email
 
When I create my PDF sheets (Schematic, Assy, Fab) I need to have the
text seen as real text and searchable -- not part of one large image
which is the normal result.

If I recall correctly, to accomplish this, the fonts need to be
swapped out. Does anyone have the blow-by-blow for that procedure?

Thanks, George

#31 From: George Helm <awkster@...>
Date: Thu Dec 7, 2006 10:49 pm
Subject: RE: [PantheonUsers] Pantheon <--> Expedition
awkster
Offline Offline
Send Email Send Email
 
Thanks Greg

George

--- Greg Dance <greg_dance@...> wrote:


---------------------------------


Not yet. The Expedition to Pantheon product is
available from Intercept, but I haven't tried it. I
was told the bidirectional translator is work in
progress but no timeline. Don't know of anything on
the front end as far as tranlation goes.

We have one customer we exchanged a database with.
They use expedition and we are going back and forth
with them using BoardStation format as the stepping
stone. It isn't a very good method since so many
features of Pantheon have no equivalent in BS. Much of
the intelligence goes away... dynamic padstacks, auto
vias, etc.

Greg



---------------------------------
From: "George" <awkster@...>
Reply-To: PantheonUsers@yahoogroups.com
To: PantheonUsers@yahoogroups.com
Subject: [PantheonUsers] Pantheon <--> Expedition
Date: Wed, 06 Dec 2006 16:33:03 -0000


Does anyone know if there is a translator (preferrably
round trip) for
Pantheon to Expedition and/or DxDesigner to Mozaix.

Thanks

George









---------------------------------
  WIN up to $10,000 in cash or prizes – enter the
Microsoft Office Live Sweepstakes









________________________________________________________________________________\
____
Any questions? Get answers on any topic at www.Answers.yahoo.com.  Try it now.

#30 From: "Greg Dance" <greg_dance@...>
Date: Thu Dec 7, 2006 5:25 am
Subject: RE: [PantheonUsers] Pantheon <--> Expedition
greg_dance
Offline Offline
Send Email Send Email
 

Not yet. The Expedition to Pantheon product is available from Intercept, but I haven't tried it. I was told the bidirectional translator is work in progress but no timeline. Don't know of anything on the front end as far as tranlation goes.

We have one customer we exchanged a database with. They use expedition and we are going back and forth with them using BoardStation format as the stepping stone. It isn't a very good method since so many features of Pantheon have no equivalent in BS. Much of the intelligence goes away... dynamic padstacks, auto vias, etc.

Greg


From: "George" <awkster@...>
Reply-To: PantheonUsers@yahoogroups.com
To: PantheonUsers@yahoogroups.com
Subject: [PantheonUsers] Pantheon <--> Expedition
Date: Wed, 06 Dec 2006 16:33:03 -0000

Does anyone know if there is a translator (preferrably round trip) for
Pantheon to Expedition and/or DxDesigner to Mozaix.

Thanks

George




WIN up to $10,000 in cash or prizes – enter the Microsoft Office Live Sweepstakes

#29 From: "George" <awkster@...>
Date: Wed Dec 6, 2006 4:33 pm
Subject: Pantheon <--> Expedition
awkster
Offline Offline
Send Email Send Email
 
Does anyone know if there is a translator (preferrably round trip) for
Pantheon to Expedition and/or DxDesigner to Mozaix.

Thanks

George

#28 From: "Greg Dance" <greg_dance@...>
Date: Tue Nov 7, 2006 7:43 pm
Subject: RE: [PantheonUsers] Pantheon Info
greg_dance
Offline Offline
Send Email Send Email
 

Tom,

I've used BoardStation, Pads and about a half dozen other systems over the years. As a layout tool I would take it hands down over any of the other ones I've used when it comes to pure productivity. One of the places it really distinguishes itself is when someone says something like:

"Can you take this section of circuitry and put it on the back side of the board... Rotate it 90 degrees, make a second copy of the circuitry and then drop in the RF radio we did on the last project in this area..."

If all you have are simple "connect the dots" boards then about any tool will do, but if you have serious deadlines and a need for serious data manipulation I wouldn't take anything else but Pantheon.

Just to show I don't work for Intercept sales... it does have a few weak spots:

1) Because it lets you do almost anything and then check it against rules when you are all done, it is easy for the junior board designer to get overwhelmed by the tool. Junior guys tend to need a "Windows" like environment where the application restricts them to only being able to do standard things.

2) Because it is so "open" there are often a large number of ways to accomplish the same task. For some people that can be a bit confusing.

3) The GUI is about 10 years old and it could really use make-over which would offer an opportunity to improve #1 and 2 above.

Though I have brought it in to 2 different companies, in the first we had some junior people and they resisted the change. In the second there were only senior guys and everyone has loved it. Two who left and went to work for other companies have send me emails crying about having to use other tools again.

Greg


From: "seaturtle12345" <seaturtle12345@...>
Reply-To: PantheonUsers@yahoogroups.com
To: PantheonUsers@yahoogroups.com
Subject: [PantheonUsers] Pantheon Info
Date: Tue, 07 Nov 2006 14:55:57 -0000

Hello Group,
I'm in the process of purchasing new PCB software and I was hoping
that this group would take a few moments and give me info on Pantheons
strengths and weaknesses in comparisions with let say, Pads & Orcad.
Thanks
Tom




Add a Yahoo! contact to Windows Live Messenger for a chance to win a free trip! 

#27 From: "seaturtle12345" <seaturtle12345@...>
Date: Tue Nov 7, 2006 2:55 pm
Subject: Pantheon Info
seaturtle12345
Offline Offline
Send Email Send Email
 
Hello Group,
I'm in the process of purchasing new PCB software and I was hoping
that this group would take a few moments and give me info on Pantheons
strengths and weaknesses in comparisions with let say, Pads & Orcad.
Thanks
Tom

#26 From: George Helm <awkster@...>
Date: Wed Sep 27, 2006 5:04 pm
Subject: Re: [PantheonUsers] 5.0_08L
awkster
Offline Offline
Send Email Send Email
 
I'm running 5.0_08N (5.0_08O is available) and it
appears to be very stable, albeit I haven'r really
stressed it beyond basic, everyday chores.

Sounds like ITI support has been Mentorized.

George


--- greg_dance <greg_dance@...> wrote:

> Anybody else running this release? I'm finding more
> problems with it
> than prior releases and it is supposed to be the
> production release
> and the last 5.0 release.
>
> Here's a few items I have found:
> 1) Guides of a very short length or zero length but
> spanning layers
> (a z axis guide) are not completed using connect
> traces like they
> normally would.
>
> 2) Some areafills simply will not create their
> secondary fill areas.
> I've even redrawn them. When you draw them the first
> time they look
> right but if you reconstruct it the secondary fill
> goes away even if
> you did nothing in between those two steps.
>
> 3)Sometimes I select vertices of a net keepout to
> move it over one
> way or the other. Now occasionally one wont move
> over and you can't
> even select it. The only way to select the vertex is
> to set the
> select filter to attribute, select the keepout,
> unselect it, set the
> select filter back to vertex and then grab the
> vertex and move it.
>
> 4) Some objects are visible at one zoom level and if
> you zoom in they
> dissappear. That should happen as you zoom out and
> the number of
> pixels on your screen don't offer fine enough
> resolution but if you
> zoom in you should have more pixels and see things
> fine...
>
> That's just a few of mine. BTW, is anyone getting
> any sort of
> response from the support email address? I've sent
> off several in the
> last week or two and gotten no response via email or
> phone.
>
> Greg
>
>
>
>
>





__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

#25 From: "greg_dance" <greg_dance@...>
Date: Wed Sep 27, 2006 4:44 pm
Subject: 5.0_08L
greg_dance
Offline Offline
Send Email Send Email
 
Anybody else running this release? I'm finding more problems with it
than prior releases and it is supposed to be the production release
and the last 5.0 release.

Here's a few items I have found:
1) Guides of a very short length or zero length but spanning layers
(a z axis guide) are not completed using connect traces like they
normally would.

2) Some areafills simply will not create their secondary fill areas.
I've even redrawn them. When you draw them the first time they look
right but if you reconstruct it the secondary fill goes away even if
you did nothing in between those two steps.

3)Sometimes I select vertices of a net keepout to move it over one
way or the other. Now occasionally one wont move over and you can't
even select it. The only way to select the vertex is to set the
select filter to attribute, select the keepout, unselect it, set the
select filter back to vertex and then grab the vertex and move it.

4) Some objects are visible at one zoom level and if you zoom in they
dissappear. That should happen as you zoom out and the number of
pixels on your screen don't offer fine enough resolution but if you
zoom in you should have more pixels and see things fine...

That's just a few of mine. BTW, is anyone getting any sort of
response from the support email address? I've sent off several in the
last week or two and gotten no response via email or phone.

Greg

#24 From: "chuckhurst" <chuck_hurst@...>
Date: Mon Aug 14, 2006 10:10 pm
Subject: Re: Pantheon 5.1 release -- Head's up
chuckhurst
Offline Offline
Send Email Send Email
 
--- In PantheonUsers@yahoogroups.com, "George" <awkster@...> wrote:
>
> --- In PantheonUsers@yahoogroups.com, "chuckhurst" <chuck_hurst@>
> wrote:
> >
> > As you will find very quickly for those of you who create Perl
routines
> > that the latest version has changed the Perl Command strings in
many of
> > the calls. Yuk! Maintaining multipule versions is a royal pain.
> >
> > On the good side, 5.1 has some cool features that I believe will
help
> > make reuse a common process going foreward.
> >
>
> Thanks for the heads-up Chuck. Do you know if anyone has compiled a
> list of differences yet?
>
I did complile a list, I don't know if I can put it in the Files draw.
Contact me and I can E-mail it to anyone who wants it.

Chuck

#23 From: "George" <awkster@...>
Date: Mon Aug 14, 2006 10:04 pm
Subject: Re: Pantheon 5.1 release -- Head's up
awkster
Offline Offline
Send Email Send Email
 
--- In PantheonUsers@yahoogroups.com, "chuckhurst" <chuck_hurst@...>
wrote:
>
> As you will find very quickly for those of you who create Perl routines
> that the latest version has changed the Perl Command strings in many of
> the calls. Yuk! Maintaining multipule versions is a royal pain.
>
> On the good side, 5.1 has some cool features that I believe will help
> make reuse a common process going foreward.
>

Thanks for the heads-up Chuck. Do you know if anyone has compiled a
list of differences yet?

#22 From: "chuckhurst" <chuck_hurst@...>
Date: Mon Aug 14, 2006 8:41 pm
Subject: Pantheon 5.1 release -- Head's up
chuckhurst
Offline Offline
Send Email Send Email
 
As you will find very quickly for those of you who create Perl routines
that the latest version has changed the Perl Command strings in many of
the calls. Yuk! Maintaining multipule versions is a royal pain.

On the good side, 5.1 has some cool features that I believe will help
make reuse a common process going foreward.

#21 From: "George" <awkster@...>
Date: Mon Jul 10, 2006 10:56 pm
Subject: 2 Mozaix Perl questions (Cross-posted from IDG)
awkster
Offline Offline
Send Email Send Email
 
Question 1)
===========

Page 84 of the Mozaix (2.2) perl manual states the 2nd
argument to
this call can be either 'instance' or 'component'.

Instance works fine while component appears to fail as
shown below:

my $selectedCount =
Mozaix::get_select_count("selected", "instance");
Mozaix::output__note( "Selected count: $selectedCount"
);

returns ...
#   Selected count: 7

my $selectedCount =
Mozaix::get_select_count("selected", "component");
Mozaix::output__note( "Selected count: $selectedCount"
);

returns ...
#   Selected count: 0

Although I found a way around this ... an explanation
would be appreciated.


Question 2)
===========

While running a Mozaix (2.2) perl script, the calls to
...

Mozaix::output__note("whatever");

do not produce any data in the transcript until the
program finishes
which is directly contrary to the behaviour in
Pantheon where the data
is spashed out when the call is made.

Anyway, is there a transcript setting I should know
about?

Or is there some buffering going on and if yes, is
there a way to turn on
autoflushing to make the stdout filehandle hot?

Or something else?

Any ideas on either of these questions will be
appreciated.

Thanks

George

#20 From: "George" <awkster@...>
Date: Thu Jul 6, 2006 6:54 pm
Subject: Job opp
awkster
Offline Offline
Send Email Send Email
 
Anyone interested in a job opportunity?

This is a full-tim, direct hire position in Phoenix using Pantheon and
Mozaix.

Email me off-line for details.

awkster@... -or- DukeOfPerl@...

George

DISCLAIMER: I'm only the messenger.

#19 From: George Helm <awkster@...>
Date: Sat Jun 24, 2006 4:30 pm
Subject: RE: [PantheonUsers] Re: Contractors?
awkster
Offline Offline
Send Email Send Email
 
I will pass your email to my friend in San Diego -- if
that's OK.

Also, I have access to Pantheon/Mozaix at home so if
you have some small stuff that can be done at home, I
would consider helping you out. Yes, I still know how
to do it ... LOL.

I'm currently writing perl scripts for Hypercom for a
few weeks (so much for retirement) and will be
finishing that project next week or the week after. I
would be available to help out in let's say 2 weeks.

And I apologize for my gender remark. Sometimes I tend
to forget not everyone knows me and understands my
sense of humor.

George














--- Greg Dance <greg_dance@...> wrote:


---------------------------------


It will mostly be dependant on the person we can find.
Ideally, it would be standard work hours doing
relatively easier boards for our lab. The purpose
being to take some load off the full time guys so they
can stay on the main projects.

BTW, I tend to write like I speak and pronoucing
"(s)he" is beyond me and "they" always seems to denote
more than one to me and I only want one, whereas "it"
denotes one but seems so imprersonal.... ;)

Greg






---------------------------------


From: "George" <awkster@...>
Reply-To: PantheonUsers@yahoogroups.com
To: PantheonUsers@yahoogroups.com
Subject: [PantheonUsers] Re: Contractors?
Date: Wed, 21 Jun 2006 17:31:09 -0000



--- In PantheonUsers@yahoogroups.com, "greg_dance"
<greg_dance@...>
wrote:
>
> Anyone know of a contractor who is experienced on
Pantheon? Even
> better if he were in Southern California.
>
> Greg
>

YES -- but if you want me to contact that person, I
would need a
little more information about what's going down.

BTW: your post should have read (s)he ... :)

George









---------------------------------
  Find just what you're after with the new, more
precise MSN Search - try it now!







__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

#18 From: "Greg Dance" <greg_dance@...>
Date: Sat Jun 24, 2006 1:34 pm
Subject: RE: [PantheonUsers] Re: Contractors?
greg_dance
Offline Offline
Send Email Send Email
 

It will mostly be dependant on the person we can find. Ideally, it would be standard work hours doing relatively easier boards for our lab. The purpose being to take some load off the full time guys so they can stay on the main projects.

BTW, I tend to write like I speak and pronoucing "(s)he" is beyond me and "they" always seems to denote more than one to me and I only want one, whereas "it" denotes one but seems so imprersonal.... ;)

Greg

 

 


From: "George" <awkster@...>
Reply-To: PantheonUsers@yahoogroups.com
To: PantheonUsers@yahoogroups.com
Subject: [PantheonUsers] Re: Contractors?
Date: Wed, 21 Jun 2006 17:31:09 -0000

--- In PantheonUsers@yahoogroups.com, "greg_dance" <greg_dance@...>
wrote:
>
> Anyone know of a contractor who is experienced on Pantheon? Even
> better if he were in Southern California.
>
> Greg
>

YES -- but if you want me to contact that person, I would need a
little more information about what's going down.

BTW: your post should have read (s)he ... :)

George




Find just what you're after with the new, more precise MSN Search - try it now!

#17 From: "George" <awkster@...>
Date: Wed Jun 21, 2006 5:31 pm
Subject: Re: Contractors?
awkster
Offline Offline
Send Email Send Email
 
--- In PantheonUsers@yahoogroups.com, "greg_dance" <greg_dance@...>
wrote:
>
> Anyone know of a contractor who is experienced on Pantheon? Even
> better if he were in Southern California.
>
> Greg
>

YES -- but if you want me to contact that person, I would need a
little more information about what's going down.

BTW: your post should have read (s)he ... :)

George

#16 From: "greg_dance" <greg_dance@...>
Date: Wed Jun 21, 2006 3:40 am
Subject: Contractors?
greg_dance
Offline Offline
Send Email Send Email
 
Anyone know of a contractor who is experienced on Pantheon? Even
better if he were in Southern California.

Greg

#15 From: <chuck_hurst@...>
Date: Fri Jun 9, 2006 7:26 pm
Subject: RE: [PantheonUsers] Pantheon 5.1 release
chuckhurst
Offline Offline
Send Email Send Email
 
  1. Greg, I noticed the Library is major different for me. I will have to do some home work before I could switch over also.

 

  1. Yes the new release does require new licenses which are downward compatible.

 

 

 


From: PantheonUsers@yahoogroups.com [mailto:PantheonUsers@yahoogroups.com] On Behalf Of Kennedy, Patrick
Sent: Friday, June 09, 2006 12:20 PM
To: PantheonUsers@yahoogroups.com
Subject: RE: [PantheonUsers] Pantheon 5.1 release

 

mine would not load a database.

do I need a new license file?

 


From: PantheonUsers@yahoogroups.com [mailto:PantheonUsers@yahoogroups.com] On Behalf Of greg_dance
Sent: Friday, June 09, 2006 12:18 PM
To: PantheonUsers@yahoogroups.com
Subject: [PantheonUsers] Pantheon 5.1 release

Anyone else tried the 5.1 release? I spent the morning trying out the
routing features such as guide route and multi-route. It seems OK for
a beta/engineering release, but the new stuff has a lot of rough edges
that would keep it from being used in production for me.

Greg


#14 From: "Kennedy, Patrick" <patrick.kennedy@...>
Date: Fri Jun 9, 2006 7:20 pm
Subject: RE: [PantheonUsers] Pantheon 5.1 release
azsinglecab
Offline Offline
Send Email Send Email
 
mine would not load a database.
do I need a new license file?


From: PantheonUsers@yahoogroups.com [mailto:PantheonUsers@yahoogroups.com] On Behalf Of greg_dance
Sent: Friday, June 09, 2006 12:18 PM
To: PantheonUsers@yahoogroups.com
Subject: [PantheonUsers] Pantheon 5.1 release

Anyone else tried the 5.1 release? I spent the morning trying out the
routing features such as guide route and multi-route. It seems OK for
a beta/engineering release, but the new stuff has a lot of rough edges
that would keep it from being used in production for me.

Greg


#13 From: "greg_dance" <greg_dance@...>
Date: Fri Jun 9, 2006 7:17 pm
Subject: Pantheon 5.1 release
greg_dance
Offline Offline
Send Email Send Email
 
Anyone else tried the 5.1 release? I spent the morning trying out the
routing features such as guide route and multi-route. It seems OK for
a beta/engineering release, but the new stuff has a lot of rough edges
that would keep it from being used in production for me.

Greg

#12 From: PantheonUsers@yahoogroups.com
Date: Fri Jun 9, 2006 7:08 pm
Subject: New file uploaded to PantheonUsers
PantheonUsers@yahoogroups.com
Send Email Send Email
 
Hello,

This email message is a notification to let you know that
a file has been uploaded to the Files area of the PantheonUsers
group.

   File        : /IDF_out_rev4.pl
   Uploaded by : greg_dance <greg_dance@...>
   Description : This is rev 4 of the IDF out utility. It writes out in IDF
version 3 format. Soldermask data outputs as an other outline provided that it
is in the shape of a polygon. There is one bug known relating to improrting into
Flotherm. Should work fine importing into ProE.

You can access this file at the URL:
http://groups.yahoo.com/group/PantheonUsers/files/IDF_out_rev4.pl

To learn more about file sharing for your group, please visit:
http://help.yahoo.com/help/us/groups/files

Regards,

greg_dance <greg_dance@...>

Messages 12 - 41 of 71   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help