Hi!

I have the following hash:
        
%layout = (
  hotspots => {
    JERRY => [
          {
            '_DIMENSION' => [
              'width',
              'height'
            ]
          },
          {
            'cell_center' => [
              -1240955,
              -312200,
              {
                'cell' => 'jerry',
                'user' => [
                  'sem',
                  'tuong'
                ]
              }
            ],
            'll' => [
              -1264955,
              -315900,
              {
                'width' => 48000,
                'orient' => 1,
                'height' => 7400,
                'user' => [
                  'dip'
                ]
              }
            ]
          }
        ],
      },
    };
 
        
foreach ( sort keys %{ $hotspots } ) {
  print "$_\n";
}
  
  
  I can print out JERRY, but how do I access 'cell_center' to get to
-1240955, -312200,?

Thanks,

Jerry

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to